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
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
|
/*
This file is part of TALER
Copyright (C) 2024 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-merchant-kyccheck.c
* @brief Process that check the KYC status of our bank accounts at all exchanges
* @author Christian Grothoff
*/
#include "platform.h"
#include <gnunet/gnunet_util_lib.h>
#include <jansson.h>
#include <pthread.h>
#include <regex.h>
#include <taler/taler_dbevents.h>
#include <taler/taler_json_lib.h>
#include <taler/taler_exchange_service.h>
#include "taler_merchant_util.h"
#include "taler_merchant_bank_lib.h"
#include "taler_merchantdb_lib.h"
#include "taler_merchantdb_plugin.h"
/**
* Timeout for the exchange interaction. Rather long as we should do
* long-polling and do not want to wake up too often.
*/
#define EXCHANGE_TIMEOUT GNUNET_TIME_relative_multiply ( \
GNUNET_TIME_UNIT_MINUTES, \
30)
/**
* How long do we wait between requests if all we wait
* for is a change in the AML investigation status?
*/
#define AML_FREQ GNUNET_TIME_relative_multiply ( \
GNUNET_TIME_UNIT_HOURS, \
6)
/**
* How frequently do we check for updates to our KYC status
* if there is no actual reason to check? Set to a very low
* frequency, just to ensure we eventually notice.
*/
#define AML_LOW_FREQ GNUNET_TIME_relative_multiply ( \
GNUNET_TIME_UNIT_DAYS, \
7)
/**
* How many inquiries do we process concurrently at most.
*/
#define OPEN_INQUIRY_LIMIT 1024
/**
* Information about an exchange.
*/
struct Exchange
{
/**
* Kept in a DLL.
*/
struct Exchange *next;
/**
* Kept in a DLL.
*/
struct Exchange *prev;
/**
* The keys of this exchange
*/
struct TALER_EXCHANGE_Keys *keys;
};
/**
* Information about an Account.
*/
struct Account
{
/**
* Kept in a DLL.
*/
struct Account *next;
/**
* Kept in a DLL.
*/
struct Account *prev;
/**
* Head of inquiries for this account.
*/
struct Inquiry *i_head;
/**
* Tail of inquiries for this account.
*/
struct Inquiry *i_tail;
/**
* Merchant instance this account belongs to.
*/
char *instance_id;
/**
* The payto-URI of this account.
*/
struct TALER_FullPayto merchant_account_uri;
/**
* Wire hash of the merchant bank account (with the
* respective salt).
*/
struct TALER_MerchantWireHashP h_wire;
/**
* Private key of the instance.
*/
union TALER_AccountPrivateKeyP ap;
/**
* Hash of the @e merchant_account_uri.
*/
struct TALER_NormalizedPaytoHashP h_payto;
/**
* Database generation when this account
* was last active.
*/
uint64_t account_gen;
};
/**
* Information about an inquiry job.
*/
struct Inquiry
{
/**
* Kept in a DLL.
*/
struct Inquiry *next;
/**
* Kept in a DLL.
*/
struct Inquiry *prev;
/**
* Main task for this inquiry.
*/
struct GNUNET_SCHEDULER_Task *task;
/**
* Which exchange is this inquiry about.
*/
struct Exchange *e;
/**
* Which account is this inquiry about.
*/
struct Account *a;
/**
* AccountLimits that apply to the account, NULL
* if unknown.
*/
json_t *jlimits;
/**
* Handle for the actual HTTP request to the exchange.
*/
struct TALER_EXCHANGE_KycCheckHandle *kyc;
/**
* Access token for the /kyc-info API.
*/
struct TALER_AccountAccessTokenP access_token;
/**
* Last time we called the /kyc-check endpoint.
*/
struct GNUNET_TIME_Timestamp last_kyc_check;
/**
* When is the next KYC check due?
*/
struct GNUNET_TIME_Absolute due;
/**
* When should the current KYC time out?
*/
struct GNUNET_TIME_Absolute timeout;
/**
* Current exponential backoff.
*/
struct GNUNET_TIME_Relative backoff;
/**
* Last HTTP status returned by the exchange from
* the /kyc-check endpoint.
*/
unsigned int last_http_status;
/**
* Last Taler error code returned by the exchange from
* the /kyc-check endpoint.
*/
enum TALER_ErrorCode last_ec;
/**
* True if this is not our first time we make this request.
*/
bool not_first_time;
/**
* Did we not run this inquiry due to limits?
*/
bool limited;
/**
* Do we believe this account's KYC is in good shape?
*/
bool kyc_ok;
/**
* True if merchant did perform this account's KYC AUTH transfer and @e access_token is set.
*/
bool auth_ok;
/**
* True if the account is known to be currently under
* investigation by AML staff.
*/
bool aml_review;
};
/**
* Head of known exchanges.
*/
static struct Exchange *e_head;
/**
* Tail of known exchanges.
*/
static struct Exchange *e_tail;
/**
* Head of accounts.
*/
static struct Account *a_head;
/**
* Tail of accounts.
*/
static struct Account *a_tail;
/**
* The merchant's configuration.
*/
static const struct GNUNET_CONFIGURATION_Handle *cfg;
/**
* Our database plugin.
*/
static struct TALER_MERCHANTDB_Plugin *db_plugin;
/**
* Handle to the context for interacting with the bank.
*/
static struct GNUNET_CURL_Context *ctx;
/**
* Scheduler context for running the @e ctx.
*/
static struct GNUNET_CURL_RescheduleContext *rc;
/**
* Event handler to learn that there may be new bank
* accounts to check.
*/
static struct GNUNET_DB_EventHandler *eh_accounts;
/**
* Event handler to learn that there may be new exchange
* keys to check.
*/
static struct GNUNET_DB_EventHandler *eh_keys;
/**
* Event handler to learn that there was a KYC
* rule triggered and we need to check the KYC
* status for an account.
*/
static struct GNUNET_DB_EventHandler *eh_rule;
/**
* Main task to discover (new) accounts.
*/
static struct GNUNET_SCHEDULER_Task *account_task;
/**
* Counter determining how often we have called
* "select_accounts" on the database.
*/
static uint64_t database_gen;
/**
* How many active inquiries do we have right now.
*/
static unsigned int active_inquiries;
/**
* Value to return from main(). 0 on success, non-zero on errors.
*/
static int global_ret;
/**
* #GNUNET_YES if we are in test mode and should exit when idle.
*/
static int test_mode;
/**
* True if the last DB query was limited by the
* #OPEN_INQUIRY_LIMIT and we thus should check again
* as soon as we are substantially below that limit,
* and not only when we get a DB notification.
*/
static bool at_limit;
/**
* Check about performing a /kyc-check request with the
* exchange for the given inquiry.
*
* @param cls a `struct Inquiry` to process
*/
static void
inquiry_work (void *cls);
/**
* An inquiry finished, check if we should resume
* others.
*/
static void
end_inquiry (void)
{
GNUNET_assert (active_inquiries > 0);
active_inquiries--;
if ( (active_inquiries < OPEN_INQUIRY_LIMIT / 2) &&
(at_limit) )
{
at_limit = false;
for (struct Account *a = a_head;
NULL != a;
a = a->next)
{
for (struct Inquiry *i = a->i_head;
NULL != i;
i = i->next)
{
if (! i->limited)
continue;
GNUNET_assert (NULL == i->task);
/* done synchronously so that the active_inquiries
is updated immediately */
inquiry_work (i);
if (at_limit)
break;
}
if (at_limit)
break;
}
}
if ( (! at_limit) &&
(0 == active_inquiries) &&
(test_mode) )
{
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
"No more open inquiries and in test mode. Existing.\n");
GNUNET_SCHEDULER_shutdown ();
return;
}
}
/**
* Pack the given @a limit into the JSON @a limits array.
*
* @param limit account limit to pack
* @param[in,out] limits JSON array to extend
*/
static void
pack_limit (const struct TALER_EXCHANGE_AccountLimit *limit,
json_t *limits)
{
json_t *jl;
jl = GNUNET_JSON_PACK (
TALER_JSON_pack_kycte ("operation_type",
limit->operation_type),
GNUNET_JSON_pack_time_rel ("timeframe",
limit->timeframe),
TALER_JSON_pack_amount ("threshold",
&limit->threshold),
GNUNET_JSON_pack_bool ("soft_limit",
limit->soft_limit)
);
GNUNET_assert (0 ==
json_array_append_new (limits,
jl));
}
/**
* Update KYC status for @a i based on
* @a account_kyc_status
*
* @param[in,out] i inquiry context, jlimits is updated
* @param account_kyc_status account KYC status details
*/
static void
store_kyc_status (
struct Inquiry *i,
const struct TALER_EXCHANGE_AccountKycStatus *account_kyc_status)
{
json_t *jlimits;
json_decref (i->jlimits);
jlimits = json_array ();
GNUNET_assert (NULL != jlimits);
for (unsigned int j = 0; j<account_kyc_status->limits_length; j++)
{
const struct TALER_EXCHANGE_AccountLimit *limit
= &account_kyc_status->limits[j];
pack_limit (limit,
jlimits);
}
i->jlimits = jlimits;
GNUNET_break (! GNUNET_is_zero (&account_kyc_status->access_token));
i->access_token = account_kyc_status->access_token;
i->auth_ok = true;
i->aml_review = account_kyc_status->aml_review;
i->kyc_ok = (MHD_HTTP_OK == i->last_http_status);
}
/**
* Function called with the result of a KYC check.
*
* @param cls a `struct Inquiry *`
* @param ks the account's KYC status details
*/
static void
exchange_check_cb (
void *cls,
const struct TALER_EXCHANGE_KycStatus *ks)
{
struct Inquiry *i = cls;
bool progress = false;
if (! i->not_first_time)
progress = true;
i->kyc = NULL;
i->last_http_status = ks->hr.http_status;
i->last_ec = ks->hr.ec;
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
"Checking KYC status of `%s' at `%s' is %u\n",
i->a->merchant_account_uri.full_payto,
i->e->keys->exchange_url,
ks->hr.http_status);
switch (ks->hr.http_status)
{
case MHD_HTTP_OK:
if (! i->kyc_ok)
progress = true;
i->last_kyc_check = GNUNET_TIME_timestamp_get ();
/* exchange says KYC is OK, gives status information */
store_kyc_status (i,
&ks->details.ok);
i->backoff = GNUNET_TIME_UNIT_ZERO;
if (i->aml_review)
{
if (! progress)
i->due = GNUNET_TIME_relative_to_absolute (AML_FREQ);
}
else
{
/* KYC is OK, only check again if triggered */
i->due = GNUNET_TIME_relative_to_absolute (AML_LOW_FREQ);
}
break;
case MHD_HTTP_ACCEPTED:
progress = ! i->auth_ok;
i->last_kyc_check = GNUNET_TIME_timestamp_get ();
/* exchange says KYC is required */
store_kyc_status (i,
&ks->details.accepted);
i->backoff = GNUNET_TIME_UNIT_ZERO;
/* Start immediately with long-polling */
if (! progress)
i->due = GNUNET_TIME_absolute_max (i->last_kyc_check.abs_time,
i->timeout);
break;
case MHD_HTTP_NO_CONTENT:
i->last_kyc_check = GNUNET_TIME_timestamp_get ();
i->backoff = GNUNET_TIME_UNIT_ZERO;
/* exchange claims KYC is off! */
i->kyc_ok = true;
i->aml_review = false;
/* Clear limits, in case exchange had KYC on previously */
json_decref (i->jlimits);
i->jlimits = NULL;
/* KYC is OK, only check again if triggered */
i->due = GNUNET_TIME_relative_to_absolute (AML_LOW_FREQ);
break;
case MHD_HTTP_FORBIDDEN: /* bad signature */
i->last_kyc_check = GNUNET_TIME_timestamp_get ();
/* Forbidden => KYC auth must be wrong */
i->auth_ok = false;
/* Start with long-polling */
if (! progress)
i->due = GNUNET_TIME_absolute_max (i->last_kyc_check.abs_time,
i->timeout);
i->backoff = GNUNET_TIME_UNIT_ZERO;
break;
case MHD_HTTP_NOT_FOUND: /* account unknown */
i->last_kyc_check = GNUNET_TIME_timestamp_get ();
/* Account unknown => no KYC auth yet */
i->auth_ok = false;
/* unknown account => no requirements! */
i->kyc_ok = true;
/* There should not be any limits yet, but clear them
just in case the exchange has amnesia */
json_decref (i->jlimits);
i->jlimits = NULL;
/* Start immediately with Long-polling */
if (! progress)
i->due = GNUNET_TIME_absolute_max (i->last_kyc_check.abs_time,
i->timeout);
i->backoff = GNUNET_TIME_UNIT_ZERO;
break;
case MHD_HTTP_CONFLICT: /* no account_pub known */
i->last_kyc_check = GNUNET_TIME_timestamp_get ();
/* Conflict => KYC auth wire transfer missing! */
i->auth_ok = false;
/* Start immediately with Long-polling */
if (! progress)
i->due = GNUNET_TIME_absolute_max (i->last_kyc_check.abs_time,
i->timeout);
i->backoff = GNUNET_TIME_UNIT_ZERO;
break;
default:
GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
"Exchange responded with HTTP status %u (%d) to /kyc-check request!\n",
ks->hr.http_status,
ks->hr.ec);
i->backoff
= GNUNET_TIME_randomized_backoff (i->backoff,
EXCHANGE_TIMEOUT);
i->last_kyc_check = GNUNET_TIME_timestamp_get ();
i->due = GNUNET_TIME_relative_to_absolute (i->backoff);
break;
}
{
enum GNUNET_DB_QueryStatus qs;
qs = db_plugin->account_kyc_set_status (
db_plugin->cls,
i->a->instance_id,
&i->a->h_wire,
i->e->keys->exchange_url,
i->last_kyc_check,
i->last_http_status,
i->last_ec,
(i->auth_ok)
? &i->access_token
: NULL,
i->jlimits,
i->aml_review,
i->kyc_ok);
if (qs < 0)
{
GNUNET_break (0);
global_ret = EXIT_FAILURE;
GNUNET_SCHEDULER_shutdown ();
return;
}
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
"account_set_kyc_status (%s, %u, %s, %s) returned %d\n",
i->e->keys->exchange_url,
i->last_http_status,
i->auth_ok ? "auth OK" : "auth needed",
NULL == i->jlimits ? "default limits" : "custom limits",
(int) qs);
i->not_first_time = true;
}
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
"Will repeat inquiry in %s\n",
GNUNET_TIME_relative2s (
GNUNET_TIME_absolute_get_remaining (i->due),
true));
if (! GNUNET_TIME_absolute_is_never (i->due))
i->task = GNUNET_SCHEDULER_add_at (i->due,
&inquiry_work,
i);
end_inquiry ();
}
static void
inquiry_work (void *cls)
{
struct Inquiry *i = cls;
enum TALER_EXCHANGE_KycLongPollTarget lpt;
i->task = NULL;
if (! GNUNET_TIME_absolute_is_past (i->due))
{
i->task
= GNUNET_SCHEDULER_add_at (i->due,
&inquiry_work,
i);
goto finish;
}
GNUNET_assert (OPEN_INQUIRY_LIMIT >= active_inquiries);
if (OPEN_INQUIRY_LIMIT <= active_inquiries)
{
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
"Not looking for work: at limit\n");
i->limited = true;
at_limit = true;
return;
}
at_limit = false;
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
"Checking KYC status of `%s' at `%s'\n",
i->a->merchant_account_uri.full_payto,
i->e->keys->exchange_url);
i->timeout
= GNUNET_TIME_relative_to_absolute (EXCHANGE_TIMEOUT);
lpt = TALER_EXCHANGE_KLPT_NONE;
if (! i->auth_ok)
lpt = TALER_EXCHANGE_KLPT_KYC_AUTH_TRANSFER;
else if (! i->kyc_ok)
lpt = TALER_EXCHANGE_KLPT_KYC_OK;
else if (i->aml_review)
lpt = TALER_EXCHANGE_KLPT_INVESTIGATION_DONE;
if (! i->not_first_time)
lpt = TALER_EXCHANGE_KLPT_NONE;
i->kyc = TALER_EXCHANGE_kyc_check (
ctx,
i->e->keys->exchange_url,
&i->a->h_payto,
&i->a->ap,
lpt,
i->not_first_time
? EXCHANGE_TIMEOUT
: GNUNET_TIME_UNIT_ZERO,
&exchange_check_cb,
i);
if (NULL == i->kyc)
{
GNUNET_break (0);
i->due = i->timeout;
i->task
= GNUNET_SCHEDULER_add_at (i->due,
&inquiry_work,
i);
goto finish;
}
active_inquiries++;
finish:
if ( (0 == active_inquiries) &&
(test_mode) )
{
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
"No more open inquiries and in test mode. Existing.\n");
GNUNET_SCHEDULER_shutdown ();
return;
}
}
/**
* Check if the account @a could work with exchange that
* has keys @a keys.
*
* @param keys the keys of an exchange
* @param a an account
*/
static bool
is_eligible (const struct TALER_EXCHANGE_Keys *keys,
const struct Account *a)
{
struct TALER_NormalizedPayto np;
np = TALER_payto_normalize (a->merchant_account_uri);
/* For all accounts of the exchange */
for (unsigned int i = 0; i<keys->accounts_len; i++)
{
/* FIXME: move into convenience function in libtalerexchange? See also taler-merchant-httpd_private-get-instances-ID-kyc.c, taler-merchant-httpd_exchanges (!)*/
const struct TALER_EXCHANGE_WireAccount *account
= &keys->accounts[i];
/* KYC auth transfers are never supported with conversion */
if (NULL != account->conversion_url)
continue;
/* filter by source account by credit_restrictions */
if (GNUNET_YES !=
TALER_EXCHANGE_test_account_allowed (account,
true, /* credit */
np))
continue;
/* exchange account is allowed, add it */
GNUNET_free (np.normalized_payto);
return true;
}
GNUNET_free (np.normalized_payto);
return false;
}
/**
* Start the KYC checking for account @a at exchange @a e.
*
* @param e an exchange
* @param a an account
*/
static void
start_inquiry (struct Exchange *e,
struct Account *a)
{
struct Inquiry *i;
enum GNUNET_DB_QueryStatus qs;
i = GNUNET_new (struct Inquiry);
i->e = e;
i->a = a;
GNUNET_CONTAINER_DLL_insert (a->i_head,
a->i_tail,
i);
qs = db_plugin->get_kyc_status (db_plugin->cls,
a->merchant_account_uri,
a->instance_id,
e->keys->exchange_url,
&i->auth_ok,
&i->access_token,
&i->kyc_ok,
&i->last_http_status,
&i->last_ec,
&i->last_kyc_check,
&i->aml_review,
&i->jlimits);
if (qs < 0)
{
GNUNET_break (0);
global_ret = EXIT_FAILURE;
GNUNET_SCHEDULER_shutdown ();
return;
}
if (qs > 0)
i->not_first_time = true;
switch (i->last_http_status)
{
case MHD_HTTP_OK:
/* KYC is OK, but we could have missed some triggers,
so let's check, but slowly within the next minute
so that we do not overdo it if this process happens
to be restarted a lot. */
i->due = GNUNET_TIME_relative_to_absolute (
GNUNET_TIME_randomize (GNUNET_TIME_UNIT_MINUTES));
break;
case MHD_HTTP_ACCEPTED:
/* KYC required, due immediately */
break;
case MHD_HTTP_NO_CONTENT:
/* KYC is OFF, only check again if triggered */
i->due = GNUNET_TIME_relative_to_absolute (AML_LOW_FREQ);
break;
case MHD_HTTP_FORBIDDEN: /* bad signature */
case MHD_HTTP_NOT_FOUND: /* account unknown */
case MHD_HTTP_CONFLICT: /* no account_pub known */
/* go immediately into long-polling */
break;
default:
/* start with decent back-off after hard failure */
i->backoff
= GNUNET_TIME_randomize (GNUNET_TIME_UNIT_MINUTES);
break;
}
inquiry_work (i);
}
/**
* Stop KYC inquiry @a i.
*
* @param[in] i the inquiry to stop
*/
static void
stop_inquiry (struct Inquiry *i)
{
struct Account *a = i->a;
GNUNET_CONTAINER_DLL_remove (a->i_head,
a->i_tail,
i);
if (NULL != i->task)
{
GNUNET_SCHEDULER_cancel (i->task);
i->task = NULL;
}
if (NULL != i->kyc)
{
TALER_EXCHANGE_kyc_check_cancel (i->kyc);
i->kyc = NULL;
}
if (NULL != i->jlimits)
{
json_decref (i->jlimits);
i->jlimits = NULL;
}
GNUNET_free (i);
}
/**
* Stop KYC inquiry for account @a at exchange @a e.
*
* @param e an exchange
* @param a an account
*/
static void
stop_inquiry_at (struct Exchange *e,
struct Account *a)
{
for (struct Inquiry *i = a->i_head;
NULL != i;
i = i->next)
{
if (e == i->e)
{
stop_inquiry (i);
return;
}
}
/* strange, there should have been a match! */
GNUNET_break (0);
}
/**
* Start inquries for all exchanges on account @a a.
*
* @param a an account
*/
static void
start_inquiries (struct Account *a)
{
for (struct Exchange *e = e_head;
NULL != e;
e = e->next)
if (is_eligible (e->keys,
a))
start_inquiry (e,
a);
}
/**
* Stop all inquries involving account @a a.
*
* @param a an account
*/
static void
stop_inquiries (struct Account *a)
{
struct Inquiry *i;
while (NULL != (i = a->i_head))
stop_inquiry (i);
}
/**
* Callback invoked with information about a bank account.
*
* @param cls closure
* @param merchant_priv private key of the merchant instance
* @param ad details about the account
*/
static void
account_cb (
void *cls,
const struct TALER_MerchantPrivateKeyP *merchant_priv,
const struct TALER_MERCHANTDB_AccountDetails *ad)
{
struct TALER_FullPayto payto_uri = ad->payto_uri;
if (! ad->active)
return;
if (NULL == merchant_priv)
return; /* instance was deleted */
for (struct Account *a = a_head;
NULL != a;
a = a->next)
{
if (0 ==
TALER_full_payto_cmp (payto_uri,
a->merchant_account_uri))
{
a->account_gen = database_gen;
return;
}
}
{
struct Account *a = GNUNET_new (struct Account);
a->account_gen = database_gen;
a->merchant_account_uri.full_payto
= GNUNET_strdup (ad->payto_uri.full_payto);
a->instance_id
= GNUNET_strdup (ad->instance_id);
a->h_wire
= ad->h_wire;
a->ap.merchant_priv
= *merchant_priv;
TALER_full_payto_normalize_and_hash (a->merchant_account_uri,
&a->h_payto);
GNUNET_CONTAINER_DLL_insert (a_head,
a_tail,
a);
start_inquiries (a);
}
}
/**
* The set of bank accounts has changed, update our
* list of active inquiries.
*/
static void
find_accounts (void *cls)
{
enum GNUNET_DB_QueryStatus qs;
(void) cls;
account_task = NULL;
database_gen++;
qs = db_plugin->select_accounts (db_plugin->cls,
NULL, /* all instances */
&account_cb,
NULL);
if (qs < 0)
{
GNUNET_break (0);
return;
}
for (struct Account *a = a_head;
NULL != a;
a = a->next)
{
if (a->account_gen < database_gen)
stop_inquiries (a);
}
}
/**
* Function called when transfers are added to the merchant database. We look
* for more work.
*
* @param cls closure (NULL)
* @param extra additional event data provided
* @param extra_size number of bytes in @a extra
*/
static void
account_changed (void *cls,
const void *extra,
size_t extra_size)
{
(void) cls;
(void) extra;
(void) extra_size;
if (NULL != account_task)
return;
account_task
= GNUNET_SCHEDULER_add_now (&find_accounts,
NULL);
}
/**
* Interact with the database to get the current set
* of exchange keys known to us.
*
* @param exchange_url the exchange URL to check
*/
static void
find_keys (const char *exchange_url)
{
enum GNUNET_DB_QueryStatus qs;
struct TALER_EXCHANGE_Keys *keys;
struct Exchange *e;
qs = db_plugin->select_exchange_keys (db_plugin->cls,
exchange_url,
&keys);
if (qs < 0)
{
GNUNET_break (0);
return;
}
if (GNUNET_DB_STATUS_SUCCESS_NO_RESULTS == qs)
{
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
"No %s/keys yet!\n",
exchange_url);
return;
}
for (e = e_head; NULL != e; e = e->next)
{
if (0 == strcmp (e->keys->exchange_url,
keys->exchange_url))
{
struct TALER_EXCHANGE_Keys *old_keys = e->keys;
e->keys = keys;
for (struct Account *a = a_head;
NULL != a;
a = a->next)
{
bool was_eligible = is_eligible (old_keys,
a);
bool now_eligible = is_eligible (keys,
a);
if (was_eligible == now_eligible)
continue; /* no change, do nothing */
if (was_eligible)
stop_inquiry_at (e,
a);
else /* is_eligible */
start_inquiry (e,
a);
}
TALER_EXCHANGE_keys_decref (old_keys);
return;
}
}
e = GNUNET_new (struct Exchange);
e->keys = keys;
GNUNET_CONTAINER_DLL_insert (e_head,
e_tail,
e);
for (struct Account *a = a_head;
NULL != a;
a = a->next)
{
if ( (a->account_gen == database_gen) &&
(is_eligible (e->keys,
a)) )
start_inquiry (e,
a);
}
}
/**
* Function called when keys were changed in the
* merchant database. Updates ours.
*
* @param cls closure (NULL)
* @param extra additional event data provided
* @param extra_size number of bytes in @a extra
*/
static void
keys_changed (void *cls,
const void *extra,
size_t extra_size)
{
const char *url = extra;
(void) cls;
if ( (NULL == extra) ||
(0 == extra_size) )
{
GNUNET_break (0);
return;
}
if ('\0' != url[extra_size - 1])
{
GNUNET_break (0);
return;
}
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
"Received keys change notification: reload `%s'\n",
url);
find_keys (url);
}
/**
* Function called when a KYC rule was triggered by
* a transaction and we need to get the latest KYC
* status immediately.
*
* @param cls closure (NULL)
* @param extra additional event data provided
* @param extra_size number of bytes in @a extra
*/
static void
rule_triggered (void *cls,
const void *extra,
size_t extra_size)
{
const char *text = extra;
const char *space;
struct TALER_MerchantWireHashP h_wire;
const char *exchange_url;
(void) cls;
if ( (NULL == extra) ||
(0 == extra_size) )
{
GNUNET_break (0);
return;
}
if ('\0' != text[extra_size - 1])
{
GNUNET_break (0);
return;
}
space = memchr (extra,
' ',
extra_size);
if (NULL == space)
{
GNUNET_break (0);
return;
}
if (GNUNET_OK !=
GNUNET_STRINGS_string_to_data (extra,
space - text,
&h_wire,
sizeof (h_wire)))
{
GNUNET_break (0);
return;
}
exchange_url = &space[1];
if (! TALER_is_web_url (exchange_url))
{
GNUNET_break (0);
return;
}
for (struct Account *a = a_head;
NULL != a;
a = a->next)
{
if (0 !=
GNUNET_memcmp (&h_wire,
&a->h_wire))
continue;
for (struct Inquiry *i = a->i_head;
NULL != i;
i = i->next)
{
if (0 != strcmp (exchange_url,
i->e->keys->exchange_url))
continue;
i->kyc_ok = false;
i->due = GNUNET_TIME_UNIT_ZERO_ABS;
if (NULL != i->task)
{
GNUNET_SCHEDULER_cancel (i->task);
i->task = NULL;
}
if (NULL != i->kyc)
{
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
"/kyc-check already running for %s\n",
text);
return;
}
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
"Starting %skyc-check for `%s' due to KYC rule trigger\n",
exchange_url,
i->a->merchant_account_uri.full_payto);
i->task = GNUNET_SCHEDULER_add_at (i->due,
&inquiry_work,
i);
return;
}
}
GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
"KYC rule trigger notification `%s' matches none of our accounts\n",
text);
}
/**
* Function called on each configuration section. Finds sections
* about exchanges, parses the entries.
*
* @param cls NULL
* @param section name of the section
*/
static void
accept_exchanges (void *cls,
const char *section)
{
char *url;
(void) cls;
if (0 !=
strncasecmp (section,
"merchant-exchange-",
strlen ("merchant-exchange-")))
return;
if (GNUNET_YES ==
GNUNET_CONFIGURATION_get_value_yesno (cfg,
section,
"DISABLED"))
return;
if (GNUNET_OK !=
GNUNET_CONFIGURATION_get_value_string (cfg,
section,
"EXCHANGE_BASE_URL",
&url))
{
GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
section,
"EXCHANGE_BASE_URL");
global_ret = EXIT_NOTCONFIGURED;
GNUNET_SCHEDULER_shutdown ();
return;
}
find_keys (url);
GNUNET_free (url);
}
/**
* We're being aborted with CTRL-C (or SIGTERM). Shut down.
*
* @param cls closure (NULL)
*/
static void
shutdown_task (void *cls)
{
(void) cls;
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
"Running shutdown\n");
while (NULL != e_head)
{
struct Exchange *e = e_head;
if (NULL != e->keys)
{
TALER_EXCHANGE_keys_decref (e->keys);
e->keys = NULL;
}
GNUNET_CONTAINER_DLL_remove (e_head,
e_tail,
e);
GNUNET_free (e);
}
while (NULL != a_head)
{
struct Account *a = a_head;
stop_inquiries (a);
GNUNET_CONTAINER_DLL_remove (a_head,
a_tail,
a);
GNUNET_free (a->merchant_account_uri.full_payto);
GNUNET_free (a);
}
if (NULL != eh_accounts)
{
db_plugin->event_listen_cancel (eh_accounts);
eh_accounts = NULL;
}
if (NULL != account_task)
{
GNUNET_SCHEDULER_cancel (account_task);
account_task = NULL;
}
if (NULL != eh_keys)
{
db_plugin->event_listen_cancel (eh_keys);
eh_keys = NULL;
}
if (NULL != eh_rule)
{
db_plugin->event_listen_cancel (eh_rule);
eh_rule = NULL;
}
TALER_MERCHANTDB_plugin_unload (db_plugin);
db_plugin = NULL;
cfg = NULL;
if (NULL != ctx)
{
GNUNET_CURL_fini (ctx);
ctx = NULL;
}
if (NULL != rc)
{
GNUNET_CURL_gnunet_rc_destroy (rc);
rc = NULL;
}
}
/**
* First task.
*
* @param cls closure, NULL
* @param args remaining command-line arguments
* @param cfgfile name of the configuration file used (for saving, can be NULL!)
* @param c configuration
*/
static void
run (void *cls,
char *const *args,
const char *cfgfile,
const struct GNUNET_CONFIGURATION_Handle *c)
{
(void) args;
(void) cfgfile;
cfg = c;
GNUNET_SCHEDULER_add_shutdown (&shutdown_task,
NULL);
ctx = GNUNET_CURL_init (&GNUNET_CURL_gnunet_scheduler_reschedule,
&rc);
rc = GNUNET_CURL_gnunet_rc_create (ctx);
if (NULL == ctx)
{
GNUNET_break (0);
GNUNET_SCHEDULER_shutdown ();
global_ret = EXIT_FAILURE;
return;
}
if (NULL ==
(db_plugin = TALER_MERCHANTDB_plugin_load (cfg)))
{
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
"Failed to initialize DB subsystem\n");
GNUNET_SCHEDULER_shutdown ();
global_ret = EXIT_NOTCONFIGURED;
return;
}
if (GNUNET_OK !=
db_plugin->connect (db_plugin->cls))
{
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
"Failed to connect to database. Consider running taler-merchant-dbinit.\n");
GNUNET_SCHEDULER_shutdown ();
global_ret = EXIT_FAILURE;
return;
}
{
struct GNUNET_DB_EventHeaderP es = {
.size = htons (sizeof (es)),
.type = htons (TALER_DBEVENT_MERCHANT_EXCHANGE_KEYS)
};
eh_keys
= db_plugin->event_listen (db_plugin->cls,
&es,
GNUNET_TIME_UNIT_FOREVER_REL,
&keys_changed,
NULL);
}
{
struct GNUNET_DB_EventHeaderP es = {
.size = htons (sizeof (es)),
.type = htons (TALER_DBEVENT_MERCHANT_EXCHANGE_KYC_RULE_TRIGGERED)
};
eh_rule
= db_plugin->event_listen (db_plugin->cls,
&es,
GNUNET_TIME_UNIT_FOREVER_REL,
&rule_triggered,
NULL);
}
GNUNET_CONFIGURATION_iterate_sections (cfg,
&accept_exchanges,
NULL);
{
struct GNUNET_DB_EventHeaderP es = {
.size = htons (sizeof (es)),
.type = htons (TALER_DBEVENT_MERCHANT_ACCOUNTS_CHANGED)
};
eh_accounts
= db_plugin->event_listen (db_plugin->cls,
&es,
GNUNET_TIME_UNIT_FOREVER_REL,
&account_changed,
NULL);
}
GNUNET_assert (NULL == account_task);
account_task
= GNUNET_SCHEDULER_add_now (&find_accounts,
NULL);
}
/**
* The main function of taler-merchant-kyccheck
*
* @param argc number of arguments from the command line
* @param argv command line arguments
* @return 0 ok, 1 on error
*/
int
main (int argc,
char *const *argv)
{
struct GNUNET_GETOPT_CommandLineOption options[] = {
GNUNET_GETOPT_option_timetravel ('T',
"timetravel"),
GNUNET_GETOPT_option_flag ('t',
"test",
"run in test mode and exit when idle",
&test_mode),
GNUNET_GETOPT_option_version (VERSION "-" VCS_VERSION),
GNUNET_GETOPT_OPTION_END
};
enum GNUNET_GenericReturnValue ret;
ret = GNUNET_PROGRAM_run (
TALER_MERCHANT_project_data (),
argc, argv,
"taler-merchant-kyccheck",
gettext_noop (
"background process that checks the KYC state of our bank accounts at various exchanges"),
options,
&run, NULL);
if (GNUNET_SYSERR == ret)
return EXIT_INVALIDARGUMENT;
if (GNUNET_NO == ret)
return EXIT_SUCCESS;
return global_ret;
}
/* end of taler-merchant-kyccheck.c */
|