summaryrefslogtreecommitdiff
path: root/src/exchange/taler-exchange-httpd_wire.c
blob: 471fa4fadcf41731d8d78b5bdf45f79b24465fe7 (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
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
/*
  This file is part of TALER
  Copyright (C) 2015-2020 Taler Systems SA

  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, see <http://www.gnu.org/licenses/>
*/
/**
 * @file taler-exchange-httpd_wire.c
 * @brief Handle /wire requests
 * @author Christian Grothoff
 */
#include "platform.h"
#include <gnunet/gnunet_json_lib.h>
#include "taler-exchange-httpd_keystate.h"
#include "taler-exchange-httpd_responses.h"
#include "taler-exchange-httpd_wire.h"
#include "taler_json_lib.h"
#include "taler_mhd_lib.h"
#include <jansson.h>

/**
 * Cached JSON for /wire response.
 */
static json_t *wire_methods;

/**
 * Array of wire methods supported by this exchange.
 */
static json_t *wire_accounts_array;

/**
 * Object mapping wire methods to the respective fee structure.
 */
static json_t *wire_fee_object;


/**
 * Convert fee structure to JSON result to be returned
 * as part of a /wire response.
 *
 * @param af fee structure to convert
 * @return NULL on error, otherwise json data structure for /wire.
 */
static json_t *
fees_to_json (struct TALER_EXCHANGEDB_AggregateFees *af)
{
  json_t *a;

  a = json_array ();
  if (NULL == a)
  {
    GNUNET_break (0); /* out of memory? */
    return NULL;
  }
  while (NULL != af)
  {
    if ( (GNUNET_NO == GNUNET_TIME_round_abs (&af->start_date)) ||
         (GNUNET_NO == GNUNET_TIME_round_abs (&af->end_date)) )
    {
      GNUNET_break (0); /* bad timestamps, should not happen */
      json_decref (a);
      return NULL;
    }
    if (0 !=
        json_array_append_new (a,
                               json_pack ("{s:o, s:o, s:o, s:o, s:o}",
                                          "wire_fee", TALER_JSON_from_amount (
                                            &af->wire_fee),
                                          "closing_fee",
                                          TALER_JSON_from_amount (
                                            &af->closing_fee),
                                          "start_date",
                                          GNUNET_JSON_from_time_abs (
                                            af->start_date),
                                          "end_date",
                                          GNUNET_JSON_from_time_abs (
                                            af->end_date),
                                          "sig", GNUNET_JSON_from_data_auto (
                                            &af->master_sig))))
    {
      GNUNET_break (0); /* out of memory? */
      json_decref (a);
      return NULL;
    }
    af = af->next;
  }
  return a;
}


/**
 * Obtain fee structure for @a method wire transfers.
 *
 * @param method method to load fees for
 * @return JSON object (to be freed by caller) with fee structure
 */
static json_t *
get_fees (const char *method)
{
  struct TALER_EXCHANGEDB_AggregateFees *af;
  struct GNUNET_TIME_Absolute now;

  af = TALER_EXCHANGEDB_fees_read (TEH_cfg,
                                   method);
  now = GNUNET_TIME_absolute_get ();
  while ( (NULL != af) &&
          (af->end_date.abs_value_us < now.abs_value_us) )
  {
    struct TALER_EXCHANGEDB_AggregateFees *n = af->next;

    GNUNET_free (af);
    af = n;
  }
  if (NULL == af)
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                "Failed to find current wire transfer fees for `%s' at time %s\n",
                method,
                GNUNET_STRINGS_absolute_time_to_string (now));
    return NULL;
  }
  {
    json_t *j;

    j = fees_to_json (af);
    TALER_EXCHANGEDB_fees_free (af);
    return j;
  }
}


/**
 * Load wire fees for @a method.
 *
 * @param method wire method to load fee structure for
 * @return #GNUNET_OK on success
 */
static int
load_fee (const char *method)
{
  json_t *fees;

  if (NULL != json_object_get (wire_fee_object,
                               method))
    return GNUNET_OK; /* already have them */
  fees = get_fees (method);
  if (NULL == fees)
    return GNUNET_SYSERR;
  /* Add fees to #wire_fee_object */
  if (0 !=
      json_object_set_new (wire_fee_object,
                           method,
                           fees))
  {
    GNUNET_break (0);
    return GNUNET_SYSERR;
  }
  return GNUNET_OK;
}


/**
 * Initialize account; checks if @a ai has /wire information, and if so,
 * adds the /wire information (if included) to our responses.
 *
 * @param cls pointer to `int` to set to #GNUNET_SYSERR on errors
 * @param ai details about the account we should load the wire details for
 */
static void
load_account (void *cls,
              const struct TALER_EXCHANGEDB_AccountInfo *ai)
{
  int *ret = cls;

  if ( (NULL != ai->wire_response_filename) &&
       (GNUNET_YES == ai->credit_enabled) )
  {
    json_t *wire_s;
    json_error_t error;

    if (NULL == (wire_s = json_load_file (ai->wire_response_filename,
                                          JSON_REJECT_DUPLICATES,
                                          &error)))
    {
      GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                  "Failed to parse `%s': %s at %d:%d (%d)\n",
                  ai->wire_response_filename,
                  error.text,
                  error.line,
                  error.column,
                  error.position);
      *ret = GNUNET_SYSERR;
      return;
    }

    {
      char *url;

      if (NULL == (url = TALER_JSON_wire_to_payto (wire_s)))
      {
        GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                    "Wire response file `%s' malformed\n",
                    ai->wire_response_filename);
        json_decref (wire_s);
        *ret = GNUNET_SYSERR;
        return;
      }
      if (0 != strcasecmp (url,
                           ai->payto_uri))
      {
        GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                    "URL in wire response file `%s' does not match URL in configuration (%s vs %s)!\n",
                    ai->wire_response_filename,
                    url,
                    ai->payto_uri);
        json_decref (wire_s);
        GNUNET_free (url);
        *ret = GNUNET_SYSERR;
        return;
      }
      GNUNET_free (url);
    }
    /* Provide friendly error message if user forgot to sign wire response. */
    if (NULL == json_object_get (wire_s,
                                 "master_sig"))
    {
      GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                  "Wire response file `%s' has not been signed."
                  " Use taler-exchange-wire to sign it.\n",
                  ai->wire_response_filename);
      json_decref (wire_s);
      *ret = GNUNET_SYSERR;
      return;
    }
    if (GNUNET_OK !=
        TALER_JSON_exchange_wire_signature_check (wire_s,
                                                  &TEH_master_public_key))
    {
      GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                  "Invalid signature in `%s' for public key `%s'\n",
                  ai->wire_response_filename,
                  GNUNET_p2s (&TEH_master_public_key.eddsa_pub));
      json_decref (wire_s);
      *ret = GNUNET_SYSERR;
      return;
    }
    if (GNUNET_OK ==
        load_fee (ai->method))
    {
      if (0 !=
          json_array_append_new (wire_accounts_array,
                                 wire_s))
      {
        GNUNET_break (0);
        *ret = GNUNET_SYSERR;
      }
    }
    else
    {
      GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                  "Wire fees not specified for `%s'\n",
                  ai->method);
      *ret = GNUNET_SYSERR;
    }
  }
  else if (GNUNET_YES == ai->debit_enabled)
  {
    if (GNUNET_OK !=
        load_fee (ai->method))
    {
      GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                  "Wire transfer fees for `%s' are not given correctly\n",
                  ai->method);
      *ret = GNUNET_SYSERR;
      return;
    }
  }
}


/**
 * Handle a "/wire" request.
 *
 * @param rh context of the handler
 * @param connection the MHD connection to handle
 * @param args array of additional options (must be empty for this function)
 * @return MHD result code
  */
MHD_RESULT
TEH_handler_wire (const struct TEH_RequestHandler *rh,
                  struct MHD_Connection *connection,
                  const char *const args[])
{
  (void) rh;
  (void) args;
  GNUNET_assert (NULL != wire_methods);
  return TALER_MHD_reply_json (connection,
                               wire_methods,
                               MHD_HTTP_OK);
}


/**
 * Initialize wire subsystem.
 *
 * @param cfg configuration to use
 * @return #GNUNET_OK on success, #GNUNET_SYSERR if we found no valid
 *         wire methods
 */
int
TEH_WIRE_init (const struct GNUNET_CONFIGURATION_Handle *cfg)
{
  wire_accounts_array = json_array ();
  if (NULL == wire_accounts_array)
  {
    GNUNET_break (0);
    return GNUNET_SYSERR;
  }
  wire_fee_object = json_object ();
  if (NULL == wire_fee_object)
  {
    GNUNET_break (0);
    TEH_WIRE_done ();
    return GNUNET_SYSERR;
  }
  {
    int ret;

    ret = GNUNET_OK;
    TALER_EXCHANGEDB_find_accounts (cfg,
                                    &load_account,
                                    &ret);
    if (GNUNET_OK != ret)
    {
      GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                  "Error setting up bank accounts\n");
      TEH_WIRE_done ();
      return GNUNET_SYSERR;
    }
  }
  if ( (0 == json_array_size (wire_accounts_array)) ||
       (0 == json_object_size (wire_fee_object)) )
  {
    TEH_WIRE_done ();
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                "No bank accounts configured\n");
    return GNUNET_SYSERR;
  }
  wire_methods = json_pack ("{s:O, s:O, s:o}",
                            "accounts", wire_accounts_array,
                            "fees", wire_fee_object,
                            "master_public_key",
                            GNUNET_JSON_from_data_auto (
                              &TEH_master_public_key));
  if (NULL == wire_methods)
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                "Failed to find properly configured wire transfer method\n");
    TEH_WIRE_done ();
    return GNUNET_SYSERR;
  }
  return GNUNET_OK;
}


/**
 * Clean up wire subsystem.
 */
void
TEH_WIRE_done ()
{
  if (NULL != wire_methods)
  {
    json_decref (wire_methods);
    wire_methods = NULL;
  }
  if (NULL != wire_fee_object)
  {
    json_decref (wire_fee_object);
    wire_fee_object = NULL;
  }
  if (NULL != wire_accounts_array)
  {
    json_decref (wire_accounts_array);
    wire_accounts_array = NULL;
  }
}


/* end of taler-exchange-httpd_wire.c */