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 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336
|
/**
* card-dnie.c: Support for Spanish DNI electronico (DNIe card).
*
* Copyright (C) 2010 Juan Antonio Martinez <jonsito@terra.es>
*
* This work is derived from many sources at OpenSC Project site,
* (see references) and the information made public for Spanish
* Direccion General de la Policia y de la Guardia Civil
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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 library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#define __CARD_DNIE_C__
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#if defined(ENABLE_OPENSSL) && defined(ENABLE_SM) /* empty file without openssl or sm */
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
#include <sys/stat.h>
#include "opensc.h"
#include "cardctl.h"
#include "internal.h"
#include "compression.h"
#include "cwa14890.h"
#include "cwa-dnie.h"
#ifdef _WIN32
#ifndef UNICODE
#define UNICODE
#endif
#include <windows.h>
#endif
#ifdef __APPLE__
#include <Carbon/Carbon.h>
#endif
#define MAX_RESP_BUFFER_SIZE 2048
/* default titles */
#define USER_CONSENT_TITLE "Confirm"
extern int dnie_read_file(
sc_card_t * card,
const sc_path_t * path,
sc_file_t ** file,
u8 ** buffer, size_t * length);
#define DNIE_CHIP_NAME "DNIe: Spanish eID card"
#define DNIE_CHIP_SHORTNAME "dnie"
#define DNIE_MF_NAME "Master.File"
/* default user consent program (if required) */
#define USER_CONSENT_CMD "/usr/bin/pinentry"
/**
* SW internal apdu response table.
*
* Override APDU response error codes from iso7816.c to allow
* handling of SM specific error
*/
static const struct sc_card_error dnie_errors[] = {
{0x6688, SC_ERROR_SM, "Cryptographic checksum invalid"},
{0x6987, SC_ERROR_SM, "Expected SM Data Object missing"},
{0x6988, SC_ERROR_SM, "SM Data Object incorrect"},
{0, 0, NULL}
};
/*
* DNIe ATR info from DGP web page
*
Tag Value Meaning
TS 0x3B Direct Convention
T0 0x7F Y1=0x07=0111; TA1,TB1 y TC1 present.
K=0x0F=1111; 15 historical bytes
TA1 0x38 FI (Factor de conversión de la tasa de reloj) = 744
DI (Factor de ajuste de la tasa de bits) = 12
Máximo 8 Mhz.
TB1 0x00 Vpp (voltaje de programación) no requerido.
TC1 0x00 No se requiere tiempo de espera adicional.
H1 0x00 No usado
H2 0x6A Datos de preexpedición. Diez bytes con identificación del expedidor.
H3 0x44 'D'
H4 0x4E 'N'
H5 0x49 'I'
H6 0x65 'e'
H7 Fabricante de la tecnologÃa Match-on-Card incorporada.
0x10 SAGEM
0x20 SIEMENS
H8 0x02 Fabricante del CI: STMicroelectronics.
H9 0x4C
H10 0x34 Tipo de CI: 19WL34
H11 0x01 MSB de la version del SO: 1
H12 0x1v LSB de la version del SO: 1v
H13 Fase del ciclo de vida .
0x00 prepersonalización.
0x01 personalización.
0x03 usuario.
0x0F final.
H14 0xss
H15 0xss Bytes de estado
H13-H15: 0x03 0x90 0x00 user phase: tarjeta operativa
H13-H15: 0x0F 0x65 0x81 final phase: tarjeta no operativa
*/
/**
* ATR Table list.
* OpenDNIe defines two ATR's for user and finalized card state
*/
static struct sc_atr_table dnie_atrs[] = {
/* TODO: get ATR for uninitialized DNIe */
{ /** card activated; normal operation state */
"3B:7F:00:00:00:00:6A:44:4E:49:65:00:00:00:00:00:00:03:90:00",
"FF:FF:00:FF:FF:FF:FF:FF:FF:FF:FF:00:00:00:00:00:00:FF:FF:FF",
DNIE_CHIP_SHORTNAME,
SC_CARD_TYPE_DNIE_USER,
0,
NULL},
{ /** card finalized, unusable */
"3B:7F:00:00:00:00:6A:44:4E:49:65:00:00:00:00:00:00:0F:65:81",
"FF:FF:00:FF:FF:FF:FF:FF:FF:FF:FF:00:00:00:00:00:00:FF:FF:FF",
DNIE_CHIP_SHORTNAME,
SC_CARD_TYPE_DNIE_TERMINATED,
0,
NULL},
{NULL, NULL, NULL, 0, 0, NULL}
};
/**
* Messages used on user consent procedures
*/
const char *user_consent_title="Signature Requested";
#ifdef linux
const char *user_consent_message="Está a punto de realizar una firma electrónica con su clave de FIRMA del DNI electrónico. ¿Desea permitir esta operación?";
#else
const char *user_consent_message="Esta a punto de realizar una firma digital\ncon su clave de FIRMA del DNI electronico.\nDesea permitir esta operacion?";
#endif
#ifdef ENABLE_DNIE_UI
/**
* Messages used on pinentry protocol
*/
char *user_consent_msgs[] = { "SETTITLE", "SETDESC", "CONFIRM", "BYE" };
#if !defined(__APPLE__) && !defined(_WIN32)
/**
* Do fgets() without interruptions.
*
* Retry the operation if it is interrupted, such as with receiving an alarm.
*
* @param s Buffer receiving the data
* @param size Size of the buffer
* @param stream Stream to read
* @return s on success, NULL on error
*/
static char *nointr_fgets(char *s, int size, FILE *stream)
{
while (fgets(s, size, stream) == NULL) {
if (feof(stream) || errno != EINTR)
return NULL;
}
return s;
}
#endif
/**
* Ask for user consent.
*
* Check for user consent configuration,
* Invoke proper gui app and check result
*
* @param card pointer to sc_card structure
* @param title Text to appear in the window header
* @param text Message to show to the user
* @return SC_SUCCESS on user consent OK , else error code
*/
int dnie_ask_user_consent(struct sc_card * card, const char *title, const char *message)
{
#ifdef __APPLE__
CFOptionFlags result; /* result code from the message box */
/* convert the strings from char* to CFStringRef */
CFStringRef header_ref; /* to store title */
CFStringRef message_ref; /* to store message */
#endif
#if !defined(__APPLE__) && !defined(_WIN32)
pid_t pid;
FILE *fin=NULL;
FILE *fout=NULL; /* to handle pipes as streams */
struct stat st_file; /* to verify that executable exists */
int srv_send[2]; /* to send data from server to client */
int srv_recv[2]; /* to receive data from client to server */
char outbuf[1024]; /* to compose and send messages */
char buf[1024]; /* to store client responses */
int n = 0; /* to iterate on to-be-sent messages */
#endif
int res = SC_ERROR_INTERNAL; /* by default error :-( */
char *msg = NULL; /* to mark errors */
if ((card == NULL) || (card->ctx == NULL))
return SC_ERROR_INVALID_ARGUMENTS;
LOG_FUNC_CALLED(card->ctx);
if ((title==NULL) || (message==NULL))
LOG_FUNC_RETURN(card->ctx, SC_ERROR_INVALID_ARGUMENTS);
if (GET_DNIE_UI_CTX(card).user_consent_enabled == 0
|| card->ctx->flags & SC_CTX_FLAG_DISABLE_POPUPS) {
sc_log(card->ctx,
"User Consent or popups are disabled in configuration file");
LOG_FUNC_RETURN(card->ctx, SC_SUCCESS);
}
#ifdef _WIN32
/* in Windows, do not use pinentry, but MessageBox system call */
res = MessageBox (
NULL,
TEXT(message),
TEXT(title),
MB_ICONWARNING | MB_OKCANCEL | MB_DEFBUTTON2 | MB_APPLMODAL
);
if ( res == IDOK )
LOG_FUNC_RETURN(card->ctx, SC_SUCCESS);
LOG_FUNC_RETURN(card->ctx, SC_ERROR_NOT_ALLOWED);
#elif __APPLE__
/* Also in Mac OSX use native functions */
/* convert the strings from char* to CFStringRef */
header_ref = CFStringCreateWithCString( NULL, title, strlen(title) );
message_ref = CFStringCreateWithCString( NULL,message, strlen(message) );
/* Display user notification alert */
CFUserNotificationDisplayAlert(
0, /* no timeout */
kCFUserNotificationNoteAlertLevel, /* Alert level */
NULL, /* IconURL, use default, you can change */
/* it depending message_type flags */
NULL, /* SoundURL (not used) */
NULL, /* localization of strings */
header_ref, /* header. Cannot be null */
message_ref, /* message text */
CFSTR("Cancel"), /* default ( "OK" if null) button text */
CFSTR("OK"), /* second button title */
NULL, /* third button title, null--> no other button */
&result /* response flags */
);
/* Clean up the strings */
CFRelease( header_ref );
CFRelease( message_ref );
/* Return 0 only if "OK" is selected */
if( result == kCFUserNotificationAlternateResponse )
LOG_FUNC_RETURN(card->ctx, SC_SUCCESS);
LOG_FUNC_RETURN(card->ctx, SC_ERROR_NOT_ALLOWED);
#else
/* just a simple bidirectional pipe+fork+exec implementation */
/* In a pipe, xx[0] is for reading, xx[1] is for writing */
if (pipe(srv_send) < 0) {
msg = "pipe(srv_send)";
goto do_error;
}
if (pipe(srv_recv) < 0) {
msg = "pipe(srv_recv)";
goto do_error;
}
pid = fork();
switch (pid) {
case -1: /* error */
msg = "fork()";
goto do_error;
case 0: /* child */
/* make our pipes, our new stdin & stderr, closing older ones */
dup2(srv_send[0], STDIN_FILENO); /* map srv send for input */
dup2(srv_recv[1], STDOUT_FILENO); /* map srv_recv for output */
/* once dup2'd pipes are no longer needed on client; so close */
close(srv_send[0]);
close(srv_send[1]);
close(srv_recv[0]);
close(srv_recv[1]);
/* check that user_consent_app exists. TODO: check if executable */
res = stat(GET_DNIE_UI_CTX(card).user_consent_app, &st_file);
if (res != 0) {
sc_log(card->ctx, "Invalid pinentry application: %s\n",
GET_DNIE_UI_CTX(card).user_consent_app);
} else {
/* call exec() with proper user_consent_app from configuration */
/* if ok should never return */
execlp(GET_DNIE_UI_CTX(card).user_consent_app, GET_DNIE_UI_CTX(card).user_consent_app, (char *)NULL);
sc_log(card->ctx, "execlp() error");
}
abort();
default: /* parent */
/* Close the pipe ends that the child uses to read from / write to
* so when we close the others, an EOF will be transmitted properly.
*/
close(srv_send[0]);
close(srv_recv[1]);
/* use iostreams to take care on newlines and text based data */
fin = fdopen(srv_recv[0], "r");
if (fin == NULL) {
msg = "fdopen(in)";
goto do_error;
}
fout = fdopen(srv_send[1], "w");
if (fout == NULL) {
msg = "fdopen(out)";
goto do_error;
}
/* read and ignore first line */
if (nointr_fgets(buf, sizeof(buf), fin) == NULL) {
res = SC_ERROR_INTERNAL;
msg = "nointr_fgets() Unexpected IOError/EOF";
goto do_error;
}
for (n = 0; n<4; n++) {
char *pt;
if (n==0) snprintf(outbuf, sizeof outbuf,"%s %s\n",user_consent_msgs[0],title);
else if (n==1) snprintf(outbuf, sizeof outbuf,"%s %s\n",user_consent_msgs[1],message);
else snprintf(outbuf, sizeof outbuf,"%s\n",user_consent_msgs[n]);
/* send message */
fputs(outbuf, fout);
fflush(fout);
/* get response */
pt=nointr_fgets(buf, sizeof(buf), fin);
if (pt==NULL) {
res = SC_ERROR_INTERNAL;
msg = "nointr_fgets() Unexpected IOError/EOF";
goto do_error;
}
if (strstr(buf, "OK") == NULL) {
res = SC_ERROR_NOT_ALLOWED;
msg = "fail/cancel";
goto do_error;
}
}
} /* switch */
/* arriving here means signature has been accepted by user */
res = SC_SUCCESS;
msg = NULL;
do_error:
/* close out channel to force client receive EOF and also die */
if (fout != NULL) fclose(fout);
if (fin != NULL) fclose(fin);
#endif
if (msg != NULL)
sc_log(card->ctx, "%s", msg);
LOG_FUNC_RETURN(card->ctx, res);
}
#endif /* ENABLE_DNIE_UI */
/**
* DNIe specific card driver operations
*/
static struct sc_card_operations dnie_ops;
/**
* Local copy of iso7816 card driver operations
*/
static struct sc_card_operations *iso_ops = NULL;
/**
* Module definition for OpenDNIe card driver
*/
static sc_card_driver_t dnie_driver = {
DNIE_CHIP_NAME, /**< Full name for DNIe card driver */
DNIE_CHIP_SHORTNAME, /**< Short name for DNIe card driver */
&dnie_ops, /**< pointer to dnie_ops (DNIe card driver operations) */
dnie_atrs, /**< List of card ATR's handled by this driver */
0, /**< (natrs) number of atr's to check for this driver */
NULL /**< (dll) Card driver module (on DNIe is null) */
};
/************************** card-dnie.c internal functions ****************/
/**
* Parse configuration file for dnie parameters.
*
* DNIe card driver has two main parameters:
* - The name of the user consent Application to be used in Linux. This application should be any of pinentry-xxx family
* - A flag to indicate if user consent is to be used in this driver. If false, the user won't be prompted for confirmation on signature operations
*
* @See ../../etc/opensc.conf for details
* @param card Pointer to card structure
* @param ui_context Pointer to ui_context structure to store data into
* @return SC_SUCCESS (should return no errors)
*
* TODO: Code should be revised in order to store user consent info
* in a card-independent way at configuration file
*/
#ifdef ENABLE_DNIE_UI
static int dnie_get_environment(
sc_card_t * card,
ui_context_t * ui_context)
{
int i;
scconf_block **blocks, *blk;
sc_context_t *ctx;
/* set default values */
ui_context->user_consent_app = USER_CONSENT_CMD;
ui_context->user_consent_enabled = 1;
/* look for sc block in opensc.conf */
ctx = card->ctx;
for (i = 0; ctx->conf_blocks[i]; i++) {
blocks = scconf_find_blocks(ctx->conf, ctx->conf_blocks[i],
"card_driver", "dnie");
if (!blocks)
continue;
blk = blocks[0];
free(blocks);
if (blk == NULL)
continue;
/* fill private data with configuration parameters */
ui_context->user_consent_app = /* def user consent app is "pinentry" */
(char *)scconf_get_str(blk, "user_consent_app",
USER_CONSENT_CMD);
ui_context->user_consent_enabled = /* user consent is enabled by default */
scconf_get_bool(blk, "user_consent_enabled", 1);
}
return SC_SUCCESS;
}
#endif
/************************** cardctl defined operations *******************/
/**
* Generate a public/private key pair.
*
* Manual says that generate_keys() is a reserved operation; that is:
* only can be done at DGP offices. But several authors talk about
* this operation is available also outside. So need to test :-)
* Notice that write operations are not supported, so we can't use
* created keys to generate and store new certificates into the card.
* TODO: copy code from card-jcop.c::jcop_generate_keys()
* @param card pointer to card info data
* @param data where to store function results
* @return SC_SUCCESS if ok, else error code
*/
static int dnie_generate_key(sc_card_t * card, void *data)
{
int result = SC_ERROR_NOT_SUPPORTED;
if ((card == NULL) || (data == NULL))
return SC_ERROR_INVALID_ARGUMENTS;
LOG_FUNC_CALLED(card->ctx);
/* TODO: write dnie_generate_key() */
LOG_FUNC_RETURN(card->ctx, result);
}
/**
* Analyze a buffer looking for provided data pattern.
*
* Commodity function for dnie_get_info() that searches a byte array
* in provided buffer
*
* @param card pointer to card info data
* @param pat data pattern to find in buffer
* @param buf where to look for pattern
* @param len buffer length
* @return retrieved value or NULL if pattern not found
* @see dnie_get_info()
*/
static char *findPattern(u8 *pat, u8 *buf, size_t len)
{
char *res = NULL;
u8 *from = buf;
int size = 0;
/* Locate pattern. Assume pattern length=6 */
for ( from = buf; from < buf+len-6; from++) {
if (memcmp(from,pat,6) == 0 ) goto data_found;
}
/* arriving here means pattern not found */
return NULL;
data_found:
/* assume length is less than 128 bytes, so is coded in 1 byte */
size = 0x000000ff & (int) *(from+6);
if ( size == 0 ) return NULL; /* empty data */
res = calloc( size+1, sizeof(char) );
if ( res == NULL) return NULL; /* calloc() error */
memcpy(res,from+7,size);
return res;
}
/**
* Retrieve name, surname, and DNIe number.
*
* This is done by mean of reading and parsing CDF file
* at address 3F0050156004
* No need to enter pin nor use Secure Channel
*
* Notice that this is done by mean of a dirty trick: instead
* of parsing ASN1 data on EF(CDF),
* we look for desired OID patterns in binary array
*
* @param card pointer to card info data
* @param data where to store function results (number,name,surname,idesp,version)
* @return SC_SUCCESS if ok, else error code
*/
static int dnie_get_info(sc_card_t * card, char *data[])
{
sc_file_t *file = NULL;
sc_path_t path;
u8 *buffer = NULL;
size_t bufferlen = 0;
char *msg = NULL;
u8 SerialNumber [] = { 0x06, 0x03, 0x55, 0x04, 0x05, 0x13 };
u8 Name [] = { 0x06, 0x03, 0x55, 0x04, 0x04, 0x0C };
u8 GivenName [] = { 0x06, 0x03, 0x55, 0x04, 0x2A, 0x0C };
int res = SC_ERROR_NOT_SUPPORTED;
if ((card == NULL) || (data == NULL))
return SC_ERROR_INVALID_ARGUMENTS;
LOG_FUNC_CALLED(card->ctx);
/* phase 1: get DNIe number, Name and GivenName */
/* read EF(CDF) at 3F0050156004 */
sc_format_path("3F0050156004", &path);
res = dnie_read_file(card, &path, &file, &buffer, &bufferlen);
if (res != SC_SUCCESS) {
msg = "Cannot read EF(CDF)";
goto get_info_end;
}
/* locate OID 2.5.4.5 (SerialNumber) - DNIe number*/
data[0]= findPattern(SerialNumber,buffer,bufferlen);
/* locate OID 2.5.4.4 (Name) - Apellidos */
data[1]= findPattern(Name,buffer,bufferlen);
/* locate OID 2.5.4.42 (GivenName) - Nombre */
data[2]= findPattern(GivenName,buffer,bufferlen);
if ( ! data[0] || !data[1] || !data[2] ) {
res = SC_ERROR_INVALID_DATA;
msg = "Cannot retrieve info from EF(CDF)";
goto get_info_end;
}
/* phase 2: get IDESP */
sc_format_path("3F000006", &path);
sc_file_free(file);
file = NULL;
if (buffer) {
free(buffer);
buffer=NULL;
bufferlen=0;
}
res = dnie_read_file(card, &path, &file, &buffer, &bufferlen);
if (res != SC_SUCCESS) {
data[3]=NULL;
goto get_info_ph3;
}
data[3]=calloc(bufferlen+1,sizeof(char));
if ( !data[3] ) {
msg = "Cannot allocate memory for IDESP data";
res = SC_ERROR_OUT_OF_MEMORY;
goto get_info_end;
}
memcpy(data[3],buffer,bufferlen);
get_info_ph3:
/* phase 3: get DNIe software version */
sc_format_path("3F002F03", &path);
sc_file_free(file);
file = NULL;
if (buffer) {
free(buffer);
buffer=NULL;
bufferlen=0;
}
/*
* Some old DNIe cards seems not to include SW version file,
* so let this code fail without notice
*/
res = dnie_read_file(card, &path, &file, &buffer, &bufferlen);
if (res != SC_SUCCESS) {
msg = "Cannot read DNIe Version EF";
data[4]=NULL;
res = SC_SUCCESS; /* let function return successfully */
goto get_info_end;
}
data[4]=calloc(bufferlen+1,sizeof(char));
if ( !data[4] ) {
msg = "Cannot allocate memory for DNIe Version data";
res = SC_ERROR_OUT_OF_MEMORY;
goto get_info_end;
}
memcpy(data[4],buffer,bufferlen);
/* arriving here means ok */
res = SC_SUCCESS;
msg = NULL;
get_info_end:
sc_file_free(file);
file = NULL;
if (buffer) {
free(buffer);
buffer=NULL;
bufferlen=0;
}
if (msg)
sc_log(card->ctx, "%s", msg);
LOG_FUNC_RETURN(card->ctx, res);
}
/**
* Retrieve serial number (7 bytes) from card.
*
* This is done by mean of an special APDU command described
* in the DNIe Reference Manual
*
* @param card pointer to card description
* @param serial where to store data retrieved
* @return SC_SUCCESS if ok; else error code
*/
static int dnie_get_serialnr(sc_card_t * card, sc_serial_number_t * serial)
{
int result;
sc_apdu_t apdu;
u8 rbuf[MAX_RESP_BUFFER_SIZE];
if ((card == NULL) || (card->ctx == NULL) || (serial == NULL))
return SC_ERROR_INVALID_ARGUMENTS;
LOG_FUNC_CALLED(card->ctx);
if (card->type != SC_CARD_TYPE_DNIE_USER)
return SC_ERROR_NOT_SUPPORTED;
/* if serial number is cached, use it */
if (card->serialnr.len) {
memcpy(serial, &card->serialnr, sizeof(*serial));
sc_log_hex(card->ctx, "Serial Number (cached)", serial->value, serial->len);
LOG_FUNC_RETURN(card->ctx, SC_SUCCESS);
}
/* not cached, retrieve it by mean of an APDU */
/* official driver read 0x11 bytes, but only uses 7. Manual says just 7 (for le) */
dnie_format_apdu(card, &apdu, SC_APDU_CASE_2_SHORT, 0xb8, 0x00, 0x00, 0x07, 0,
rbuf, sizeof(rbuf), NULL, 0);
apdu.cla = 0x90; /* proprietary cmd */
/* send apdu */
result = sc_transmit_apdu(card, &apdu);
if (result != SC_SUCCESS) {
LOG_TEST_RET(card->ctx, result, "APDU transmit failed");
}
if (apdu.sw1 != 0x90 || apdu.sw2 != 0x00)
return SC_ERROR_INTERNAL;
/* cache serial number */
memcpy(card->serialnr.value, apdu.resp, 7 * sizeof(u8));
card->serialnr.len = 7 * sizeof(u8);
/* TODO: fill Issuer Identification Number data with proper (ATR?) info */
/*
card->serialnr.iin.mii=;
card->serialnr.iin.country=;
card->serialnr.iin.issuer_id=;
*/
/* copy and return serial number */
memcpy(serial, &card->serialnr, sizeof(*serial));
sc_log_hex(card->ctx, "Serial Number (apdu)", serial->value, serial->len);
LOG_FUNC_RETURN(card->ctx, SC_SUCCESS);
}
/**
* Remove the binary data in the cache.
*
* It frees memory if allocated and resets pointer and length.
* It only touches the private binary cache variables, not the sc_card information.
*
* @param data pointer to dnie private data
*/
static void dnie_clear_cache(dnie_private_data_t * data)
{
if (data == NULL) return;
if (data->cache != NULL)
free(data->cache);
data->cache = NULL;
data->cachelen = 0;
}
/**
* Set sc_card flags according to DNIe requirements.
*
* Used in card initialization.
*
* @param card pointer to card data
*/
static void init_flags(struct sc_card *card)
{
unsigned long algoflags;
/* set up flags according documentation */
card->name = DNIE_CHIP_SHORTNAME;
card->cla = 0x00; /* default APDU class (interindustry) */
card->caps |= SC_CARD_CAP_RNG; /* we have a random number generator */
card->max_send_size = (255 - 12); /* manual says 255, but we need 12 extra bytes when encoding */
card->max_recv_size = 255;
/* RSA Support with PKCS1.5 padding */
algoflags = SC_ALGORITHM_RSA_HASH_NONE | SC_ALGORITHM_RSA_PAD_PKCS1;
_sc_card_add_rsa_alg(card, 1024, algoflags, 0);
_sc_card_add_rsa_alg(card, 1920, algoflags, 0);
_sc_card_add_rsa_alg(card, 2048, algoflags, 0);
}
/**************************** sc_card_operations **********************/
/* Generic operations */
/**
* Check if provided card can be handled by OpenDNIe.
*
* Called in sc_connect_card(). Must return 1, if the current
* card can be handled with this driver, or 0 otherwise. ATR
* field of the sc_card struct is filled in before calling
* this function.
* do not declare static, as used by pkcs15-dnie module
*
* @param card Pointer to card structure
* @return on card matching 0 if not match; negative return means error
*/
int dnie_match_card(struct sc_card *card)
{
int result = 0;
int matched = -1;
LOG_FUNC_CALLED(card->ctx);
matched = _sc_match_atr(card, dnie_atrs, &card->type);
result = (matched >= 0) ? 1 : 0;
LOG_FUNC_RETURN(card->ctx, result);
}
static int dnie_sm_free_wrapped_apdu(struct sc_card *card,
struct sc_apdu *plain, struct sc_apdu **sm_apdu)
{
struct sc_context *ctx = card->ctx;
cwa_provider_t *provider = NULL;
int rv = SC_SUCCESS;
LOG_FUNC_CALLED(ctx);
provider = GET_DNIE_PRIV_DATA(card)->cwa_provider;
if (!sm_apdu)
LOG_FUNC_RETURN(ctx, SC_ERROR_INVALID_ARGUMENTS);
if (!(*sm_apdu))
LOG_FUNC_RETURN(ctx, SC_SUCCESS);
if ((*sm_apdu) != plain) {
rv = cwa_decode_response(card, provider, *sm_apdu);
if (plain && rv == SC_SUCCESS) {
if (plain->resp) {
/* copy the response into the original resp buffer */
if ((*sm_apdu)->resplen <= plain->resplen) {
memcpy(plain->resp, (*sm_apdu)->resp, (*sm_apdu)->resplen);
plain->resplen = (*sm_apdu)->resplen;
} else {
sc_log(card->ctx, "Invalid initial length,"
" needed %"SC_FORMAT_LEN_SIZE_T"u bytes"
" but has %"SC_FORMAT_LEN_SIZE_T"u",
(*sm_apdu)->resplen, plain->resplen);
rv = SC_ERROR_BUFFER_TOO_SMALL;
}
}
plain->sw1 = (*sm_apdu)->sw1;
plain->sw2 = (*sm_apdu)->sw2;
}
free((unsigned char *) (*sm_apdu)->data);
free((*sm_apdu)->resp);
free(*sm_apdu);
}
*sm_apdu = NULL;
LOG_FUNC_RETURN(ctx, rv);
}
static int dnie_sm_get_wrapped_apdu(struct sc_card *card,
struct sc_apdu *plain, struct sc_apdu **sm_apdu)
{
struct sc_context *ctx = card->ctx;
struct sc_apdu *apdu = NULL;
cwa_provider_t *provider = NULL;
int rv = SC_SUCCESS;
LOG_FUNC_CALLED(ctx);
if (!plain || !sm_apdu)
LOG_FUNC_RETURN(ctx, SC_ERROR_INVALID_ARGUMENTS);
provider = GET_DNIE_PRIV_DATA(card)->cwa_provider;
if (((plain->cla & 0x0C) == 0) && (plain->ins != 0xC0)) {
*sm_apdu = NULL;
//construct new SM apdu from original apdu
apdu = calloc(1, sizeof(struct sc_apdu));
if (!apdu)
return SC_ERROR_OUT_OF_MEMORY;
memcpy(apdu, plain, sizeof(sc_apdu_t));
rv = cwa_encode_apdu(card, provider, plain, apdu);
if (rv != SC_SUCCESS) {
dnie_sm_free_wrapped_apdu(card, NULL, &apdu);
goto err;
}
*sm_apdu = apdu;
} else
*sm_apdu = plain;
apdu = NULL;
err:
free(apdu);
LOG_FUNC_RETURN(ctx, rv);
}
/**
* OpenDNIe card structures initialization.
*
* Called when ATR of the inserted card matches an entry in ATR
* table. May return SC_ERROR_INVALID_CARD to indicate that
* the card cannot be handled with this driver.
*
* @param card Pointer to card structure
* @return SC_SUCCES if ok; else error code
*/
static int dnie_init(struct sc_card *card)
{
int res = SC_SUCCESS;
sc_context_t *ctx = card->ctx;
cwa_provider_t *provider = NULL;
LOG_FUNC_CALLED(ctx);
/* if recognized as terminated DNIe card, return error */
if (card->type == SC_CARD_TYPE_DNIE_TERMINATED)
LOG_TEST_RET(card->ctx, SC_ERROR_INVALID_CARD, "DNIe card is terminated.");
/* create and initialize cwa-dnie provider*/
provider = dnie_get_cwa_provider(card);
if (!provider)
LOG_TEST_RET(card->ctx, SC_ERROR_INTERNAL, "Error initializing cwa-dnie provider");
/** Secure messaging initialization section **/
memset(&(card->sm_ctx), 0, sizeof(sm_context_t));
card->sm_ctx.ops.get_sm_apdu = dnie_sm_get_wrapped_apdu;
card->sm_ctx.ops.free_sm_apdu = dnie_sm_free_wrapped_apdu;
card->sm_ctx.sm_mode = SM_MODE_NONE;
res=cwa_create_secure_channel(card,provider,CWA_SM_OFF);
LOG_TEST_RET(card->ctx, res, "Failure creating CWA secure channel.");
/* initialize private data */
card->drv_data = calloc(1, sizeof(dnie_private_data_t));
if (card->drv_data == NULL)
LOG_TEST_RET(card->ctx, SC_ERROR_OUT_OF_MEMORY, "Could not allocate DNIe private data.");
#ifdef ENABLE_DNIE_UI
/* read environment from configuration file */
res = dnie_get_environment(card, &(GET_DNIE_UI_CTX(card)));
if (res != SC_SUCCESS) {
free(card->drv_data);
LOG_TEST_RET(card->ctx, res, "Failure reading DNIe environment.");
}
#endif
init_flags(card);
GET_DNIE_PRIV_DATA(card)->cwa_provider = provider;
LOG_FUNC_RETURN(card->ctx, res);
}
/**
* De-initialization routine.
*
* Called when the card object is being freed. finish() has to
* deallocate all possible private data.
*
* @param card Pointer to card driver data structure
* @return SC_SUCCESS if ok; else error code
*/
static int dnie_finish(struct sc_card *card)
{
int result = SC_SUCCESS;
LOG_FUNC_CALLED(card->ctx);
dnie_clear_cache(GET_DNIE_PRIV_DATA(card));
/* disable sm channel if established */
result = cwa_create_secure_channel(card, GET_DNIE_PRIV_DATA(card)->cwa_provider, CWA_SM_OFF);
free(GET_DNIE_PRIV_DATA(card)->cwa_provider);
free(card->drv_data);
LOG_FUNC_RETURN(card->ctx, result);
}
/* ISO 7816-4 functions */
/**
* Uncompress data if in compressed format.
*
* @param card pointer to sc_card_t structure
* @param from buffer to get data from
* @param len pointer to buffer length
* @return uncompressed or original buffer; len points to new buffer length
* on error return null
*/
static u8 *dnie_uncompress(sc_card_t * card, u8 * from, size_t *len)
{
u8 *upt = from;
#ifdef ENABLE_ZLIB
int res = SC_SUCCESS;
size_t uncompressed = 0L;
size_t compressed = 0L;
if (!card || !card->ctx || !from || !len)
return NULL;
LOG_FUNC_CALLED(card->ctx);
/* if data size not enough for compression header assume uncompressed */
if (*len < 8)
goto compress_exit;
/* evaluate compressed an uncompressed sizes (little endian format) */
uncompressed = lebytes2ulong(from);
compressed = lebytes2ulong(from + 4);
/* if compressed size doesn't match data length assume not compressed */
if (compressed != (*len) - 8)
goto compress_exit;
/* if compressed size greater than uncompressed, assume uncompressed data */
if (uncompressed < compressed)
goto compress_exit;
/* Do not try to allocate insane size if we receive bogus data */
if (uncompressed > MAX_FILE_SIZE)
goto compress_exit;
sc_log(card->ctx, "Data seems to be compressed. calling uncompress");
/* ok: data seems to be compressed */
upt = calloc(uncompressed, sizeof(u8));
if (!upt) {
sc_log(card->ctx, "alloc() for uncompressed buffer failed");
return NULL;
}
*len = uncompressed;
res = sc_decompress(upt, /* try to uncompress by calling sc_xx routine */
len,
from + 8, (size_t) compressed, COMPRESSION_ZLIB);
if (res != SC_SUCCESS) {
sc_log(card->ctx, "Uncompress() failed or data not compressed");
goto compress_exit; /* assume not need uncompression */
}
/* Done; update buffer len and return pt to uncompressed data */
sc_log_hex(card->ctx, "Compressed data", from + 8, compressed);
sc_log_hex(card->ctx, "Uncompressed data", upt, uncompressed);
compress_exit:
#endif
sc_log(card->ctx, "uncompress: returning with%s de-compression ",
(upt == from) ? "out" : "");
return upt;
}
/**
* Fill file cache for read_binary() operation.
*
* Fill a temporary buffer by mean of consecutive calls to read_binary()
* until card sends eof
*
* DNIe card stores user certificates in compressed format. so we need
* some way to detect and uncompress on-the-fly compressed files, to
* let read_binary() work transparently.
* This is the main goal of this routine: create an in-memory buffer
* for read_binary operation, filling this buffer on first read_binary()
* call, and uncompress data if compression detected. Further
* read_binary() calls then make use of cached data, instead
* of accessing the card
*
* @param card Pointer to card structure
* @return SC_SUCCESS if OK; else error code
*/
static int dnie_fill_cache(sc_card_t * card)
{
u8 tmp[MAX_RESP_BUFFER_SIZE];
sc_apdu_t apdu;
size_t count = 0;
size_t len = 0;
u8 *buffer = NULL;
u8 *pt = NULL, *p;
sc_context_t *ctx = NULL;
if (!card || !card->ctx)
return SC_ERROR_INVALID_ARGUMENTS;
ctx = card->ctx;
LOG_FUNC_CALLED(ctx);
/* mark cache empty */
dnie_clear_cache(GET_DNIE_PRIV_DATA(card));
/* initialize apdu */
sc_format_apdu(card, &apdu, SC_APDU_CASE_2_SHORT, 0xB0, 0x00, 0x00);
/* try to read_binary while data available but never long than 32767 */
count = card->max_recv_size;
for (len = 0; len < 0x7fff;) {
int r = SC_SUCCESS;
/* fill apdu */
apdu.p1 = 0xff & (len >> 8);
apdu.p2 = 0xff & len;
apdu.le = count;
apdu.resplen = MAX_RESP_BUFFER_SIZE;
apdu.resp = tmp;
/* transmit apdu */
r = sc_transmit_apdu(card, &apdu);
if (r != SC_SUCCESS) {
free(buffer);
if (apdu.resp != tmp)
free(apdu.resp);
sc_log(ctx, "read_binary() APDU transmit failed");
LOG_FUNC_RETURN(ctx, r);
}
if (apdu.resplen == 0) {
/* on no data received, check if requested len is longer than
available data in card. If so, ask just for remaining data */
r = sc_check_sw(card, apdu.sw1, apdu.sw2);
if (r == SC_ERROR_WRONG_LENGTH) {
count = 0xff & apdu.sw2;
if (count != 0) {
if (apdu.resp != tmp)
free(apdu.resp);
continue; /* read again with correct size */
}
goto read_done; /* no more data to read */
}
if (r == SC_ERROR_INCORRECT_PARAMETERS)
goto read_done;
free(buffer);
if (apdu.resp != tmp)
free(apdu.resp);
LOG_FUNC_RETURN(ctx, r); /* arriving here means response error */
}
/* copy received data into buffer. realloc() if not enough space */
count = apdu.resplen;
p = realloc(buffer, len + count);
if (!p) {
free(buffer);
free((void *)apdu.data);
if (apdu.resp != tmp)
free(apdu.resp);
LOG_FUNC_RETURN(ctx, SC_ERROR_OUT_OF_MEMORY);
}
buffer = p;
memcpy(buffer + len, apdu.resp, count);
if (apdu.resp != tmp) {
free(apdu.resp);
apdu.resp = tmp;
}
len += count;
if (count != card->max_recv_size)
goto read_done;
}
read_done:
/* no more data to read: check if data is compressed */
pt = dnie_uncompress(card, buffer, &len);
free((void *)apdu.data);
if (apdu.resp != tmp)
free(apdu.resp);
if (pt == NULL) {
sc_log(ctx, "Uncompress process failed");
free(buffer);
LOG_FUNC_RETURN(ctx, SC_ERROR_INTERNAL);
}
if (pt != buffer)
free(buffer);
/* ok: as final step, set correct cache data into dnie_priv structures */
GET_DNIE_PRIV_DATA(card)->cache = pt;
GET_DNIE_PRIV_DATA(card)->cachelen = len;
sc_log(ctx,
"fill_cache() done. length '%"SC_FORMAT_LEN_SIZE_T"u' bytes",
len);
LOG_FUNC_RETURN(ctx,len);
}
/**
* OpenDNIe implementation of read_binary().
*
* Reads a binary stream from card by mean of READ BINARY iso command
* Creates and handle a cache to allow data uncompression
*
* @param card pointer to sc_card_t structure
* @param idx offset from card file to ask data for
* @param buf where to store read data. must be non null
* @param count number of bytes to read
* @param flags. not used
* @return number of bytes read, 0 on EOF, error code on error
*/
static int dnie_read_binary(struct sc_card *card,
unsigned int idx,
u8 * buf, size_t count, unsigned long flags)
{
int res = 0;
sc_context_t *ctx = NULL;
/* preliminary checks */
if (!card || !card->ctx || !buf || (count <= 0))
return SC_ERROR_INVALID_ARGUMENTS;
ctx = card->ctx;
LOG_FUNC_CALLED(ctx);
if (idx == 0 || GET_DNIE_PRIV_DATA(card)->cache == NULL) {
/* on first block or no cache, try to fill */
res = dnie_fill_cache(card);
if (res < 0) {
sc_log(ctx, "Cannot fill cache. using iso_read_binary()");
return iso_ops->read_binary(card, idx, buf, count, flags);
}
}
if (idx >= GET_DNIE_PRIV_DATA(card)->cachelen)
return 0; /* at eof */
res = MIN(count, GET_DNIE_PRIV_DATA(card)->cachelen - idx); /* eval how many bytes to read */
memcpy(buf, GET_DNIE_PRIV_DATA(card)->cache + idx, res); /* copy data from buffer */
sc_log(ctx, "dnie_read_binary() '%d' bytes", res);
LOG_FUNC_RETURN(ctx, res);
}
/**
* Send apdu to the card
*
* @param card pointer to sc_card_t structure
* @param path
* @param pathlen
* @param p1
* @param file_out
* @return result
*/
static int dnie_compose_and_send_apdu(sc_card_t *card, const u8 *path, size_t pathlen,
u8 p1, sc_file_t **file_out)
{
int res = 0;
sc_apdu_t apdu;
u8 rbuf[MAX_RESP_BUFFER_SIZE];
sc_context_t *ctx = NULL;
if (!card || !card->ctx)
return SC_ERROR_INVALID_ARGUMENTS;
ctx = card->ctx;
LOG_FUNC_CALLED(ctx);
dnie_format_apdu(card, &apdu, SC_APDU_CASE_4_SHORT, 0xA4, p1, 0,
sc_get_max_recv_size(card), pathlen,
rbuf, sizeof(rbuf), path, pathlen);
if (p1 == 3)
apdu.cse= SC_APDU_CASE_1;
if (file_out == NULL)
apdu.cse = SC_APDU_CASE_4_SHORT;
res = sc_transmit_apdu(card, &apdu);
if ((res != SC_SUCCESS) || (file_out == NULL))
LOG_TEST_RET(ctx, res, "SelectFile() APDU transmit failed");
if (file_out == NULL) {
if (apdu.sw1 == 0x61)
SC_FUNC_RETURN(ctx, SC_LOG_DEBUG_VERBOSE, 0);
SC_FUNC_RETURN(ctx, SC_LOG_DEBUG_VERBOSE,
sc_check_sw(card, apdu.sw1, apdu.sw2));
}
/* analyze response. if FCI, try to parse */
res = sc_check_sw(card, apdu.sw1, apdu.sw2);
if (res != SC_SUCCESS) {
LOG_TEST_RET(ctx, res, "SelectFile() check_sw failed");
}
if ((apdu.resplen < 2) || (apdu.resp[0] == 0x00)) {
LOG_FUNC_RETURN(ctx, SC_ERROR_UNKNOWN_DATA_RECEIVED);
}
if (file_out) {
/* finally process FCI response */
size_t len = apdu.resp[1];
sc_file_free(*file_out);
*file_out = sc_file_new();
if (*file_out == NULL) {
LOG_FUNC_RETURN(ctx, SC_ERROR_OUT_OF_MEMORY);
}
if (apdu.resplen - 2 < len || len < 1) {
LOG_FUNC_RETURN(ctx, SC_ERROR_UNKNOWN_DATA_RECEIVED);
}
res = card->ops->process_fci(card, *file_out, apdu.resp + 2, len);
}
LOG_FUNC_RETURN(ctx, res);
}
/**
* OpenDNIe implementation of Select_File().
*
* Select_file: Does the equivalent of SELECT FILE command specified
* in ISO7816-4. Stores information about the selected file to
* <file>, if not NULL.
*
* SELECT file in DNIe is a bit tricky:
* - only handles some types:
* -- <strong>SC_PATH_TYPE_FILE_ID</strong> 2-byte long file ID
* -- <strong>SC_PATH_TYPE_DF_NAME</strong> named DF's
* -- <strong>SC_PATH_TYPE_PARENT</strong> jump to parent DF of current EF/DF - undocumented in DNIe manual
* -- other file types are marked as unsupported
*
* - Also MF must be addressed by their Name, not their ID
* So some magic is needed:
* - split <strong>SC_PATH_TYPE_PATH</strong> into several calls to each 2-byte data file ID
* - Translate initial file id 3F00 to be DF name 'Master.File'
*
* Also, Response always handle a proprietary FCI info, so
* need to handle it manually via dnie_process_fci()
*
* @param card Pointer to Card Structure
* @param in_path Path ID to be selected
* @param file_out where to store fci information
* @return SC_SUCCESS if ok; else error code
*/
static int dnie_select_file(struct sc_card *card,
const struct sc_path *in_path,
struct sc_file **file_out)
{
int res = SC_SUCCESS;
sc_context_t *ctx = NULL;
unsigned char tmp_path[sizeof(DNIE_MF_NAME)];
int reminder = 0;
if (!card || !card->ctx || !in_path)
return SC_ERROR_INVALID_ARGUMENTS;
ctx = card->ctx;
LOG_FUNC_CALLED(ctx);
switch (in_path->type) {
case SC_PATH_TYPE_FILE_ID:
/* pathlen must be of len=2 */
/*
* gscriptor shows that DNIe also handles
* Select child DF (p1=1) and Select EF (p1=2),
* but we'll use P1=0 as general solution for all cases
*
* According iso7816-4 sect 7.1.1 pathlen==0 implies
* select MF, but this case is not supported by DNIe
*/
if (in_path->len != 2)
LOG_FUNC_RETURN(ctx, SC_ERROR_INVALID_ARGUMENTS);
sc_log_hex(ctx, "select_file(ID)", in_path->value, in_path->len);
res = dnie_compose_and_send_apdu(card, in_path->value, in_path->len, 0, file_out);
break;
case SC_PATH_TYPE_DF_NAME:
sc_log_hex(ctx, "select_file(NAME)", in_path->value, in_path->len);
res = dnie_compose_and_send_apdu(card, in_path->value, in_path->len, 4, file_out);
break;
case SC_PATH_TYPE_PATH:
if ((in_path->len == 0) || ((in_path->len & 1) != 0)) /* not divisible by 2 */
LOG_FUNC_RETURN(ctx, SC_ERROR_INVALID_ARGUMENTS);
sc_log_hex(ctx, "select_file(PATH): requested", in_path->value, in_path->len);
/* convert to SC_PATH_TYPE_FILE_ID */
res = sc_lock(card); /* lock to ensure path traversal */
LOG_TEST_RET(ctx, res, "sc_lock() failed");
if (memcmp(in_path->value, "\x3F\x00", 2) == 0) {
/* if MF, use the name as path */
strcpy((char *)tmp_path, DNIE_MF_NAME);
sc_log_hex(ctx, "select_file(NAME): requested", tmp_path, sizeof(DNIE_MF_NAME) - 1);
res = dnie_compose_and_send_apdu(card, tmp_path, sizeof(DNIE_MF_NAME) - 1, 4, file_out);
if (res != SC_SUCCESS) {
sc_unlock(card);
LOG_TEST_RET(ctx, res, "select_file(NAME) failed");
}
tmp_path[2] = 0;
reminder = in_path->len - 2;
} else {
tmp_path[2] = 0;
reminder = in_path->len;
}
while (reminder > 0) {
tmp_path[0] = in_path->value[in_path->len - reminder];
tmp_path[1] = in_path->value[1 + in_path->len - reminder];
sc_log(ctx, "select_file(PATH): requested:%s ", sc_dump_hex(tmp_path, 2));
res = dnie_compose_and_send_apdu(card, tmp_path, 2, 0, file_out);
if (res != SC_SUCCESS) {
sc_unlock(card);
LOG_TEST_RET(ctx, res, "select_file(PATH) failed");
}
reminder -= 2;
}
sc_unlock(card);
break;
case SC_PATH_TYPE_FROM_CURRENT:
LOG_FUNC_RETURN(ctx, SC_ERROR_NO_CARD_SUPPORT);
break;
case SC_PATH_TYPE_PARENT:
/* Hey!! Manual doesn't says anything on this, but
* gscriptor shows that this type is supported
*/
sc_log(ctx, "select_file(PARENT)");
/* according iso7816-4 sect 7.1.1 shouldn't have any parameters */
if (in_path->len != 0)
LOG_FUNC_RETURN(ctx, SC_ERROR_INVALID_ARGUMENTS);
res = dnie_compose_and_send_apdu(card, NULL, 0, 3, file_out);
break;
default:
LOG_FUNC_RETURN(ctx, SC_ERROR_INVALID_ARGUMENTS);
break;
}
/* as last step clear data cache and return */
dnie_clear_cache(GET_DNIE_PRIV_DATA(card));
LOG_FUNC_RETURN(ctx, res);
}
/**
* OpenDNIe implementation of Get_Challenge() command.
*
* Get challenge: retrieve 8 random bytes for any further use
* (eg perform an external authenticate command)
*
* NOTE:
* Official driver redundantly sets SM before execute this command
* No reason to do it, as is needed to do SM handshake...
* Also: official driver reads in blocks of 20 bytes.
* Why? Manual and iso-7816-4 states that only 8 bytes
* are required... so we will obey Manual
*
* @param card Pointer to card Structure
* @param rnd Where to store challenge
* @param len requested challenge length
* @return SC_SUCCESS if OK; else error code
*/
static int dnie_get_challenge(struct sc_card *card, u8 * rnd, size_t len)
{
/* As DNIe cannot handle other data length than 0x08 and 0x14 */
u8 rbuf[8];
size_t out_len;
int r;
LOG_FUNC_CALLED(card->ctx);
r = iso_ops->get_challenge(card, rbuf, sizeof rbuf);
LOG_TEST_RET(card->ctx, r, "GET CHALLENGE cmd failed");
if (len < (size_t) r) {
out_len = len;
} else {
out_len = (size_t) r;
}
memcpy(rnd, rbuf, out_len);
LOG_FUNC_RETURN(card->ctx, (int) out_len);
}
/*
* ISO 7816-8 functions
*/
/**
* OpenDNIe implementation of Logout() card_driver function.
*
* Resets all access rights that were gained. Disable SM
*
* @param card Pointer to Card Structure
* @return SC_SUCCESS if OK; else error code
*/
static int dnie_logout(struct sc_card *card)
{
int result = SC_SUCCESS;
sc_file_t *file = NULL;
if ((card == NULL) || (card->ctx == NULL))
return SC_ERROR_INVALID_ARGUMENTS;
LOG_FUNC_CALLED(card->ctx);
if (card->sm_ctx.sm_mode != SM_MODE_NONE) {
/* mark the channel as closed */
result = cwa_create_secure_channel(card,
GET_DNIE_PRIV_DATA(card)->cwa_provider, CWA_SM_OFF);
LOG_TEST_RET(card->ctx, result, "Cannot close the secure channel");
/* request the Master File to provoke an SM error and close the channel */
result = dnie_compose_and_send_apdu(card, (const u8 *) DNIE_MF_NAME,
sizeof(DNIE_MF_NAME) - 1, 4, &file);
if (result == SC_ERROR_SM)
result = SC_SUCCESS;
}
if (file != NULL)
sc_file_free(file);
LOG_FUNC_RETURN(card->ctx, result);
}
/**
* Implementation of Set_Security_Environment card driver command.
*
* Initializes the security environment on card
* according to <env>, and stores the environment as <se_num> on the
* card. If se_num <= 0, the environment will not be stored.
* Notice that OpenDNIe SM handling requires a buffer longer than
* provided for this command; so special apdu is used in cwa code
*
* @param card Pointer to card driver Structure
* @param env Pointer to security environment data
* @param num: which Card Security environment to use (ignored in OpenDNIe)
* @return SC_SUCCESS if OK; else error code
*
* TODO: mix these code with SM set_security_env operations
*
*/
static int dnie_set_security_env(struct sc_card *card,
const struct sc_security_env *env, int se_num)
{
sc_apdu_t apdu;
u8 sbuf[SC_MAX_APDU_BUFFER_SIZE]; /* buffer to compose apdu data */
u8 rbuf[MAX_RESP_BUFFER_SIZE];
u8 *p = sbuf;
int result = SC_SUCCESS;
if ((card == NULL) || (card->ctx == NULL) || (env == NULL))
return SC_ERROR_INVALID_ARGUMENTS;
LOG_FUNC_CALLED(card->ctx);
if (se_num!=0) {
sc_log(card->ctx,"DNIe cannot handle several security envs");
LOG_FUNC_RETURN(card->ctx,SC_ERROR_INVALID_ARGUMENTS);
}
/* Secure Channel should be on here, if not means an error */
/*
result =
cwa_create_secure_channel(card, dnie_priv.provider, CWA_SM_WARM);
LOG_TEST_RET(card->ctx, result,
"set_security_env(); Cannot establish SM");
*/
/* check for algorithms */
if (env->flags & SC_SEC_ENV_ALG_REF_PRESENT) {
sc_log(card->ctx, "checking algorithms");
switch (env->algorithm) {
case SC_ALGORITHM_RSA:
result = SC_SUCCESS;
break;
case SC_ALGORITHM_EC:
case SC_ALGORITHM_GOSTR3410:
default:
result = SC_ERROR_NOT_SUPPORTED;
break;
}
LOG_TEST_RET(card->ctx, result, "Unsupported algorithm");
if ((env->algorithm_flags & SC_ALGORITHM_RSA_HASH_SHA1) == 0) {
result = SC_ERROR_NOT_SUPPORTED;
/* TODO:
* Manual says that only RSA with SHA1 is supported, but found
* some docs where states that SHA256 is also handled
*/
}
LOG_TEST_RET(card->ctx, result,
"Only RSA with SHA1 is supported");
/* ok: insert algorithm reference into buffer */
*p++ = 0x80; /* algorithm reference tag */
*p++ = 0x01; /* len */
*p++ = env->algorithm_ref & 0xff; /* val */
}
/* check for key references */
if (env->flags & SC_SEC_ENV_KEY_REF_PRESENT) {
sc_log(card->ctx, "checking key references");
if (env->key_ref_len != 1) {
sc_log(card->ctx, "Null or invalid key ID reference");
LOG_FUNC_RETURN(card->ctx, SC_ERROR_INVALID_ARGUMENTS);
}
sc_log(card->ctx, "Using key reference '%s'",
sc_dump_hex(env->key_ref, env->key_ref_len));
/* ok: insert key reference into buffer */
/* notice that DNIe uses same key reference for pubk and privk */
/* see cwa14890-2 sect B.1 about Control Reference Template Tags */
*p++ = 0x84; /* TODO: make proper detection of 0x83 /0x84 tag usage */
*p++ = 0x02; /* len */
*p++ = 0x01; /* key ID prefix (MSB byte of keyFile ID) */
memcpy(p, env->key_ref, env->key_ref_len); /* in DNIe key_ref_len=1 */
p += env->key_ref_len;
/* store key reference into private data */
GET_DNIE_PRIV_DATA(card)->rsa_key_ref = 0xff & env->key_ref[0];
}
/* create and format apdu */
dnie_format_apdu(card, &apdu, SC_APDU_CASE_4_SHORT, 0x22, 0x00, 0x00, 255, p - sbuf,
rbuf, MAX_RESP_BUFFER_SIZE, sbuf, p - sbuf);
/* check and perform operation */
switch (env->operation) {
case SC_SEC_OPERATION_DECIPHER:
/* TODO: Manual is unsure about if (de)cipher() is supported */
apdu.p1 = 0xC1;
apdu.p2 = 0xB8;
break;
case SC_SEC_OPERATION_SIGN:
apdu.p1 = 0x41; /* SET; internal operation */
apdu.p2 = 0xB6; /* Template for Digital Signature */
break;
default:
LOG_FUNC_RETURN(card->ctx, SC_ERROR_INVALID_ARGUMENTS);
}
/* Notice that Manual states that DNIE only allows handle of
* current security environment, so se_num is ignored, and
* store sec env apdu (00 22 F2 se_num) command will not be issued */
/* send composed apdu and parse result */
result = sc_transmit_apdu(card, &apdu);
LOG_TEST_RET(card->ctx, result, "Set Security Environment failed");
result = sc_check_sw(card, apdu.sw1, apdu.sw2);
LOG_FUNC_RETURN(card->ctx, result);
}
/**
* OpenDNIe implementation of Decipher() card driver operation.
*
* Engages the deciphering operation. Card will use the
* security environment set in a call to set_security_env or
* restore_security_env.
*
* Notice that DNIe manual doesn't say anything about crypt/decrypt
* operations. So this code is based on ISO standards and still needs
* to be checked
*
* ADD: seems that DNIe supports a minimal cipher/decipher operation
* but restricted to 1024 data chunks . Need more info and tests
*
* @param card Pointer to Card Driver Structure
* @param crgram cryptogram to be (de)ciphered
* @param crgram_len cryptogram length
* @param out where to store result
* @param outlen length of result buffer
* @return SC_SUCCESS if OK; else error code
*/
static int dnie_decipher(struct sc_card *card,
const u8 * crgram, size_t crgram_len,
u8 * out, size_t outlen)
{
struct sc_apdu apdu;
u8 rbuf[SC_MAX_APDU_BUFFER_SIZE];
u8 sbuf[MAX_RESP_BUFFER_SIZE];
size_t len;
int result = SC_SUCCESS;
if ((card == NULL) || (card->ctx == NULL))
return SC_ERROR_INVALID_ARGUMENTS;
LOG_FUNC_CALLED(card->ctx);
if ((crgram == NULL) || (out == NULL) || (crgram_len > 255)) {
LOG_FUNC_RETURN(card->ctx, SC_ERROR_INVALID_ARGUMENTS);
}
/* Secure Channel should be on. Elsewhere an error will be thrown */
/*
result =
cwa_create_secure_channel(card, dnie_priv.provider, CWA_SM_WARM);
LOG_TEST_RET(card->ctx, result, "decipher(); Cannot establish SM");
*/
/* Official driver uses an undocumented proprietary APDU
* (90 74 40 keyID). This code uses standard 00 2A 80 8x one)
* as shown in card-atrust-acos.c and card-jcop.c
*/
dnie_format_apdu(card, &apdu, SC_APDU_CASE_4_SHORT,
0x2A, /* INS: 0x2A perform security operation */
0x80, /* P1: Response is plain value */
0x86, /* P2: 8x: Padding indicator byte followed by cryptogram */
256, crgram_len + 1, rbuf, sizeof(rbuf), sbuf, crgram_len + 1
);
sbuf[0] = 0; /* padding indicator byte, 0x00 = No further indication */
memcpy(sbuf + 1, crgram, crgram_len);
/* send apdu */
result = sc_transmit_apdu(card, &apdu);
LOG_TEST_RET(card->ctx, result, "APDU transmit failed");
/* check response */
result = sc_check_sw(card, apdu.sw1, apdu.sw2);
LOG_TEST_RET(card->ctx, result, "decipher returned error");
/* responde ok: fill result data and return */
len = apdu.resplen > outlen ? outlen : apdu.resplen;
memcpy(out, apdu.resp, len);
LOG_FUNC_RETURN(card->ctx, result);
}
/**
* OpenDNIe implementation of Compute_Signature() card driver operation.
*
* Generates a digital signature on the card.
* This function handles the process of hash + sign
* with previously selected keys (by mean of set_security environment
*
* AS iso7816 and DNIe Manual states there are 3 ways to perform
* this operation:
*
* - (plaintext) Hash on plaintext + sign
* - (partial hash) Send a externally evaluated pkcs1 hash + sign
* - (hash) directly sign a given sha1 hash
*
* So the code analyze incoming data, decide which method to be used
* and applies
*
* @param card pointer to sc_card_t structure
* @param data data to be hashed/signed
* @param datalen length of provided data
* @param out buffer to store results into
* @param outlen available space in result buffer
* @return
* - Positive value: Size of data stored in out buffer when no error
* - Negative value: error code
*/
static int dnie_compute_signature(struct sc_card *card,
const u8 * data, size_t datalen,
u8 * out, size_t outlen)
{
int result = SC_SUCCESS;
int result_resplen = 0;
struct sc_apdu apdu;
u8 rbuf[MAX_RESP_BUFFER_SIZE]; /* to receive sign response */
/* some preliminary checks */
if ((card == NULL) || (card->ctx == NULL))
return SC_ERROR_INVALID_ARGUMENTS;
/* OK: start working */
LOG_FUNC_CALLED(card->ctx);
/* more checks */
if ((data == NULL) || (out == NULL))
LOG_FUNC_RETURN(card->ctx, SC_ERROR_INVALID_ARGUMENTS);
if (datalen > SC_MAX_APDU_BUFFER_SIZE) /* should be 256 */
LOG_FUNC_RETURN(card->ctx, SC_ERROR_INVALID_ARGUMENTS);
#ifdef ENABLE_DNIE_UI
/* (Requested by DGP): on signature operation, ask user consent */
if (GET_DNIE_PRIV_DATA(card)->rsa_key_ref == 0x02) { /* TODO: revise key ID handling */
result = dnie_ask_user_consent(card,user_consent_title,user_consent_message);
LOG_TEST_RET(card->ctx, result, "User consent denied");
}
#endif
/*
Seems that OpenSC already provides pkcs#1 v1.5 DigestInfo structure
with pre-calculated hash. So no need to to any Hash calculation,
So just extract 15+20 DigestInfo+Hash info from ASN.1 provided
data and feed them into sign() command
*/
sc_log_hex(card->ctx,
"Compute signature\n============================================================",
data, datalen);
/*INS: 0x2A PERFORM SECURITY OPERATION
* P1: 0x9E Resp: Digital Signature
* P2: 0x9A Cmd: Input for Digital Signature */
dnie_format_apdu(card, &apdu, SC_APDU_CASE_4_SHORT, 0x2A, 0x9E, 0x9A, 256, datalen,
rbuf, sizeof(rbuf), data, datalen);
/* tell card to compute signature */
result = sc_transmit_apdu(card, &apdu);
if (result != SC_SUCCESS) {
LOG_TEST_RET(card->ctx, result, "compute_signature() failed");
}
/* check response */
result = sc_check_sw(card, apdu.sw1, apdu.sw2);
if (result != SC_SUCCESS) {
LOG_TEST_RET(card->ctx, result, "compute_signature() response error");
}
/* ok: copy result from buffer */
result_resplen = apdu.resplen;
if ((int)outlen<result_resplen)
LOG_FUNC_RETURN(card->ctx, SC_ERROR_INVALID_ARGUMENTS);
memcpy(out, apdu.resp, result_resplen);
/* and return response length */
LOG_FUNC_RETURN(card->ctx, result_resplen);
}
/*
* ISO 7816-9 functions
*/
/**
* OpenDNIe implementation of List_Files() card driver operation.
*
* List available files in current DF
* This is a dirty and trick implementation:
* Just try every ID in current dir
*
* @param card Pointer to Card Driver structure
* @param buff buffer to store result into
* @param bufflen size of provided buffer
* @return SC_SUCCESS if OK; else error code
*
* TODO: check for presence of every file ids on a DF is not
* practical. Locate a better way to handle, or remove code
*/
static int dnie_list_files(sc_card_t * card, u8 * buf, size_t buflen)
{
int res = SC_SUCCESS;
int id1 = 0;
int id2 = 0;
size_t count = 0;
u8 data[2];
sc_apdu_t apdu;
if (!card || !card->ctx)
return SC_ERROR_INVALID_ARGUMENTS;
LOG_FUNC_CALLED(card->ctx);
if (!buf || (buflen < 2))
LOG_FUNC_RETURN(card->ctx, SC_ERROR_INVALID_ARGUMENTS);
/* compose select_file(ID) command */
dnie_format_apdu(card, &apdu, SC_APDU_CASE_4_SHORT, 0xA4, 0x00, 0x00, 0, 2,
NULL, 0, data, 2);
/* iterate on every possible ids */
for (id1 = 0; id1 < 256; id1++) {
for (id2 = 0; id2 < 256; id2++) {
if (count >= (buflen - 2)) {
sc_log(card->ctx,
"list_files: end of buffer. Listing stopped");
LOG_FUNC_RETURN(card->ctx, SC_SUCCESS);
}
/* according iso several ids are not allowed, so check for it */
if ((id1 == 0x3F) && (id2 == 0xFF))
continue; /* generic parent "." DF */
if ((id1 == 0x2F) && (id2 == 0x00))
continue; /* RFU see iso 8.2.1.1 */
if ((id1 == 0x2F) && (id2 == 0x01))
continue; /* RFU */
/* compose and transmit select_file() cmd */
data[0] = (u8) (0xff & id1);
data[1] = (u8) (0xff & id2);
res = sc_transmit_apdu(card, &apdu);
if (res != SC_SUCCESS) {
sc_log(card->ctx, "List file '%02X%02X' failed",
id1, id2);
/* if file not found, continue; else abort */
if (res != SC_ERROR_FILE_NOT_FOUND)
LOG_FUNC_RETURN(card->ctx, res);
continue;
}
/* if file found, process fci to get file type */
sc_log(card->ctx, "Found File ID '%02X%02X'", id1, id2);
/* store id into buffer */
*(buf + count++) = data[0];
*(buf + count++) = data[1];
/* TODO:
* if found file is a DF go back to parent DF
* to continue search */
}
}
/* arriving here means all done */
LOG_FUNC_RETURN(card->ctx, SC_SUCCESS);
}
/**
* Parse APDU results to generate proper error code.
*
* Traps standard check_sw function to take care on special error codes
* for OpenDNIe (mostly related to SM status and operations)
*
* @param card Pointer to Card driver Structure
* @param sw1 SW1 APDU response byte
* @param sw2 SW2 APDU response byte
* @return SC_SUCCESS if no error; else proper error code
*/
static int dnie_check_sw(struct sc_card *card,
unsigned int sw1, unsigned int sw2)
{
int res = SC_SUCCESS;
int n = 0;
if (!card || !card->ctx)
return SC_ERROR_INVALID_ARGUMENTS;
LOG_FUNC_CALLED(card->ctx);
/* check specific dnie errors */
for (n = 0; dnie_errors[n].SWs != 0; n++) {
if (dnie_errors[n].SWs == ((sw1 << 8) | sw2)) {
sc_log(card->ctx, "%s", dnie_errors[n].errorstr);
return dnie_errors[n].errorno;
}
}
/* arriving here means check for supported iso error codes */
res = iso_ops->check_sw(card, sw1, sw2);
LOG_FUNC_RETURN(card->ctx, res);
}
/**
* OpenDNIe implementation for Card_Ctl() card driver operation.
*
* This command provides access to non standard functions provided by
* this card driver, as defined in cardctl.h
*
* @param card Pointer to card driver structure
* @param request Operation requested
* @param data where to get data/store response
* @return SC_SUCCESS if ok; else error code
* @see cardctl.h
*
* TODO: wait for GET_CARD_INFO generic cardctl to be implemented
* in opensc and rewrite code according it
*/
static int dnie_card_ctl(struct sc_card *card,
unsigned long request, void *data)
{
int result = SC_SUCCESS;
if ((card == NULL) || (card->ctx == NULL))
return SC_ERROR_INVALID_ARGUMENTS;
LOG_FUNC_CALLED(card->ctx);
if (data == NULL) {
LOG_FUNC_RETURN(card->ctx, SC_ERROR_INVALID_ARGUMENTS);
}
switch (request) {
/* obtain lifecycle status by reading card->type */
case SC_CARDCTL_LIFECYCLE_GET:
switch (card->type) {
case SC_CARD_TYPE_DNIE_ADMIN:
result = SC_CARDCTRL_LIFECYCLE_ADMIN;
break;
case SC_CARD_TYPE_DNIE_USER:
result = SC_CARDCTRL_LIFECYCLE_USER;
break;
case SC_CARD_TYPE_DNIE_BLANK:
case SC_CARD_TYPE_DNIE_TERMINATED:
result = SC_CARDCTRL_LIFECYCLE_OTHER;
break;
}
*(int *)data = result;
LOG_FUNC_RETURN(card->ctx, SC_SUCCESS);
/* call card to obtain serial number */
case SC_CARDCTL_GET_SERIALNR:
result = dnie_get_serialnr(card, (sc_serial_number_t *) data);
LOG_FUNC_RETURN(card->ctx, result);
case SC_CARDCTL_DNIE_GENERATE_KEY:
/* some reports says that this card supports genkey */
result = dnie_generate_key(card, data);
LOG_FUNC_RETURN(card->ctx, result);
case SC_CARDCTL_DNIE_GET_INFO:
/* retrieve name, surname and eid number */
result = dnie_get_info(card, data);
LOG_FUNC_RETURN(card->ctx, result);
default:
/* default: unsupported function */
LOG_FUNC_RETURN(card->ctx, SC_ERROR_NOT_SUPPORTED);
}
}
/**
* Read first bytes of an EF to check for compression data.
*
* FCI info on compressed files provides the length of the compressed
* data. When fci returns filetype = 0x24, needs to check if the
* file is compressed, and set up properly correct file length, to let
* the read_binary() file cache work
*
* Extract real file length from compressed file is done by mean of
* reading 8 first bytes for uncompressed/compressed length.
* Lengths are provided as two 4-byte little endian numbers
*
* Implemented just like a direct read binary apdu bypassing dnie file cache
*
* @param card sc_card_t structure pointer
* @return <0: error code - ==0 not compressed - >0 file size
*/
static int dnie_read_header(struct sc_card *card)
{
sc_apdu_t apdu;
int r;
u8 buf[MAX_RESP_BUFFER_SIZE];
unsigned long uncompressed = 0L;
unsigned long compressed = 0L;
sc_context_t *ctx = NULL;
if (!card || !card->ctx)
return SC_ERROR_INVALID_ARGUMENTS;
ctx = card->ctx;
LOG_FUNC_CALLED(ctx);
/* initialize apdu */
dnie_format_apdu(card, &apdu, SC_APDU_CASE_2_SHORT, 0xB0, 0x00, 0x00, 8, 0,
buf, MAX_RESP_BUFFER_SIZE, NULL, 0);
/* transmit apdu */
r = sc_transmit_apdu(card, &apdu);
if (r != SC_SUCCESS) {
sc_log(ctx, "read_header() APDU transmit failed");
LOG_FUNC_RETURN(ctx, r);
}
/* check response */
if (apdu.resplen != 8)
goto header_notcompressed;
uncompressed = lebytes2ulong(apdu.resp);
compressed = lebytes2ulong(apdu.resp + 4);
if (uncompressed < compressed)
goto header_notcompressed;
if (uncompressed > 32767)
goto header_notcompressed;
/* ok: assume data is correct */
sc_log(ctx, "read_header: uncompressed file size is %lu", uncompressed);
return (int)(0x7FFF & uncompressed);
header_notcompressed:
sc_log(ctx, "response doesn't match compressed file header");
return 0;
}
/**
* Access control list bytes for proprietary DNIe FCI response for DF's.
* based in information from official DNIe Driver
* Parsing code based on itacns card driver
*/
static int df_acl[] = { /* to handle DF's */
SC_AC_OP_CREATE, SC_AC_OP_DELETE,
SC_AC_OP_REHABILITATE, SC_AC_OP_INVALIDATE,
-1 /* !hey!, what about 5th byte of FCI info? */
};
/**
* Access control list bytes for proprietary DNIe FCI response for EF's.
* based in information from official DNIe Driver
* Parsing code based on itacns card driver
*/
static int ef_acl[] = { /* to handle EF's */
SC_AC_OP_READ, SC_AC_OP_UPDATE,
SC_AC_OP_REHABILITATE, SC_AC_OP_INVALIDATE,
-1 /* !hey!, what about 5th byte of FCI info? */
};
/**
* OpenDNIe implementation of Process_FCI() card driver command.
*
* Parse SelectFile's File Control information.
* - First, std iso_parse_fci is called to parse std fci tags
* - Then analyze proprietary tag according DNIe Manual
*
* @param card OpenSC card structure pointer
* @param file currently selected EF or DF
* @param buf received FCI data
* @param buflen FCI length
* @return SC_SUCCESS if OK; else error code
*/
static int dnie_process_fci(struct sc_card *card,
struct sc_file *file, const u8 * buf, size_t buflen)
{
int res = SC_SUCCESS;
int *op = df_acl;
int n = 0;
sc_context_t *ctx = NULL;
if ((card == NULL) || (card->ctx == NULL) || (file == NULL) || buflen == 0)
return SC_ERROR_INVALID_ARGUMENTS;
ctx = card->ctx;
LOG_FUNC_CALLED(ctx);
/* first of all, let iso do the hard work */
res = iso_ops->process_fci(card, file, buf, buflen);
LOG_TEST_RET(ctx, res, "iso7816_process_fci() failed");
/* if tag 0x85 is received, then file->prop_attr_len should be filled
* by sc_file_set_prop_attr() code. So check and set data according manual
* Note errata at pg 35 of Manual about DF identifier (should be 0x38) */
if (file->prop_attr_len == 0) { /* no proprietary tag (0x85) received */
res = SC_SUCCESS;
goto dnie_process_fci_end;
}
/* at least 10 bytes should be received */
if (file->prop_attr_len < 10) {
res = SC_ERROR_WRONG_LENGTH;
goto dnie_process_fci_end;
}
/* byte 0 denotes file type */
switch (file->prop_attr[0]) {
case 0x01: /* EF for plain files */
file->type = SC_FILE_TYPE_WORKING_EF;
file->ef_structure = SC_FILE_EF_TRANSPARENT;
break;
case 0x15: /* EF for keys: linear variable simple TLV */
file->type = SC_FILE_TYPE_WORKING_EF;
/* pin file 3F000000 has also this EF type */
if ( ( file->prop_attr[2] == 0x00 ) && (file->prop_attr[3] == 0x00 ) ) {
sc_log(ctx,"Processing pin EF");
break;
}
/* FCI response for Keys EF returns 3 additional bytes */
if (file->prop_attr_len < 13) {
sc_log(ctx, "FCI response len for Keys EF should be 13 bytes");
res = SC_ERROR_WRONG_LENGTH;
goto dnie_process_fci_end;
}
break;
case 0x24: /* EF for compressed certificates */
file->type = SC_FILE_TYPE_WORKING_EF;
file->ef_structure = SC_FILE_EF_TRANSPARENT;
/* evaluate real length by reading first 8 bytes from file */
res = dnie_read_header(card);
/* Hey!, we need pin to read certificates... */
if (res == SC_ERROR_SECURITY_STATUS_NOT_SATISFIED)
goto dnie_process_fci_end;
if (res <= 0) {
sc_log(ctx,
"Cannot evaluate uncompressed size. use fci length");
} else {
sc_log(ctx, "Storing uncompressed size '%d' into fci",
res);
file->prop_attr[3] = (u8) ((res >> 8) & 0xff);
file->prop_attr[4] = (u8) (res & 0xff);
}
break;
case 0x38: /* Errata: manual page 35 says wrong 0x34 */
file->type = SC_FILE_TYPE_DF;
break;
default:
res = SC_ERROR_UNKNOWN_DATA_RECEIVED;
goto dnie_process_fci_end;
}
/* bytes 1 and 2 stores file ID */
file->id = ( ( 0xff & (int)file->prop_attr[1] ) << 8 ) |
( 0xff & (int)file->prop_attr[2] ) ;
/* bytes 3 and 4 states file length */
file->size = ( ( 0xff & (int)file->prop_attr[3] ) << 8 ) |
( 0xff & (int)file->prop_attr[4] ) ;
/* bytes 5 to 9 states security attributes */
/* NOTE:
* seems that these 5 bytes are handled according iso7816-9 sect 8.
* but sadly that each card uses their own bits :-(
* Moreover: Manual talks on 5 bytes, but official driver only uses 4
* No info available (yet), so copy code from card-jcos.c / card-flex.c
* card drivers and pray... */
op = (file->type == SC_FILE_TYPE_DF) ? df_acl : ef_acl;
for (n = 0; n < 5; n++) {
int key_ref = 0;
if (*(op + n) == -1)
continue; /* unused entry: skip */
key_ref = file->prop_attr[5 + n] & 0x0F;
switch (0xF0 & file->prop_attr[5 + n]) {
case 0x00:
sc_file_add_acl_entry(file, *(op + n), SC_AC_NONE,
SC_AC_KEY_REF_NONE);
break;
case 0x10:
/* this tag is omitted in official code
case 0x20:
*/
case 0x30:
sc_file_add_acl_entry(file, *(op + n), SC_AC_CHV,
key_ref);
break;
case 0x40:
sc_file_add_acl_entry(file, *(op + n), SC_AC_TERM,
key_ref);
break;
case 0xF0:
sc_file_add_acl_entry(file, *(op + n), SC_AC_NEVER,
SC_AC_KEY_REF_NONE);
break;
default:
sc_file_add_acl_entry(file, *(op + n), SC_AC_UNKNOWN,
SC_AC_KEY_REF_NONE);
break;
}
}
/* NOTE: Following bytes are described at DNIe manual pg 36, but No
documentation about what to do with following data is provided...
logs suggest that they are neither generated nor handled.
UPDATE: these additional bytes are received when FileDescriptor tag
is 0x15 (EF for keys)
*/
if (file->prop_attr[0] == 0x15) {
sc_log(card->ctx,
"Processing flags for Cryptographic key files");
/* byte 10 (if present) shows Control Flags for security files */
/* bytes 11 and 12 (if present) states Control bytes for
RSA crypto files */
/* TODO: write when know what to do */
}
res = SC_SUCCESS; /* arriving here means success */
dnie_process_fci_end:
LOG_FUNC_RETURN(card->ctx, res);
}
/*
* PIN related functions
* NOTE:
* DNIe manual says only about CHV1 PIN verify, but several sources talks
* about the ability to also handle CHV1 PIN change
* So prepare code to eventually support
*
* Anyway pin unlock is not available: no way to get PUK as these code is
* obtained by mean of user fingerprint, only available at police station
*/
/**
* Change PIN.
*
* Not implemented yet, as current availability for DNIe user driver
* is unknown
*
* @param card Pointer to Card Driver data structure
* @param data Pointer to Pin data structure
* @return SC_SUCCESS if ok; else error code
*/
static int dnie_pin_change(struct sc_card *card, struct sc_pin_cmd_data * data)
{
int res=SC_SUCCESS;
LOG_FUNC_CALLED(card->ctx);
/* Ensure that secure channel is established from reset */
res = cwa_create_secure_channel(card, GET_DNIE_PRIV_DATA(card)->cwa_provider, CWA_SM_ON);
LOG_TEST_RET(card->ctx, res, "Establish SM failed");
LOG_FUNC_RETURN(card->ctx,SC_ERROR_NOT_SUPPORTED);
}
/**
* Verify PIN.
*
* Initialize SM and send pin verify CHV1 command to DNIe
*
* @param card Pointer to Card Driver data structure
* @param data Pointer to Pin data structure
* @param tries_left; on fail stores the number of tries left before car lock
* @return SC_SUCCESS if ok, else error code; on pin incorrect also sets tries_left
*/
static int dnie_pin_verify(struct sc_card *card,
struct sc_pin_cmd_data *data, int *tries_left)
{
int res=SC_SUCCESS;
sc_apdu_t apdu;
u8 pinbuffer[SC_MAX_APDU_BUFFER_SIZE];
int pinlen = 0;
int padding = 0;
LOG_FUNC_CALLED(card->ctx);
/* ensure that secure channel is established from reset */
if (card->atr.value[15] >= DNIE_30_VERSION) {
/* the provider should be prepared for using PIN information */
sc_log(card->ctx, "DNIe 3.0 detected doing PIN initialization");
dnie_change_cwa_provider_to_pin(card);
}
res = cwa_create_secure_channel(card, GET_DNIE_PRIV_DATA(card)->cwa_provider, CWA_SM_ON);
LOG_TEST_RET(card->ctx, res, "Establish SM failed");
/* compose pin data to be inserted in apdu */
if (data->flags & SC_PIN_CMD_NEED_PADDING)
padding = 1;
data->pin1.offset = 0;
res = sc_build_pin(pinbuffer, sizeof(pinbuffer), &data->pin1, padding);
if (res < 0)
LOG_FUNC_RETURN(card->ctx, res);
pinlen = res;
/* compose apdu */
dnie_format_apdu(card, &apdu, SC_APDU_CASE_3_SHORT, 0x20, 0x00, 0x00, 0, pinlen,
NULL, 0, pinbuffer, pinlen);
/* and send to card through virtual channel */
res = sc_transmit_apdu(card, &apdu);
if (res != SC_SUCCESS) {
LOG_TEST_RET(card->ctx, res, "VERIFY APDU Transmit fail");
}
/* check response and if requested setup tries_left */
if (tries_left != NULL) { /* returning tries_left count is requested */
if ((apdu.sw1 == 0x63) && ((apdu.sw2 & 0xF0) == 0xC0)) {
*tries_left = apdu.sw2 & 0x0F;
LOG_FUNC_RETURN(card->ctx, SC_ERROR_PIN_CODE_INCORRECT);
}
}
res = dnie_check_sw(card, apdu.sw1, apdu.sw2); /* not a pinerr: parse result */
/* ensure that secure channel is established after a PIN channel in 3.0 */
if (card->atr.value[15] >= DNIE_30_VERSION) {
sc_log(card->ctx, "DNIe 3.0 detected => re-establish secure channel");
dnie_change_cwa_provider_to_secure(card);
if (res == SC_SUCCESS) {
res = cwa_create_secure_channel(card, GET_DNIE_PRIV_DATA(card)->cwa_provider, CWA_SM_ON);
}
}
LOG_FUNC_RETURN(card->ctx, res);
}
/* pin_cmd: verify/change/unblock command; optionally using the
* card's pin pad if supported.
*/
/**
* OpenDNIe implementation for Pin_Cmd() card driver command.
*
* @param card Pointer to Card Driver data structure
* @param data Pointer to Pin data structure
* @param tries_left; if pin_verify() operation, on incorrect pin stores the number of tries left before car lock
* @return SC_SUCCESS if ok, else error code; on pin incorrect also sets tries_left
*/
static int dnie_pin_cmd(struct sc_card *card,
struct sc_pin_cmd_data *data, int *tries_left)
{
int res = SC_SUCCESS;
int lc = SC_CARDCTRL_LIFECYCLE_USER;
if ((card == NULL) || (card->ctx == NULL) || (data == NULL))
return SC_ERROR_INVALID_ARGUMENTS;
LOG_FUNC_CALLED(card->ctx);
/*
* some flags and settings from documentation
* No (easy) way to handle pinpad through SM, so disable it
*/
data->flags &= ~SC_PIN_CMD_NEED_PADDING; /* no pin padding */
data->flags &= ~SC_PIN_CMD_USE_PINPAD; /* cannot handle pinpad */
/* ensure that card is in USER Lifecycle */
res = dnie_card_ctl(card, SC_CARDCTL_LIFECYCLE_GET, &lc);
LOG_TEST_RET(card->ctx, res, "Cannot get card LC status");
if (lc != SC_CARDCTRL_LIFECYCLE_USER) {
LOG_FUNC_RETURN(card->ctx, SC_ERROR_INVALID_CARD);
}
/* only allow changes on CHV pin ) */
switch (data->pin_type) {
case SC_AC_CHV: /* Card Holder Verifier */
break;
case SC_AC_TERM: /* Terminal auth */
case SC_AC_PRO: /* SM auth */
case SC_AC_AUT: /* Key auth */
LOG_FUNC_RETURN(card->ctx, SC_ERROR_NOT_SUPPORTED);
default:
LOG_FUNC_RETURN(card->ctx, SC_ERROR_INVALID_ARGUMENTS);
}
/* This DNIe driver only supports VERIFY operation */
switch (data->cmd) {
case SC_PIN_CMD_VERIFY:
res = dnie_pin_verify(card,data,tries_left);
break;
case SC_PIN_CMD_CHANGE:
res = dnie_pin_change(card,data);
break;
case SC_PIN_CMD_UNBLOCK:
case SC_PIN_CMD_GET_INFO:
res= SC_ERROR_NOT_SUPPORTED;
break;
default:
res= SC_ERROR_INVALID_ARGUMENTS;
break;
}
/* return result */
LOG_FUNC_RETURN(card->ctx, res);
}
/**********************************************************************/
/**
* Internal function to initialize card driver function pointers.
*
* This is done by getting a copy for iso7816 card operations,
* and replace every DNIe specific functions
*
* @return DNIe card driver data, or null on failure
*/
static sc_card_driver_t *get_dnie_driver(void)
{
sc_card_driver_t *iso_drv = sc_get_iso7816_driver();
/* memcpy() from standard iso7816 declared operations */
if (iso_ops == NULL)
iso_ops = iso_drv->ops;
dnie_ops = *iso_drv->ops;
/* fill card specific function pointers */
/* NULL means that function is not supported neither by DNIe nor iso7816.c */
/* if pointer is omitted, default ISO7816 function will be used */
/* initialization */
dnie_ops.match_card = dnie_match_card;
dnie_ops.init = dnie_init;
dnie_ops.finish = dnie_finish;
/* iso7816-4 functions */
dnie_ops.read_binary = dnie_read_binary;
dnie_ops.write_binary = NULL;
dnie_ops.update_binary = NULL;
dnie_ops.erase_binary = NULL;
dnie_ops.read_record = NULL;
dnie_ops.write_record = NULL;
dnie_ops.append_record = NULL;
dnie_ops.update_record = NULL;
dnie_ops.select_file = dnie_select_file;
dnie_ops.get_challenge = dnie_get_challenge;
/* iso7816-8 functions */
dnie_ops.verify = NULL;
dnie_ops.logout = dnie_logout;
/* dnie_ops.restore_security_env */
dnie_ops.set_security_env = dnie_set_security_env;
dnie_ops.decipher = dnie_decipher;
dnie_ops.compute_signature = dnie_compute_signature;
dnie_ops.change_reference_data = NULL;
dnie_ops.reset_retry_counter = NULL;
/* iso7816-9 functions */
dnie_ops.create_file = NULL;
dnie_ops.delete_file = NULL;
dnie_ops.list_files = dnie_list_files;
dnie_ops.check_sw = dnie_check_sw;
dnie_ops.card_ctl = dnie_card_ctl;
dnie_ops.process_fci = dnie_process_fci;
/* dnie_ops.construct_fci */
dnie_ops.pin_cmd = dnie_pin_cmd;
dnie_ops.get_data = NULL;
dnie_ops.put_data = NULL;
dnie_ops.delete_record = NULL;
return &dnie_driver;
}
/**
* Entry point for (static) OpenDNIe card driver.
*
* This is the only public function on this module
*
* @return properly initialized array pointer to card driver operations
*/
sc_card_driver_t *sc_get_dnie_driver(void)
{
return get_dnie_driver();
}
#undef __CARD_DNIE_C__
#endif /* ENABLE_OPENSSL */
|