summaryrefslogtreecommitdiff
path: root/src/backend/taler-merchant-httpd_check-payment.c
blob: 145be9de412ac71a8f327c944902ca4543362dfa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
/*
  This file is part of TALER
  (C) 2017 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 backend/taler-merchant-httpd_check-payment.c
 * @brief implementation of /check-payment handler
 * @author Florian Dold
 */
#include "platform.h"
#include <string.h>
#include <microhttpd.h>
#include <jansson.h>
#include <taler/taler_json_lib.h>
#include <taler/taler_signatures.h>
#include "taler-merchant-httpd.h"
#include "taler-merchant-httpd_mhd.h"
#include "taler-merchant-httpd_parsing.h"
#include "taler-merchant-httpd_exchanges.h"
#include "taler-merchant-httpd_responses.h"
#include "taler-merchant-httpd_check-payment.h"


/**
 * Concatenate two strings and grow the first buffer (of size n)
 * if necessary.
 */
#define STR_CAT_GROW(s, p, n) do { \
    for (; strlen (s) + strlen (p) >= n; (n) = (n) * 2); \
    (s) = GNUNET_realloc ((s), (n)); \
    GNUNET_assert (NULL != (s)); \
    strncat (s, p, n); \
  } while (0)


/**
 * Make an absolute URL to the backend.
 *
 * @param connection MHD connection to take header values from
 * @param path path of the url
 * @param ... NULL-terminated key-value pairs (char *) for query parameters
 */
static char *
make_absolute_backend_url (struct MHD_Connection *connection, char *path, ...)
{
  static CURL *curl = NULL;
  if (NULL == curl)
  {
    curl = curl_easy_init();
    GNUNET_assert (NULL != curl);
  }

  size_t n = 256;
  char *res = GNUNET_malloc (n);

  GNUNET_assert (NULL != res);

  // By default we assume we're running under HTTP
  const char *proto = "http";
  const char *forwarded_proto = MHD_lookup_connection_value (connection, MHD_HEADER_KIND, "X-Forwarded-Proto");

  if (NULL != forwarded_proto)
    proto = forwarded_proto;

  const char *host = MHD_lookup_connection_value (connection, MHD_HEADER_KIND, "Host");
  const char *forwarded_host = MHD_lookup_connection_value (connection, MHD_HEADER_KIND, "X-Forwarded-Host");

  const char *forwarded_prefix = MHD_lookup_connection_value (connection, MHD_HEADER_KIND, "X-Forwarded-Prefix");

  if (NULL != forwarded_host)
    host = forwarded_host;

  if (NULL == host)
  {
    // Should never happen, at last the host header should be defined
    GNUNET_break (0);
    return NULL;
  }

  STR_CAT_GROW (res, proto, n);
  STR_CAT_GROW (res, "://", n);
  STR_CAT_GROW (res, host, n);
  STR_CAT_GROW (res, "/", n);
  if (NULL != forwarded_prefix)
    STR_CAT_GROW (res, forwarded_prefix, n);
  STR_CAT_GROW (res, path, n);

  va_list args;
  va_start (args, path);

  unsigned int iparam = 0;

  while (1) {
    char *key = va_arg (args, char *);
    if (NULL == key)
      break;
    char *value = va_arg (args, char *);
    if (NULL == value)
      continue;
    if (0 == iparam)
      STR_CAT_GROW (res, "?", n);
    else
      STR_CAT_GROW (res, "&", n);
    iparam++;
    char *urlencoded_value = curl_easy_escape (curl, value, strlen (value));
    STR_CAT_GROW (res, key, n);
    STR_CAT_GROW (res, "=", n);
    STR_CAT_GROW (res, urlencoded_value, n);
    curl_free (urlencoded_value);
  }

  va_end (args);

  return res;
}


/**
 * Manages a /check-payment call, checking the status
 * of a payment and, if necessary, constructing the URL
 * for a payment redirect URL.
 *
 * @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
MH_handler_check_payment (struct TMH_RequestHandler *rh,
                          struct MHD_Connection *connection,
                          void **connection_cls,
                          const char *upload_data,
                          size_t *upload_data_size)
{
  const char *order_id;
  const char *contract_url;
  const char *session_id;
  const char *session_sig_str;
  const char *instance_str;

  order_id = MHD_lookup_connection_value (connection,
                                          MHD_GET_ARGUMENT_KIND,
                                          "order_id");
  contract_url = MHD_lookup_connection_value (connection,
                                              MHD_GET_ARGUMENT_KIND,
                                              "contract_url");
  session_id = MHD_lookup_connection_value (connection,
                                                MHD_GET_ARGUMENT_KIND,
                                                "session_id");
  session_sig_str = MHD_lookup_connection_value (connection,
                                                MHD_GET_ARGUMENT_KIND,
                                                "session_sig");
  instance_str = MHD_lookup_connection_value (connection,
                                              MHD_GET_ARGUMENT_KIND,
                                              "instance");

  if (NULL == instance_str)
    instance_str = "default";

  // Will only be set if we actually have a contract!
  char *h_contract_terms_str = NULL;

  struct MerchantInstance *mi = TMH_lookup_instance (instance_str);
  if (NULL == mi)
    return TMH_RESPONSE_reply_bad_request (connection,
                                           TALER_EC_PAY_INSTANCE_UNKNOWN,
                                           "merchant instance unknown");

  if (NULL == order_id)
  {
    if (NULL == contract_url)
      return TMH_RESPONSE_reply_bad_request (connection,
                                             TALER_EC_PARAMETER_MISSING,
                                             "either order_id or contract_url must be given");
    goto do_pay;
    // No order_id given, redirect to a page that gives the wallet a new
    // contract.
  }

  if (NULL != session_id)
  {
    // If the session id is given, the frontend wants us
    // to verify the session signature.
    if (NULL == session_sig_str)
    {
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "pay session signature required but missing\n");
      goto do_pay;
    }

    struct GNUNET_CRYPTO_EddsaSignature sig;
    if (GNUNET_OK !=
        GNUNET_STRINGS_string_to_data (session_sig_str,
                                       strlen (session_sig_str),
                                       &sig,
                                       sizeof (struct GNUNET_CRYPTO_EddsaSignature)))
    {
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "pay session signature malformed\n");
      goto do_pay;
    }
    struct TALER_MerchantPaySessionSigPS mps;
    mps.purpose.size = htonl (sizeof (struct TALER_MerchantPaySessionSigPS));
    mps.purpose.purpose = htonl (TALER_SIGNATURE_MERCHANT_PAY_SESSION);
    GNUNET_assert (NULL != order_id);
    GNUNET_assert (NULL != session_id);
    GNUNET_CRYPTO_hash (order_id, strlen (order_id), &mps.h_order_id);
    GNUNET_CRYPTO_hash (session_id, strlen (session_id), &mps.h_session_id);
    if (GNUNET_OK != GNUNET_CRYPTO_eddsa_verify (TALER_SIGNATURE_MERCHANT_PAY_SESSION,
                                                 &mps.purpose,
                                                 &sig,
                                                 &mi->pubkey.eddsa_pub))
    {
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "pay session signature invalid\n");
      goto do_pay;
    }
  }

  GNUNET_assert (NULL != order_id);

  enum GNUNET_DB_QueryStatus qs;
  json_t *contract_terms;
  struct GNUNET_HashCode h_contract_terms;

  qs = db->find_contract_terms (db->cls,
                                &contract_terms,
                                order_id,
                                &mi->pubkey);
  if (0 > qs)
  {
    /* single, read-only SQL statements should never cause
       serialization problems */
    GNUNET_break (GNUNET_DB_STATUS_SOFT_ERROR != qs);
    /* Always report on hard error as well to enable diagnostics */
    GNUNET_break (GNUNET_DB_STATUS_HARD_ERROR == qs);
    return TMH_RESPONSE_reply_internal_error (connection,
					      TALER_EC_PAY_DB_FETCH_PAY_ERROR,
					      "db error to previous /pay data");

  }
  if (GNUNET_DB_STATUS_SUCCESS_NO_RESULTS == qs)
  {
    return TMH_RESPONSE_reply_not_found (connection,
                                         TALER_EC_PAY_DB_STORE_PAY_ERROR,
                                         "Proposal not found");
  }

  if (GNUNET_OK !=
      TALER_JSON_hash (contract_terms,
                       &h_contract_terms))
  {
    GNUNET_break (0);
    return TMH_RESPONSE_reply_internal_error (connection,
                                              TALER_EC_PAY_FAILED_COMPUTE_PROPOSAL_HASH,
                                              "Failed to hash proposal");
  }

  h_contract_terms_str = GNUNET_STRINGS_data_to_string_alloc (&h_contract_terms,
                                                              sizeof (struct GNUNET_HashCode));


  /* Check if transaction is already known, if not store it. */
  {
    struct GNUNET_HashCode h_xwire;
    struct GNUNET_TIME_Absolute xtimestamp;
    struct GNUNET_TIME_Absolute xrefund;
    struct TALER_Amount xtotal_amount;
    
    qs = db->find_transaction (db->cls,
			       &h_contract_terms,
			       &mi->pubkey,
			       &h_xwire,
			       &xtimestamp,
			       &xrefund,
			       &xtotal_amount);
    if (0 > qs)
    {
      /* Always report on hard error as well to enable diagnostics */
      GNUNET_break (GNUNET_DB_STATUS_HARD_ERROR == qs);
      GNUNET_free_non_null (h_contract_terms_str);
      return TMH_RESPONSE_reply_internal_error (connection,
                                         TALER_EC_PAY_DB_FETCH_TRANSACTION_ERROR,
                                         "Merchant database error");
    }
    if (0 == qs)
    {
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "not paid yet\n");
      goto do_pay;
    }
    GNUNET_break (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT == qs);
  }

  GNUNET_free_non_null (h_contract_terms_str);

  return TMH_RESPONSE_reply_json_pack (connection,
                                       MHD_HTTP_OK,
                                       "{s:b}",
                                       "paid",
                                       1);

do_pay:
  {
    char *url = make_absolute_backend_url (connection, "trigger-pay",
                                           "contract_url", contract_url,
                                           "session_id", session_id,
                                           "h_contract_terms", h_contract_terms_str,
                                           NULL);
    int ret = TMH_RESPONSE_reply_json_pack (connection,
                                            MHD_HTTP_OK,
                                            "{s:s}",
                                            "payment_redirect_url",
                                            url);
    GNUNET_free_non_null (h_contract_terms_str);
    GNUNET_free (url);
    return ret;
  }
}