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 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614
|
/* ****************************************************************************
* eID Middleware Project.
* Copyright (C) 2008-2009 FedICT.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License version
* 3.0 as published by the Free Software Foundation.
*
* This software 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 this software; if not, see
* http://www.gnu.org/licenses/.
**************************************************************************** */
#include <fstream>
#include <stdio.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#include "MiscUtil.h"
#include "Log.h"
#include "CardLayer.h"
#include "APLReader.h"
#include "APLConfig.h"
#include "ReadersInfo.h"
#include "Util.h"
#include "TLVBuffer.h"
#include "CardBeidDef.h"
#include "CardSISDef.h"
#include "APLCard.h"
#include "APLCardBeid.h"
#include "APLCardSIS.h"
#include "eidErrors.h"
#include "MWException.h"
#include "CRLService.h"
#include "dialogs.h"
#include "cryptoFwkBeid.h"
#include "CertStatusCache.h"
#include "eidmw_EIDXmlParser.h"
#include "../_Builds/beidversions.h"
namespace eIDMW
{
/*****************************************************************************************
------------------------------------ APL_ReaderContext ---------------------------------------
*****************************************************************************************/
APL_ReaderContext::APL_ReaderContext(const char *readerName)
{
m_calreader=&AppLayer.getCardLayer()->getReader(readerName);
m_card=NULL;
m_cardid=0;
m_cal_lock=false;
m_transaction_lock=false;
m_virtual=false;
m_parser=NULL;
}
APL_ReaderContext::APL_ReaderContext(APL_SaveFileType fileType, const char *fileName)
{
m_calreader=NULL;
m_card=NULL;
m_cardid=0;
m_cal_lock=false;
m_transaction_lock=false;
m_virtual=true;
m_status=CARD_NOT_PRESENT;
m_parser=new APL_SuperParser(fileName,fileType);
connectVirtualCard();
}
APL_ReaderContext::APL_ReaderContext(APL_SaveFileType fileType, const CByteArray &data)
{
m_calreader=NULL;
m_card=NULL;
m_cardid=0;
m_cal_lock=false;
m_transaction_lock=false;
m_virtual=true;
m_status=CARD_NOT_PRESENT;
if(fileType==APL_SAVEFILETYPE_TLV
|| fileType==APL_SAVEFILETYPE_XML
|| fileType==APL_SAVEFILETYPE_CSV)
{
m_parser=new APL_SuperParser(data,fileType);
connectVirtualCard();
}
}
APL_ReaderContext::APL_ReaderContext(const APL_RawData_Eid &data)
{
m_calreader=NULL;
m_card=NULL;
m_cardid=0;
m_cal_lock=false;
m_transaction_lock=false;
m_virtual=true;
m_status=CARD_NOT_PRESENT;
m_parser=new APL_SuperParser(data);
connectVirtualCard();
}
APL_ReaderContext::APL_ReaderContext(const APL_RawData_Sis &data)
{
m_calreader=NULL;
m_card=NULL;
m_cardid=0;
m_cal_lock=false;
m_transaction_lock=false;
m_virtual=true;
m_status=CARD_NOT_PRESENT;
m_parser=new APL_SuperParser(data);
connectVirtualCard();
}
APL_ReaderContext::~APL_ReaderContext()
{
if(m_transaction_lock)
{
EndTransaction();
}
if(m_cal_lock)
{
CalUnlock();
}
if(m_card)
{
delete m_card;
m_card=NULL;
}
if(m_parser)
{
delete m_parser;
m_parser=NULL;
}
}
void APL_ReaderContext::connectVirtualCard()
{
if(m_parser->getCardType()!=APL_CARDTYPE_UNKNOWN)
{
m_status=CARD_INSERTED;
if(!connectCard())
{
m_status=CARD_NOT_PRESENT;
return;
}
m_status=CARD_STILL_PRESENT;
}
}
const char *APL_ReaderContext::getName()
{
if(m_name.empty())
{
if(isVirtualReader())
{
m_name=m_parser->getFileName();
}
else
{
m_name=m_calreader->GetReaderName();
}
}
return m_name.c_str();
}
bool APL_ReaderContext::isCardPresent()
{
connectCard();
if(m_status==CARD_STILL_PRESENT
|| m_status==CARD_INSERTED
|| m_status==CARD_OTHER)
return true;
return false;
}
bool APL_ReaderContext::isCardChanged(unsigned long &ulOldId)
{
connectCard();
if(m_cardid==ulOldId)
return false;
ulOldId=m_cardid;
return true;
}
unsigned long APL_ReaderContext::getCardId()
{
//if(!isCardPresent()) //Make too many connection to the card
// return 0;
if(m_status==CARD_STILL_PRESENT
|| m_status==CARD_INSERTED
|| m_status==CARD_OTHER)
return m_cardid;
return 0;
}
APL_CardType APL_ReaderContext::getCardType()
{
if(!m_card) //Unless, make too many connection to the card
connectCard();
if(m_status!=CARD_STILL_PRESENT
&& m_status!=CARD_INSERTED
&& m_status!=CARD_OTHER)
throw CMWEXCEPTION(EIDMW_ERR_NO_CARD);
if(m_card)
return m_card->getType();
else
return APL_CARDTYPE_UNKNOWN;
}
APL_CardType APL_ReaderContext::getVirtualCardType()
{
if(!m_parser)
throw CMWEXCEPTION(EIDMW_ERR_CHECK);
return m_parser->getCardType();
}
APL_CardType APL_ReaderContext::getPhysicalCardType()
{
if(!m_calreader)
throw CMWEXCEPTION(EIDMW_ERR_CHECK);
APL_CardType ret=APL_CARDTYPE_UNKNOWN;
tCardType CalCarType;
CalLock();
try
{
CalCarType=m_calreader->GetCardType();
}
catch(CMWException &e)
{
CalUnlock();
unsigned long err = e.GetError();
if(err!=EIDMW_ERR_NO_CARD)
throw e;
return ret;
}
CalUnlock();
switch(CalCarType)
{
case CARD_BEID:
{
//Check the document type in the ID file
long lDocType=-1;
CalLock();
try
{
CByteArray file = m_calreader->ReadFile(BEID_FILE_ID,0,FULL_FILE,true);
CTLVBuffer oTLVBuffer;
oTLVBuffer.ParseTLV(file.GetBytes(), file.Size());
oTLVBuffer.FillLongData(BEID_FIELD_TAG_ID_DocumentType, &lDocType);
}
catch(CMWException &e)
{
CalUnlock();
unsigned long err = e.GetError();
if(err!=EIDMW_ERR_FILE_NOT_FOUND && err!=EIDMW_ERR_NO_CARD)
throw e;
//The card may be empty, we do not instantiate m_card object
return ret;
}
CalUnlock();
if(lDocType==BEID_CARDTYPE_KIDS_CODE)
ret=APL_CARDTYPE_BEID_KIDS;
else if(lDocType>=BEID_CARDTYPE_FOREIGNER_CODE_MIN
&& lDocType<=BEID_CARDTYPE_FOREIGNER_CODE_MAX)
ret=APL_CARDTYPE_BEID_FOREIGNER;
else
ret=APL_CARDTYPE_BEID_EID;
break;
}
case CARD_SIS:
ret=APL_CARDTYPE_BEID_SIS;
break;
case CARD_UNKNOWN:
default:
break;
}
return ret;
}
bool APL_ReaderContext::connectCard()
{
CAutoMutex autoMutex(&m_newcardmutex);
if(!isVirtualReader()) //Virtual reader
{
try
{
m_status=m_calreader->Status(true);
}
catch(CMWException &e)
{
unsigned long err = e.GetError();
if(err!=EIDMW_ERR_CANT_CONNECT)
throw e;
//If we can't connect, the may hold a card that it can't read
//so we return an unknown card type
m_status=CARD_INSERTED;
}
}
//If there is no card, we delete the pointer and we quit
if(m_status==CARD_NOT_PRESENT || m_status==CARD_REMOVED)
{
if(m_card)
{
delete m_card;
m_card=NULL;
}
return false;
}
if(m_card)
{
//If there is a card and change, we delete the pointer
if(m_status==CARD_INSERTED || m_status==CARD_OTHER)
{
delete m_card;
m_card=NULL;
}
else //If there is a card and no change, we quit
{
return false;
}
}
//The card has changed => we increment the id to make isCardChanged return true (even if the card is unknown or test not allow)
m_cardid++;
APL_CardType cardType=APL_CARDTYPE_UNKNOWN;
if(isVirtualReader())
cardType=getVirtualCardType();
else
cardType=getPhysicalCardType();
switch(cardType)
{
case APL_CARDTYPE_BEID_EID:
m_card = new APL_EIDCard(this);
break;
case APL_CARDTYPE_BEID_KIDS:
m_card = new APL_KidsCard(this);
break;
case APL_CARDTYPE_BEID_FOREIGNER:
m_card = new APL_ForeignerCard(this);
break;
case APL_CARDTYPE_BEID_SIS:
m_card = new APL_SISCard(this);
break;
default:
return false;
}
if(isVirtualReader() && !m_card->initVirtualReader())
{
delete m_card;
m_card = NULL;
return false;
}
//If the card is forbidden
if(m_card->isCardForbidden())
{
delete m_card;
m_card = NULL;
return false;
}
return true; //New connection
}
APL_Card *APL_ReaderContext::getCard()
{
connectCard();
return m_card;
}
APL_EIDCard *APL_ReaderContext::getEIDCard()
{
connectCard();
if(m_card != NULL && m_card->getType()==APL_CARDTYPE_BEID_EID)
return dynamic_cast<APL_EIDCard *>(m_card);
return NULL;
}
APL_KidsCard *APL_ReaderContext::getKidsCard()
{
connectCard();
if(m_card->getType()==APL_CARDTYPE_BEID_KIDS)
return dynamic_cast<APL_KidsCard *>(m_card);
return NULL;
}
APL_ForeignerCard *APL_ReaderContext::getForeignerCard()
{
connectCard();
if(m_card->getType()==APL_CARDTYPE_BEID_FOREIGNER)
return dynamic_cast<APL_ForeignerCard *>(m_card);
return NULL;
}
APL_SISCard *APL_ReaderContext::getSISCard()
{
connectCard();
if(m_card->getType()==APL_CARDTYPE_BEID_SIS)
return dynamic_cast<APL_SISCard *>(m_card);
return NULL;
}
unsigned long APL_ReaderContext::SetEventCallback(void (* callback)(long lRet, unsigned long ulState, void *pvRef), void *pvRef) const
{
if(isVirtualReader()) //Virtual reader
return 0;
return m_calreader->SetEventCallback(callback,pvRef);
}
void APL_ReaderContext::StopEventCallback(unsigned long ulHandle) const
{
if(isVirtualReader()) //Virtual reader
return;
m_calreader->StopEventCallback(ulHandle);
}
void APL_ReaderContext::BeginTransaction()
{
if(m_transaction_lock)
throw CMWEXCEPTION(EIDMW_ERR_BAD_TRANSACTION);
m_transaction_mutex.Lock();
m_transaction_lock=true;
try
{
connectCard();
if(!isVirtualReader())
m_calreader->Lock();
}
catch(...)
{
m_transaction_lock=false;
m_transaction_mutex.Unlock();
throw;
}
}
void APL_ReaderContext::EndTransaction()
{
if(!m_transaction_lock)
throw CMWEXCEPTION(EIDMW_ERR_BAD_TRANSACTION);
try
{
if(!isVirtualReader())
m_calreader->Unlock();
}
catch(...)
{
m_transaction_lock=false;
m_transaction_mutex.Unlock();
throw;
}
m_transaction_lock=false;
m_transaction_mutex.Unlock();
}
void APL_ReaderContext::CalLock()
{
if(m_cal_lock)
throw CMWEXCEPTION(EIDMW_ERR_BAD_TRANSACTION);
m_cal_mutex.Lock();
m_cal_lock=true;
//try
//{
// if(!isVirtualReader())
// m_calreader->Lock();
//}
//catch(...)
//{
// m_cal_lock=false;
// m_cal_mutex.Unlock();
// throw;
//}
}
void APL_ReaderContext::CalUnlock()
{
if(!m_cal_lock)
throw CMWEXCEPTION(EIDMW_ERR_BAD_TRANSACTION);
//try
//{
// if(!isVirtualReader())
// m_calreader->Unlock();
//}
//catch(...)
//{
// m_cal_lock=false;
// m_cal_mutex.Unlock();
// throw;
//}
m_cal_lock=false;
m_cal_mutex.Unlock();
}
bool APL_ReaderContext::isVirtualReader() const
{
return m_virtual;
}
CReader *APL_ReaderContext::getCalReader() const
{
return m_calreader;
}
APL_SuperParser *APL_ReaderContext::getSuperParser() const
{
return m_parser;
}
/*****************************************************************************************
------------------------------------ CheckRelease ---------------------------------------
*****************************************************************************************/
class APL_CheckRelease
{
public:
APL_CheckRelease()
{
m_ReleaseOk=true;
}
~APL_CheckRelease()
{
if(!m_ReleaseOk)
{
printf("ERROR : Please do not forget to release the SDK\n");
throw CMWEXCEPTION(EIDMW_ERR_RELEASE_NEEDED);
}
}
bool m_ReleaseOk;
} checkRelease;
/*****************************************************************************************
------------------------------------ CAppLayer ---------------------------------------
*****************************************************************************************/
CAppLayer *CAppLayer::m_instance=NULL;
CMutex CAppLayer::m_Mutex;
CAppLayer::CAppLayer()
{
MWLOG(LEV_INFO, MOD_APL, L"Create CAppLayer object");
m_readerList=NULL;
m_readerCount=COUNT_UNDEF;
m_contextid=0;
m_Cal=NULL;
m_cryptoFwk=NULL;
m_crlDownloadCache=NULL;
m_certStatusCache=NULL;
m_askfortestcard=false;
updateVersion();
startAllServices();
}
CAppLayer::~CAppLayer(void)
{
stopAllServices();
MWLOG(LEV_INFO, MOD_APL, L"Delete CAppLayer object");
}
//Get the singleton instance of the CAppLayer
CAppLayer &CAppLayer::instance()
{
if (m_instance == NULL) //First we test if we need to instantiated (without locking to be quicker
{
CAutoMutex autoMutex(&m_Mutex); //We lock for only one instantiation
if (m_instance == NULL) //We test again to be sure it isn't instantiated between the first if and the lock
{
checkRelease.m_ReleaseOk=false;
m_instance=new CAppLayer;
}
}
return *m_instance;
}
void CAppLayer::setAskForTestCard(bool bAskForTestCard)
{
m_askfortestcard=bAskForTestCard;
}
bool CAppLayer::getAskForTestCard()
{
return m_askfortestcard;
}
void CAppLayer::init(bool bAskForTestCard)
{
instance().setAskForTestCard(bAskForTestCard);
}
//Release the singleton instance of the CAppLayer
void CAppLayer::release()
{
CAutoMutex autoMutex(&m_Mutex);
checkRelease.m_ReleaseOk=true;
delete m_instance;
m_instance=NULL;
}
void CAppLayer::releaseReaders()
{
//Delete the reader before the cal
m_readerCount=COUNT_UNDEF;
while(m_physicalReaders.size()>0)
{
delete m_physicalReaders[m_physicalReaders.size()-1];
m_physicalReaders.pop_back();
}
readerListRelease();
}
void CAppLayer::startAllServices()
{
MWLOG(LEV_INFO, MOD_APL, L"Start all applayer services");
//First start the card layer
if(!m_Cal)
m_Cal = new CCardLayer;
readerListInit(true);
//Then start the crypto framework
if(!m_cryptoFwk)
m_cryptoFwk = new APL_CryptoFwkBeid;
//Then start the caches (Certificates and CRL)
if(!m_certStatusCache)
m_certStatusCache = new APL_CertStatusCache(m_cryptoFwk);
//At least, start the CrlDownloadCache, which will Run CRL service and DownloadControl
if(!m_crlDownloadCache)
m_crlDownloadCache = new APL_CrlDownloadingCache(m_cryptoFwk);
}
void CAppLayer::stopAllServices()
{
//stopping is made in the opposite order then starting
MWLOG(LEV_INFO, MOD_APL, L"Stop all applayer services");
if(m_crlDownloadCache)
{
m_crlDownloadCache->stopAllThreads();
delete m_crlDownloadCache;
m_crlDownloadCache=NULL;
}
if(m_certStatusCache)
{
delete m_certStatusCache;
m_certStatusCache=NULL;
}
if(m_cryptoFwk)
{
delete m_cryptoFwk;
m_cryptoFwk=NULL;
}
releaseReaders();
if(m_Cal)
{
//m_Cal->ForceRelease(); //No need => cause trouble
delete m_Cal;
m_Cal=NULL;
}
}
void CAppLayer::readerListRelease()
{
if(m_readerList)
{
unsigned long i=0;
while(m_readerList[i]!=NULL)
{
delete[] m_readerList[i];
m_readerList[i]=NULL;
i++;
}
delete[] m_readerList;
m_readerList=NULL;
}
}
void CAppLayer::readerListInit(bool bForceRefresh)
{
if(bForceRefresh || m_readerCount==COUNT_UNDEF)
{
if(isReadersChanged())
{
CAutoMutex autoMutex(&m_Mutex); //We lock for only one instantiation
if(isReadersChanged())
{
CReadersInfo *info=NULL;
unsigned long nbrReader=0;
try
{
info = new CReadersInfo();
*info=m_Cal->ListReaders();
nbrReader=info->ReaderCount();
}
catch(...)
{
nbrReader=0;
}
readerListRelease();
m_readerList = new char*[nbrReader+1];
unsigned long i;
for(i=0;i<nbrReader;i++)
{
m_readerList[i] = new char [info->ReaderName(i).size()+1];
strcpy_s(m_readerList[i],info->ReaderName(i).size()+1,info->ReaderName(i).c_str());
}
//The last element must be NULL the make loop easy
m_readerList[i]=NULL;
m_readerCount=nbrReader;
m_contextid++;
if(info)
delete info;
}
}
}
}
//Update the version
void CAppLayer::updateVersion()
{
try
{
APL_Config conf_BuildNbr(CConfig::EIDMW_CONFIG_PARAM_GENERAL_BUILDNBR);
conf_BuildNbr.ChangeLookupBehaviour(APL_Config::USER_ONLY);
long build = conf_BuildNbr.getLong();
if(build<4876)
{
APL_Config conf_ValidCrl(CConfig::EIDMW_CONFIG_PARAM_CERTVALID_CRL);
conf_ValidCrl.setLong(0);
APL_Config conf_ValidOcsp(CConfig::EIDMW_CONFIG_PARAM_CERTVALID_OCSP);
conf_ValidOcsp.setLong(0);
}
/*
if(build<...)
{
...
}
*/
conf_BuildNbr.setLong(SVN_REVISION);
}
catch(...) //If the update failed, we will try next time
{
}
}
//Return a reference to the CAL
CCardLayer *CAppLayer::getCardLayer() const
{
if(!m_Cal)
throw CMWEXCEPTION(EIDMW_ERR_CHECK);
return m_Cal;
}
//Return a reference to the CRL download cache
APL_CrlDownloadingCache *CAppLayer::getCrlDownloadCache() const
{
if(!m_crlDownloadCache)
throw CMWEXCEPTION(EIDMW_ERR_CHECK);
return m_crlDownloadCache;
}
//Return a reference to the crypto framework
APL_CryptoFwkBeid *CAppLayer::getCryptoFwk() const
{
if(!m_cryptoFwk)
throw CMWEXCEPTION(EIDMW_ERR_CHECK);
return m_cryptoFwk;
}
//Return a reference to the crl service
APL_CertStatusCache *CAppLayer::getCertStatusCache() const
{
if(!m_certStatusCache)
throw CMWEXCEPTION(EIDMW_ERR_CHECK);
return m_certStatusCache;
}
bool CAppLayer::isReadersChanged() const
{
try
{
CReadersInfo info=m_Cal->ListReaders();
if(m_readerCount!=info.ReaderCount())
return true;
unsigned long i;
for(i=0;i<info.ReaderCount();i++)
{
if(strcmp(m_readerList[i],info.ReaderName(i).c_str())!=0)
return true;
}
}
catch(...)
{
return (m_readerCount!=0);
}
return false;
}
unsigned long CAppLayer::getContextId(bool bForceRefresh)
{
readerListInit(bForceRefresh);
return m_contextid;
}
const char * const *CAppLayer::readerList(bool bForceRefresh)
{
readerListInit(bForceRefresh);
return m_readerList;
}
unsigned long CAppLayer::readerCount(bool bForceRefresh)
{
readerListInit(bForceRefresh);
return m_readerCount;
}
APL_ReaderContext &CAppLayer::getReader(const char *readerName)
{
APL_ReaderContext *reader;
bool find=false;
unsigned long i;
CAutoMutex autoMutex(&m_Mutex); //We lock for only one instantiation
//We look in the vector if there is already a reader with that name
for(i=0;i<m_physicalReaders.size();i++)
{
if(strcmp(m_physicalReaders[i]->getName(),readerName)==0)
{
find = true;
break;
}
}
if(find)
{
reader = m_physicalReaders[i];
}
else
{
//The CAL does not check the name
//so we have to throw an exception if the name is not in the reader list
const char * const *list = readerList();
for(unsigned long i=0;list[i]!=NULL;i++)
{
if(strcmp(list[i],readerName)==0)
{
find=true;
break;
}
}
if(find)
{
reader = new APL_ReaderContext(readerName);
m_physicalReaders.push_back(reader);
reader = m_physicalReaders[m_physicalReaders.size()-1];
}
else
{
throw CMWEXCEPTION(EIDMW_ERR_PARAM_RANGE);
}
}
return *reader;
}
APL_ReaderContext &CAppLayer::getReader(unsigned long ulIndex)
{
return getReader(getReaderName(ulIndex));
}
APL_ReaderContext &CAppLayer::getReader()
{
unsigned long count = readerCount();
if(count==0)
throw CMWEXCEPTION(EIDMW_ERR_NO_READER);
bool bFoundCard=false;
unsigned long i;
for (i=0; i<count; i++)
{
if(getReader(i).isCardPresent())
{
bFoundCard=true;
break;
}
}
if(!bFoundCard)
i=0;
return getReader(i);
}
APL_ReaderContext &CAppLayer::getReaderByCardSN(const char *cardSerialNumber)
{
unsigned long count = readerCount();
if(count==0)
throw CMWEXCEPTION(EIDMW_ERR_NO_READER);
bool bFoundCard=false;
unsigned long i;
for (i=0; i<count; i++)
{
if(getReader(i).isCardPresent())
{
if(strcmp(cardSerialNumber,getReader(i).getCalReader()->GetSerialNr().c_str())==0)
{
bFoundCard=true;
break;
}
}
}
if(!bFoundCard)
throw CMWEXCEPTION(EIDMW_ERR_PARAM_RANGE);
return getReader(i);
}
const char *CAppLayer::getReaderName(unsigned long ulIndex)
{
readerListInit();
if(ulIndex>=m_readerCount)
throw CMWEXCEPTION(EIDMW_ERR_PARAM_RANGE);
return m_readerList[ulIndex];
}
bool CAppLayer::flushCache() const
{
return getCardLayer()->DeleteFromCache("");
}
/*****************************************************************************************
------------------------------------ APL_SuperParser ---------------------------------------
*****************************************************************************************/
APL_SuperParser::APL_SuperParser(const char *fileName, APL_SaveFileType fileType)
{
m_cardType=APL_CARDTYPE_UNKNOWN;
m_fileType=fileType;
m_fileName=fileName;
m_fileData=NULL;
m_parserTlv=NULL;
m_parserCsv=NULL;
m_parserXml=NULL;
m_rawdata_eid=NULL;
m_rawdata_sis=NULL;
m_fctReadDataRAW=NULL;
m_fctReadDataTLV=NULL;
m_fctReadDataCSV=NULL;
m_fctReadDataXML=NULL;
loadFile();
try
{
parse();
}
catch (CMWException &e)
{
unsigned long err = e.GetError(); //to avoid Warning
err = err;
}
if(m_fileData)
{
delete m_fileData;
m_fileData=NULL;
}
}
APL_SuperParser::APL_SuperParser(const CByteArray &data, APL_SaveFileType fileType)
{
m_cardType=APL_CARDTYPE_UNKNOWN;
m_fileType=fileType;
m_fileName="Raw file";
m_fileData=NULL;
m_parserTlv=NULL;
m_parserCsv=NULL;
m_parserXml=NULL;
m_rawdata_eid=NULL;
m_rawdata_sis=NULL;
m_fctReadDataRAW=NULL;
m_fctReadDataTLV=NULL;
m_fctReadDataCSV=NULL;
m_fctReadDataXML=NULL;
m_fileData=new CByteArray;
*m_fileData=data;
try
{
parse();
}
catch (CMWException &e)
{
unsigned long err = e.GetError(); //to avoid Warning
err = err;
}
if(m_fileData)
{
delete m_fileData;
m_fileData=NULL;
}
}
APL_SuperParser::APL_SuperParser(const APL_RawData_Eid &data)
{
m_cardType=APL_CARDTYPE_UNKNOWN;
m_fileType=APL_SAVEFILETYPE_RAWDATA;
m_fileName="Raw data";
m_fileData=NULL;
m_parserTlv=NULL;
m_parserCsv=NULL;
m_parserXml=NULL;
m_rawdata_eid=NULL;
m_rawdata_sis=NULL;
m_fctReadDataRAW=NULL;
m_fctReadDataTLV=NULL;
m_fctReadDataCSV=NULL;
m_fctReadDataXML=NULL;
m_rawdata_eid= new APL_RawData_Eid(data);
m_version=m_rawdata_eid->version;
long lDocType=-1;
try
{
CTLVBuffer oTLVBuffer;
oTLVBuffer.ParseTLV(m_rawdata_eid->idData.GetBytes(), m_rawdata_eid->idData.Size());
oTLVBuffer.FillLongData(BEID_FIELD_TAG_ID_DocumentType, &lDocType);
}
catch(CMWException &e)
{
unsigned long err = e.GetError(); //to avoid Warning
err = err;
return;
}
if(lDocType==BEID_CARDTYPE_KIDS_CODE)
m_cardType=APL_CARDTYPE_BEID_KIDS;
else if(lDocType>=BEID_CARDTYPE_FOREIGNER_CODE_MIN
&& lDocType<=BEID_CARDTYPE_FOREIGNER_CODE_MAX)
m_cardType=APL_CARDTYPE_BEID_FOREIGNER;
else
m_cardType=APL_CARDTYPE_BEID_EID;
}
APL_SuperParser::APL_SuperParser(const APL_RawData_Sis &data)
{
m_cardType=APL_CARDTYPE_UNKNOWN;
m_fileType=APL_SAVEFILETYPE_RAWDATA;
m_fileName="Raw data";
m_fileData=NULL;
m_parserTlv=NULL;
m_parserCsv=NULL;
m_parserXml=NULL;
m_rawdata_eid=NULL;
m_rawdata_sis=NULL;
m_fctReadDataRAW=NULL;
m_fctReadDataTLV=NULL;
m_fctReadDataCSV=NULL;
m_fctReadDataXML=NULL;
m_rawdata_sis= new APL_RawData_Sis(data);;
m_version=m_rawdata_sis->version;
m_cardType=APL_CARDTYPE_BEID_SIS;
}
APL_SuperParser::~APL_SuperParser()
{
if(m_fileData)
{
delete m_fileData;
m_fileData=NULL;
}
if(m_parserTlv)
{
delete m_parserTlv;
m_parserTlv=NULL;
}
if(m_parserCsv)
{
delete m_parserCsv;
m_parserCsv=NULL;
}
if(m_parserXml)
{
delete m_parserXml;
m_parserXml=NULL;
}
if(m_rawdata_eid)
{
delete m_rawdata_eid;
m_rawdata_eid=NULL;
}
if(m_rawdata_sis)
{
delete m_rawdata_sis;
m_rawdata_sis=NULL;
}
}
bool APL_SuperParser::loadFile()
{
if ( APL_SAVEFILETYPE_UNKNOWN==m_fileType)
{
const char* pExt = strrchr(m_fileName.c_str(),'.');
if (!pExt
|| strlen(pExt)<4
)
{
return false;
}
if ( 0 == strcmp(pExt, ".xml") )
{
m_fileType = APL_SAVEFILETYPE_XML;
}
else if( 0 == strcmp(pExt, ".csv") )
{
m_fileType = APL_SAVEFILETYPE_CSV;
}
else if( (0 == strcmp(pExt, ".eid")) || (0 == strcmp(pExt, ".tlv")) )
{
m_fileType = APL_SAVEFILETYPE_TLV;
}
else
{
return false;
}
}
//--------------------------------
// If the file does not exist, this is similar as as no card is inserted
// so throw the same exception.
//--------------------------------
if (!CPathUtil::existFile(m_fileName.c_str()))
throw CMWEXCEPTION(EIDMW_ERR_FILE_NOT_FOUND);
FILE *f;
int err=0;
size_t size = 0;
size_t sizeread = 0;
#ifdef WIN32
err = fopen_s(&f, m_fileName.c_str(), "rb");
#else
f = fopen(m_fileName.c_str(), "rb");
if (f == NULL) err=errno;
#endif
if (err != 0 && err != EACCES && err != ENOENT )
throw CMWEXCEPTION(EIDMW_ERROR_IO);
if(!m_fileData)
m_fileData=new CByteArray;
m_fileData->ClearContents();
#ifdef WIN32
struct _stat buf = {0};
if(0 == _fstat(_fileno(f), &buf))
#else
struct stat buf = {0};
if(0 == fstat(fileno(f), &buf))
#endif
{
size=0;
unsigned char *pBuffer = (unsigned char *)malloc(buf.st_size);
while(size < (size_t) buf.st_size)
{
if( 0== (sizeread = fread(pBuffer, sizeof(unsigned char), buf.st_size, f)))
break;
m_fileData->Append(pBuffer,(long)sizeread);
size+=sizeread;
}
if(size != (size_t)buf.st_size)
{
free(pBuffer);
throw CMWEXCEPTION(EIDMW_ERROR_IO);
}
free(pBuffer);
}
fclose(f);
return true;
}
bool APL_SuperParser::parse()
{
char *type=NULL;
switch(m_fileType)
{
case APL_SAVEFILETYPE_TLV:
{
if(m_parserTlv)
{
delete m_parserTlv;
m_parserTlv=NULL;
}
m_parserTlv = new TLVParser;
m_parserTlv->ParseFileTLV(m_fileData->GetBytes(), m_fileData->Size());
CTLV *tlv=m_parserTlv->GetTagData(BEID_TLV_TAG_CARDTYPE);
if(tlv==NULL)
{
type=new char[sizeof(CARDTYPE_NAME_BEID_EID)+1];
strcpy_s(type,sizeof(CARDTYPE_NAME_BEID_EID)+1,CARDTYPE_NAME_BEID_EID); //Old file doesn't contain BEID_TLV_TAG_CARDTYPE
}
else
{
type=new char[tlv->GetLength()+1];
strncpy_s(type,tlv->GetLength()+1,(char*)tlv->GetData(),tlv->GetLength());
}
tlv=m_parserTlv->GetTagData(BEID_TLV_TAG_VERSION);
if(tlv==NULL)
return false;
CByteArray baVersion(tlv->GetData(),tlv->GetLength());
m_version=(unsigned long)baVersion.GetByte(0);
break;
}
case APL_SAVEFILETYPE_CSV:
{
if(m_parserCsv)
{
delete m_parserCsv;
m_parserCsv=NULL;
}
m_parserCsv = new CSVParser(*m_fileData,CSV_SEPARATOR);
const CByteArray &baCardType=m_parserCsv->getData(BEID_CSV_TAG_CARDTYPE);
type=new char[baCardType.Size()+1];
strncpy_s(type,baCardType.Size()+1,(char*)baCardType.GetBytes(),baCardType.Size());
char *stop;
const CByteArray &baVersion=m_parserCsv->getData(BEID_CSV_TAG_VERSION);
m_version=strtoul((char*)baVersion.GetBytes(),&stop,10);
break;
}
case APL_SAVEFILETYPE_XML:
{
if(m_parserXml)
{
delete m_parserXml;
m_parserXml=NULL;
}
m_parserXml=new EIDMW_EIDMemParser((char *)m_fileData->GetBytes(),m_fileData->Size());
if(m_parserXml->parse())
{
m_cardType=m_parserXml->getDataCardType();
wchar_t *stop;
m_version=wcstoul(m_parserXml->getDocVersion(),&stop,10);
return true;
}
else
{
return false;
}
break;
}
default:
return false;
}
if(strcmp(type,CARDTYPE_NAME_BEID_EID)==0)
m_cardType=APL_CARDTYPE_BEID_EID;
else if(strcmp(type,CARDTYPE_NAME_BEID_KIDS)==0)
m_cardType=APL_CARDTYPE_BEID_KIDS;
else if(strcmp(type,CARDTYPE_NAME_BEID_FOREIGNER)==0)
m_cardType=APL_CARDTYPE_BEID_FOREIGNER;
else if(strcmp(type,CARDTYPE_NAME_BEID_SIS)==0)
m_cardType=APL_CARDTYPE_BEID_SIS;
if(type)
delete[] type;
if(m_cardType==APL_CARDTYPE_UNKNOWN)
return false;
return true;
}
APL_CardType APL_SuperParser::getCardType()
{
return m_cardType;
}
unsigned long APL_SuperParser::getVersion()
{
return m_version;
}
const char *APL_SuperParser::getFileName()
{
return m_fileName.c_str();
}
APL_SaveFileType APL_SuperParser::getFileType()
{
return m_fileType;
}
APL_RawData_Eid *APL_SuperParser::getRawDataEid()
{
return m_rawdata_eid;
}
APL_RawData_Sis *APL_SuperParser::getRawDataSis()
{
return m_rawdata_sis;
}
void APL_SuperParser::initReadFunction(
unsigned long (*fctReadDataRAW)(APL_SuperParser *parser,const char *fileID, CByteArray &in,unsigned long idx),
unsigned long (*fctReadDataTLV)(APL_SuperParser *parser,const char *fileID, CByteArray &in,unsigned long idx),
unsigned long (*fctReadDataCSV)(APL_SuperParser *parser,const char *fileID, CByteArray &in,unsigned long idx),
unsigned long (*fctReadDataXML)(APL_SuperParser *parser,const char *fileID, CByteArray &in,unsigned long idx))
{
m_fctReadDataRAW=fctReadDataRAW;
m_fctReadDataTLV=fctReadDataTLV;
m_fctReadDataCSV=fctReadDataCSV;
m_fctReadDataXML=fctReadDataXML;
}
unsigned long APL_SuperParser::readData(const char *fileID, CByteArray &in,unsigned long idx)
{
switch(m_fileType)
{
case APL_SAVEFILETYPE_RAWDATA:
if((m_cardType==APL_CARDTYPE_BEID_SIS && !m_rawdata_sis)
|| ((m_cardType==APL_CARDTYPE_BEID_EID || m_cardType==APL_CARDTYPE_BEID_KIDS || m_cardType==APL_CARDTYPE_BEID_FOREIGNER) && !m_rawdata_eid)
|| m_cardType==APL_CARDTYPE_UNKNOWN)
throw CMWEXCEPTION(EIDMW_ERR_CHECK);
if(!m_fctReadDataRAW)
throw CMWEXCEPTION(EIDMW_ERR_CHECK);
return m_fctReadDataRAW(this,fileID,in,idx);
case APL_SAVEFILETYPE_TLV:
if(!m_parserTlv)
throw CMWEXCEPTION(EIDMW_ERR_CHECK);
if(!m_fctReadDataTLV)
throw CMWEXCEPTION(EIDMW_ERR_CHECK);
return m_fctReadDataTLV(this,fileID,in,idx);
case APL_SAVEFILETYPE_CSV:
if(!m_parserCsv)
throw CMWEXCEPTION(EIDMW_ERR_CHECK);
if(!m_fctReadDataCSV)
throw CMWEXCEPTION(EIDMW_ERR_CHECK);
return m_fctReadDataCSV(this,fileID,in,idx);
case APL_SAVEFILETYPE_XML:
if(!m_parserXml)
throw CMWEXCEPTION(EIDMW_ERR_CHECK);
if(!m_fctReadDataXML)
throw CMWEXCEPTION(EIDMW_ERR_CHECK);
return m_fctReadDataXML(this,fileID,in,idx);
case APL_SAVEFILETYPE_UNKNOWN:
default:
break;
}
throw CMWEXCEPTION(EIDMW_ERR_CHECK);
}
unsigned long APL_SuperParser::readDataXml(CByteArray &in, const char *tag)
{
return readDataXml(in, tag, 0);
}
unsigned long APL_SuperParser::readDataXml(CByteArray &in, const char *tag,unsigned long idx)
{
if(!m_parserXml)
throw CMWEXCEPTION(EIDMW_ERR_CHECK);
if(idx<m_parserXml->getDataSize(tag))
in=*m_parserXml->getData(tag,idx);
return in.Size();
}
unsigned long APL_SuperParser::countDataXml(const char *tag)
{
if(!m_parserXml)
throw CMWEXCEPTION(EIDMW_ERR_CHECK);
return (unsigned long)m_parserXml->getDataSize(tag);
}
unsigned long APL_SuperParser::readDataTlv(CByteArray &in, unsigned char tag)
{
if(!m_parserTlv)
throw CMWEXCEPTION(EIDMW_ERR_CHECK);
CTLV *tlv=m_parserTlv->GetTagData(tag);
if(tlv==NULL)
throw CMWEXCEPTION(EIDMW_ERR_CHECK);
in.ClearContents();
in.Append(tlv->GetData(),tlv->GetLength());
return in.Size();
}
unsigned long APL_SuperParser::readDataTlv(CByteArray &in, unsigned char tag, unsigned char subtag)
{
if(!m_parserTlv)
throw CMWEXCEPTION(EIDMW_ERR_CHECK);
in.ClearContents();
CTLV *tlv=m_parserTlv->GetSubTagData(tag,subtag);
if(tlv)
in.Append(tlv->GetData(),tlv->GetLength());
return in.Size();
}
unsigned long APL_SuperParser::readDataCsv(CByteArray &in, unsigned long tag)
{
if(!m_parserCsv)
throw CMWEXCEPTION(EIDMW_ERR_CHECK);
in=m_parserCsv->getData(tag);
return in.Size();
}
unsigned long APL_SuperParser::readDataCsv(CByteArray &in, unsigned long count, unsigned long first, unsigned long step, unsigned long idx)
{
if(!m_parserCsv)
throw CMWEXCEPTION(EIDMW_ERR_CHECK);
char *stop;
CByteArray baCount=m_parserCsv->getData(count);
unsigned long ulCount=strtoul((char*)baCount.GetBytes(),&stop,10);
if(idx<ulCount)
in=m_parserCsv->getData(first+(idx)*step);
return in.Size();
}
}
|