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
|
2012-04-08 Ludovic Rousseau <rousseau@debian>
* README: Release 1.0.7
* GemPC430/Makefile, GemPC410/Makefile: Use CFLAGS and LDFLAGS
Fix Debian bug #667931
* GemPC410/GCGBPTransport.c, GemPC410/GemPC410Utils.c, GemPC410/GemPC410Utils.h, GemPC410/Makefile, GemPC410/TODO.txt, GemPC410/gbpserial.c, GemPC410/main.c, GemPC430/GCUSBTransport.c, GemPC430/libusb_wrap.c, GemPC430/usbserial_mosx.c, common/GCUtils.c, common/GCdebug.c, common/GCdebug.h, common/GemCore.h, common/ifdhandler.c:
Remove extra spaces
* GemPC430/usbserial.h, GemPC430/usbserial_mosx.c:
Use status_t insteaf of gcore_t when needed
GCUSBTransport.c: In function ‘GCSendCommand’:
GCUSBTransport.c:40:57: attention : comparison between ‘gcore_t’ and ‘enum <anonymous>’ [-Wenum-compare]
GCUSBTransport.c:47:53: attention : comparison between ‘gcore_t’ and ‘enum <anonymous>’ [-Wenum-compare]
* GemPC430/libusb_wrap.c: Fix compiler warnings
libusb_wrap.c: In function ‘OpenUSB’:
libusb_wrap.c:93:2: attention : format ‘%X’ expects argument of type ‘unsigned int’, but argument 6 has type ‘DWORD’ [-Wformat]
libusb_wrap.c:129:3: attention : format ‘%X’ expects argument of type ‘unsigned int’, but argument 6 has type ‘DWORD’ [-Wformat]
* GemPC410/GemPC410Utils.c: Remove dead code
GemPC410Utils.c: In function ‘OpenGemPC410’:
GemPC410Utils.c:74:2: attention : comparaison d'une expression non signée < 0 est toujours fausse [-Wtype-limits]
* GemPC410/gbpserial.c: Fix compiler warning
gbpserial.c: In function ‘OpenGBP’:
gbpserial.c:328:2: attention : format ‘%X’ expects argument of type ‘unsigned int’, but argument 6 has type ‘DWORD’ [-Wformat]
* common/GCUtils.c: Remove dead code
GCUtils.c: In function ‘iLunCheck’:
GCUtils.c:46:3: attention : comparaison d'une expression non signée < 0 est toujours fausse [-Wtype-limits]
* common/GCdebug.c: Fix compiler warnings
../common/GCdebug.c: In function ‘log_msg’:
../common/GCdebug.c:22:24: attention : unused parameter ‘priority’ [-Wunused-parameter]
../common/GCdebug.c: In function ‘log_xxd’:
../common/GCdebug.c:33:24: attention : unused parameter ‘priority’ [-Wunused-parameter]
* common/ifdhandler.c: Use %lX and %ld for DWORD types
ifdhandler.c: In function ‘IFDHCreateChannelByName’:
ifdhandler.c:51:2: attention : format ‘%X’ expects argument of type ‘unsigned int’, but argument 6 has type ‘DWORD’ [-Wformat]
ifdhandler.c: In function ‘IFDHCreateChannel’:
ifdhandler.c:113:2: attention : format ‘%X’ expects argument of type ‘unsigned int’, but argument 6 has type ‘DWORD’ [-Wformat]
ifdhandler.c:113:2: attention : format ‘%d’ expects argument of type ‘int’, but argument 7 has type ‘DWORD’ [-Wformat]
ifdhandler.c: In function ‘IFDHCloseChannel’:
ifdhandler.c:149:2: attention : format ‘%X’ expects argument of type ‘unsigned int’, but argument 6 has type ‘DWORD’ [-Wformat]
ifdhandler.c: In function ‘IFDHGetCapabilities’:
ifdhandler.c:184:2: attention : format ‘%X’ expects argument of type ‘unsigned int’, but argument 6 has type ‘DWORD’ [-Wformat]
ifdhandler.c:184:2: attention : format ‘%X’ expects argument of type ‘unsigned int’, but argument 7 has type ‘DWORD’ [-Wformat]
ifdhandler.c: In function ‘IFDHSetCapabilities’:
ifdhandler.c:240:2: attention : format ‘%X’ expects argument of type ‘unsigned int’, but argument 6 has type ‘DWORD’ [-Wformat]
ifdhandler.c:240:2: attention : format ‘%X’ expects argument of type ‘unsigned int’, but argument 7 has type ‘DWORD’ [-Wformat]
ifdhandler.c: In function ‘IFDHSetProtocolParameters’:
ifdhandler.c:269:2: attention : format ‘%X’ expects argument of type ‘unsigned int’, but argument 6 has type ‘DWORD’ [-Wformat]
ifdhandler.c: In function ‘IFDHPowerICC’:
ifdhandler.c:326:2: attention : format ‘%X’ expects argument of type ‘unsigned int’, but argument 6 has type ‘DWORD’ [-Wformat]
ifdhandler.c: In function ‘IFDHTransmitToICC’:
ifdhandler.c:421:2: attention : format ‘%X’ expects argument of type ‘unsigned int’, but argument 6 has type ‘DWORD’ [-Wformat]
ifdhandler.c: In function ‘IFDHControl’:
ifdhandler.c:557:2: attention : format ‘%X’ expects argument of type ‘unsigned int’, but argument 6 has type ‘DWORD’ [-Wformat]
ifdhandler.c: In function ‘IFDHICCPresence’:
ifdhandler.c:585:2: attention : format ‘%X’ expects argument of type ‘unsigned int’, but argument 6 has type ‘DWORD’ [-Wformat]
* common/GCCmds.c: Remove unused variable
2012-02-14 Ludovic Rousseau <rousseau@debian>
* GemPC410/gbpserial.c, GemPC410/resetGemPC410.c:
Fix typo writting -> writing
2010-09-03 Ludovic Rousseau <rousseau@debian>
* GemPC430/50-pcscd-ifd-gempc.rules:
udev rules to set the access rights of GemPC smart card readers so they
can be used by pcscd
2010-06-16 Ludovic Rousseau <rousseau@debian>
* README: release 1.0.6
* GemPC410/gbpserial.c:
OpenGBP(): and null fd is valid. Only negative values are errors.
Thanks to Joerg Hartenberger for the patch
2010-01-03 Ludovic Rousseau <rousseau@debian>
* common/GCCmds.c: GCCmdSetMode(): fix a spelling error
2009-04-12 Ludovic Rousseau <rousseau@debian>
* README: release 1.0.5
* GemPC410/resetGemPC410.c: remove "unused parameter" warnings
* common/ifdhandler.c, GemPC430/GemPC430Utils.c:
remove "unused parameter" warning
* common/ifdhandler.c: remove "unused parameter" warnings
* common/GCCmds.c:
GCCmds.c:481: attention : assignment discards qualifiers from pointer
target type
* GemPC430/Makefile, GemPC410/Makefile: correctly manage LDFLAGS
Thanks to Arfrever Frehtes Taifersar Arahesis for the patch
2009-02-18 Ludovic Rousseau <rousseau@debian>
* MacOSXbuild/ifd-GemPC430/ifd-GemPC430.xcodeproj/project.pbxproj:
add X Code 2 project
* MANIFEST: remove build/ files
2009-02-17 Ludovic Rousseau <rousseau@debian>
* MacOSXbuild/ifd-GemPC430/build/intermediates/ifd-GemPC430.pbxindex/categories.pbxbtree, MacOSXbuild/ifd-GemPC430/build/intermediates/ifd-GemPC430.pbxindex/decls.pbxbtree, MacOSXbuild/ifd-GemPC430/build/intermediates/ifd-GemPC430.pbxindex/files.pbxbtree, MacOSXbuild/ifd-GemPC430/build/intermediates/ifd-GemPC430.pbxindex/imports.pbxbtree, MacOSXbuild/ifd-GemPC430/build/intermediates/ifd-GemPC430.pbxindex/pbxindex.header, MacOSXbuild/ifd-GemPC430/build/intermediates/ifd-GemPC430.pbxindex/protocols.pbxbtree, MacOSXbuild/ifd-GemPC430/build/intermediates/ifd-GemPC430.pbxindex/refs.pbxbtree, MacOSXbuild/ifd-GemPC430/build/intermediates/ifd-GemPC430.pbxindex/strings.pbxstrings/control, MacOSXbuild/ifd-GemPC430/build/intermediates/ifd-GemPC430.pbxindex/strings.pbxstrings/strings, MacOSXbuild/ifd-GemPC430/build/intermediates/ifd-GemPC430.pbxindex/subclasses.pbxbtree, MacOSXbuild/ifd-GemPC430/build/intermediates/ifd-GemPC430.pbxindex/symbols0.pbxsymbols, MacOSXbuild/ifd-GemPC430/build/intermediates/ifd-GemPC430.indexed-headers, MacOSXbuild/ifd-GemPC430/build/intermediates/ifd-GemPC430.indexed-precomps:
useless files
* MANIFEST, MacOSXbuild/ifd-GemPC430/ifd-GemPC430.pbproj/giraud.pbxuser, MacOSXbuild/ifd-GemPC430/ifd-GemPC430.pbproj/project.pbxproj:
use X Code v2 project
* MANIFEST: add MacOSXbuild/debuglog.h and MacOSXbuild/ifdhandler.h
* common/GCdebug.h, common/GemCore.h, GemPC430/usbserial_mosx.c, MacOSXbuild/debuglog.h, MacOSXbuild/ifdhandler.h:
allow build on Mac OS X using X Code
2008-10-15 Ludovic Rousseau <rousseau@debian>
* README: release 1.0.4
* common/GCCmds.c: Fix powerup sequence when switching to ISO mode
If somehow the reader/card was in EMV mode, we need to switch it to ISO.
This was done but the final attemp to powerup tried to power it up in
EMV mode ... most likely a typo.
Patch from Sylvain Munaut
* README: release 1.0.4
* GemPC410/gbpserial.c: Allow the header to be read in several calls
Previously, if the header was not read in a single read() calls, there
was an error. This is an issue because some commands return the two
first bytes, then a small pause, then the rest of the header ...
At least this happens on a gci410emv connected thru an usb adapter ...
Now it works fine.
Patch from Sylvain Munaut
2007-08-14 Ludovic Rousseau <rousseau@debian>
* README: release 1.0.3
* common/GCCmds.c:
GCCmdGetOSVersion(): correct a big bug unnoticed for many years and
declared on PowerPC with gcc 4.x (Debian bug #428323)
* GemPC410/Makefile, GemPC430/Makefile:
do not strip the library so we have debug symbols if needed.
strip should be called by the package build process (if needed)
* common/GCCmds.c: GCGemCoreError(): log only is text is non NULL
2007-06-29 Ludovic Rousseau <rousseau@debian>
* README: release 1.0.2
* common/GCCmds.c: correctly handle empty response from the reader.
Thanks to Thomas Galliano for the bug report
* GemPC430/Makefile, GemPC410/Makefile:
do not set DESTDIR if not defined
2007-02-05 Ludovic Rousseau <rousseau@debian>
* GemPC430/libusb_wrap.c: correctly initialise usbDevice[]
* common/ifdhandler.c, GemPC410/GemPC410Utils.c, GemPC410/GemPC410Utils.h, GemPC410/gbpserial.c, GemPC410/gbpserial.h, GemPC430/GemPC430Utils.c, GemPC430/GemPC430Utils.h, GemPC430/libusb_wrap.c, GemPC430/libusb_wrap.h:
LPTSTR -> LPSTR since LPTSTR is deprecated
2006-02-09 Ludovic Rousseau <rousseau@debian>
* README: release 1.0.1
* GemPC430/libusb_wrap.c, common/GCdebug.c, common/ifdhandler.c:
fix some compilation warnings with gcc 4.0
* check:
allow compilation with pcsc-lite-1.2.9-beta10. The script was buggy
for beta > 9
* GemPC430/libusb_wrap.c:
WriteUSB(): remove a useless "POUET" debug message
2005-06-17 Ludovic Rousseau <rousseau@debian>
* GemPC430/libusb_wrap.c:
define interface, bulk_in and bulk_out fields and store the device
values.
We need to store them because the libusb structures are now half destroyed
when the device is removed.
* README: release 1.0.0
* GemPC430/Makefile:
use `pkg-config libpcsclite --variable=usbdropdir` to know where to
install the driver
* GemPC410/Makefile:
use `pkg-config libpcsclite --variable=usbdropdir` to know where to
install the library
* GemPC410/Makefile: remove definition of version_major
* GemPC410/Makefile:
do not create symbolic links anymore for *.so and *.so.major
* check: require 1.2.9-beta7 instead of 1.2.9-beta5
* GemPC410/main.c: replace debug_xxd() by DEBUG_XXD()
* GemPC410/main.c:
the device name can be passed as the command line argument
* GemPC410/gbpserial.c, GemPC430/libusb_wrap.c:
remove every #ifdef DEBUG_LEVEL_*
* GemPC410/Config.h, GemPC430/Config.h:
remove the DEBUG_LEVEL_* definition since we use the dynamic log level of
log_msg()
* common/GCCmds.c:
GCGemCoreError(): use log_msg() instead of debug_msg()
* common/GCCmds.c:
GCMakeCommand(): set the error code to no error by default
if the device disapear the output buffer is not filled so no GemCore
error is returned
* common/GCdebug.c:
define log_msg()/log_xxd() instead of debug_msg()/debug_xxd()
* common/GCdebug.h: use Log1?() from PCSC/debuglog.h
2004-08-08 Ludovic Rousseau <rousseau@debian>
* README: release 0.9.3
* common/GCCmds.c, common/GCCmds.h: use const attribute when needed
* GemPC430/libusb_wrap.h:
*USB functions return status_t and not gcore_t
2004-07-24 Ludovic Rousseau <rousseau@debian>
* README: release 0.9.2
* check: minium pcsc-lite version is now 1.2.9-beta5
* check: update the URL where new pcsc-lite archives can be fetched
* common/ifdhandler.c:
change IFDHControl() API to conform to pcsc-lite 1.2.9-beta5
2004-07-03 Ludovic Rousseau <rousseau@debian>
* GemPC410/Config.h, GemPC410/GCGBPTransport.c, GemPC410/GemPC410Utils.c, GemPC410/gbpserial.h, GemPC410/main.c, GemPC410/resetGemPC410.c, GemPC430/Config.h, GemPC430/GCUSBTransport.c, GemPC430/GemPC430Utils.c, common/GCCmds.c, common/GCTransport.h, common/GCUtils.c, common/GCUtils.h, common/GemCore.h, common/ifdhandler.c:
use C comments /* */ instead of C++ //
* MANIFEST:
remove common/{ifdhandler.h,pcscdefines.h,winscard.h,wintypes.h}
add common/gempc_ifdhandler.h
* GemPC410/GemPC410Utils.c, GemPC430/libusb_wrap.c, GemPC410/GemPC410Utils.h, GemPC410/gbpserial.c, GemPC410/gbpserial.h, GemPC430/GemPC430Utils.c, GemPC430/GemPC430Utils.h, GemPC430/libusb_wrap.h:
LPSTR -> LPTSTR
* GemPC410/GCGBPTransport.c, GemPC410/GemPC410Utils.c, GemPC410/gbpserial.c, GemPC410/main.c, GemPC430/GCUSBTransport.c, GemPC430/GemPC430Utils.c, GemPC430/libusb_wrap.c:
use #include "gempc_ifdhandler.h"
* GemPC410/Makefile, GemPC430/Makefile:
add `pkg-config libpcsclite --cflags` to INCS
* common/GCCmds.c, common/GCUtils.c, common/GemCore.h, common/gempc_ifdhandler.h, common/ifdhandler.c:
define PCSCLITE_MAX_READERS
* common/gempc_ifdhandler.h: GemPC specific declarations
* common/ifdhandler.h, common/pcscdefines.h, common/winscard.h, common/wintypes.h:
removed since we now used the one provided by pcsc-lite
* check: check for pcsclite.h instead of PCSC/pcsclite.h but use
CHECK_CFLAGS=`pkg-config libpcsclite --cflags`
* check: check for PCSC/pcsclite.h instead of pcsclite.h
2004-03-24 Ludovic Rousseau <rousseau@debian>
* GemPC410/Makefile: define default DESTDIR as /usr/local instead of
/usr/local/pcsc/drivers/serial. Thanks to Daniel Black for the patch.
2004-02-27 Ludovic Rousseau <rousseau@debian>
* README: release 0.9.1
* common/GCCmds.c, common/GCUtils.c: use new GCGemCoreError() format
* common/GCCmds.h:
add char *file, int line, char *function arguments to GCGemCoreError()
* common/GCdebug.h: add DEBUG_CRITICAL4
* GemPC430/libusb_wrap.c:
use pcsc-lite new IFDHCreateChannelByName() scheme: usb:vendor/product
* GemPC410/Config.h, GemPC430/Config.h, common/GCCmds.c:
use AUTOMATIC_PPS instead of NO_AUTO_PPS and do not define by default
for safety instead of speed
2004-02-25 Ludovic Rousseau <rousseau@debian>
* GemPC430/TODO.txt: move some old items from todo to done
* GemPC410/Config.h, GemPC430/Config.h:
Add definition of NO_AUTO_PPS (commented)
* common/GCCmds.c:
do not perform automatic PPS negiciation by the reader firmware if
NO_AUTO_PPS is defined (some cards need this)
2004-02-21 Ludovic Rousseau <rousseau@debian>
* common/GCCmds.c, common/GemCore.h:
add "Card powered down" 0x15 GemCore error
2004-02-07 Ludovic Rousseau <rousseau@debian>
* common/GCCmds.c:
Do not print the '"Error" returned by the card' message to avoid confusion
* common/GCCmds.c: add message for GCORE_INVALID_PROC_BYTE (0xE4)
2004-02-02 Ludovic Rousseau <rousseau@debian>
* common/pcscdefines.h:
remove white spaces before #define to avoid gcc-Version 3.3.2 20031022
warnings. Thanks to Toni Andjelkovic for the patch
2004-01-22 Ludovic Rousseau <rousseau@debian>
* README: release 0.9.0
* GemPC410/TODO.txt:
support of 3V-5V and "more than one reader" are now present
* README: latest pcsc-lite are available from alioth now
2004-01-20 Ludovic Rousseau <rousseau@debian>
* MANIFEST: remove GemPC410/devfs/ files
* GemPC410/devfs/README, GemPC410/devfs/libgempc410.conf.d, GemPC410/devfs/libgempc410.devfsd.conf, GemPC410/devfs/libgempc410.devices.d:
no devfs problems with /dev/pcsc/ is no more used.
* README.410:
/dev/pcsc/ is deprecated and DEVICENAME should be used instead of
CHANNELID with recent pcsc-lite versions (> 1.2.0)
* GemPC410/Makefile:
default installation directory is now /usr/local/pcsc/drivers/serial instead
of /usr/local/lib
* GemPC430/libusb_wrap.c: remove debug printf
* MANIFEST:
rename GemPC410/TODO in GemPC410/TODO.txt to be consistant with GemPC430/TODO.txt
* GemPC430/libusb_wrap.c: add missing #endif
* GemPC410/gbpserial.c, GemPC430/libusb_wrap.c, GemPC430/usbserial_mosx.c, common/GCCmds.c, common/GCUtils.c, common/GCdebug.h, common/ifdhandler.c:
remove function name from DEBUG_* calls
* GemPC430/Config.h, GemPC430/GemPC430Utils.c, GemPC430/GemPC430Utils.h, GemPC430/libusb_wrap.c, GemPC430/libusb_wrap.h, common/ifdhandler.c, common/ifdhandler.h, GemPC410/Config.h, GemPC410/GemPC410Utils.c, GemPC410/GemPC410Utils.h, GemPC410/gbpserial.c, GemPC410/gbpserial.h, GemPC410/main.c:
add support of IFDHCreateChannelByName()
* common/GCdebug.h: add __FUNCTION__ in DEBUG_* messages
2004-01-19 Ludovic Rousseau <rousseau@debian>
* GemPC430/libusb_wrap.c:
use asymetric timeout for USB read and write. The reader/card may be
busy when we read (long timeout) but should be OK when we write (short timeout)
2003-12-15 Ludovic Rousseau <rousseau@debian>
* GemPC410/gbpserial.c: use C instead of C++ comments
* GemPC430/libusb_wrap.c:
reset the reader in case of timeout on write (reader freeze?). Thanks to
Patrick Valsecchi for the patch.
2003-10-27 Ludovic Rousseau <rousseau@debian>
* GemPC430/usbserial_mosx.c:
typo: changed PCSCLITE_MAX_RERADERS to PCSCLITE_MAX_READERS. Thanks to Jakob
Schlyter for the patch.
2003-10-22 Ludovic Rousseau <rousseau@debian>
* README: release 0.8.2
* GemPC410/Makefile: create $(DESTDIR) only if does not exist yet
* common/GCUtils.c, common/ifdhandler.c:
Remove support for multi slot. The code was never used and is now broken
under revent pcsc-lite versions.
* common/GCCmds.c, common/GemCore.h:
add support for CARD_T1_ABORT, READER_T1_ABORT, RESYNC, PTS and
INVALID_PROC_BYTE GemCore errors
* GemPC410/Makefile: use $(DESTDIR) instead of $(DESTDIR)/lib/
* check:
Explain how to tell check to look elsewhere than just /usr/ and /usr/local/
2003-09-07 Ludovic Rousseau <rousseau@debian>
* common/GCCmds.c, common/GemCore.h:
add 0x10 and 0xF7 GemCore error codes
2003-09-05 Ludovic Rousseau <rousseau@debian>
* README: release 0.8.1
* GemPC410/gbpserial.c: set serial timeout to 1 minute
2003-09-02 Ludovic Rousseau <rousseau@debian>
* MANIFEST: removed common/pcsclite.h
* GemPC410/gbpserial.c, GemPC430/libusb_wrap.c, GemPC430/usbserial_mosx.c, common/GCUtils.c, common/ifdhandler.c, common/pcscdefines.h:
use PCSCLITE_MAX_READERS instead of PCSCLITE_MAX_CHANNELS (as introduced
in pcsc-lite-1.2.0-rc1)
* common/pcsclite.h: useless file. defines are in pcscdefines.h
* MANIFEST:
move Info.plist from GemPC430/ifd-GemPC430.bundle/Contents/ to GemPC430/
* GemPC430/libusb_wrap.c: use a->b notation instead of a[0].b
* common/GCCmds.c, common/GemCore.h:
add support of GemCore "Parity error during exchange"
* GemPC410/Makefile, GemPC430/Makefile, check:
check uses paths defined in Makefile
* GemPC410/devfs/libgempc410.devfsd.conf:
use $devpath instead of $devname otherwise we have /dev/pcsc/1 -> tts/0
2003-08-20 Ludovic Rousseau <rousseau@debian>
* GemPC430/Info.plist: use new <array></array> style
2003-08-18 Ludovic Rousseau <rousseau@debian>
* GemPC430/usbserial_mosx.c:
remove \n in debug messages since they are not needed
2003-08-14 Ludovic Rousseau <rousseau@debian>
* GemPC410/Makefile, GemPC430/Makefile, common/Makefile:
do not exit with failure if makedepend(1) does not exist
2003-08-08 Ludovic Rousseau <rousseau@debian>
* common/GCCmds.c: Error and not Errror
* common/GCCmds.c:
Add " " around Error message when the SW is not 9000.
* README.410: add a note about DEVICENAME in /etc/reader.conf
2003-08-07 Ludovic Rousseau <rousseau@debian>
* MacOSXbuild/ifd-GemPC430/English.lproj/InfoPlist.strings, MacOSXbuild/ifd-GemPC430/build/intermediates/ifd-GemPC430.pbxindex/symbols0.pbxsymbols, MacOSXbuild/ifd-GemPC430/build/intermediates/ifd-GemPC430.indexed-headers, MacOSXbuild/ifd-GemPC430/build/intermediates/ifd-GemPC430.pbxindex/subclasses.pbxbtree:
These files were not commited in CVS
* GemPC430/Makefile:
do not remove ifd-GemPC430.bundle/Contents/Linux anymore since this
directory is no more created
* GemPC430/Makefile:
do not use a intermediary ifd-GemPC430.bundle directory, copy all needed
file to $DESTDIR directly
* GemPC410/Makefile, GemPC430/Makefile, common/Makefile:
update (again) the build of files in common/
* common/ifdhandler.c:
FDHGetCapabilities() add support of tag TAG_IFD_SLOTS_NUMBER
2003-06-04 Ludovic Rousseau <rousseau@debian>
* GemPC430/Makefile:
remove ifd-GemPC430.bundle/Contents/Linux in distclean
2003-05-03 Ludovic Rousseau <rousseau@debian>
* Makefile: clean/distclean common _after_ GemPC410 and GemPC430
* common/Makefile, GemPC410/Makefile, GemPC430/Makefile:
remove *_stamp in distclean and not clean rules
2003-04-12 Ludovic Rousseau <rousseau@debian>
* README: release 0.8.0
* README.410: small typos
* README.430: small typo
* Makefile: remove config.log in distclean
* GemPC430/Makefile, GemPC430/Info.plist:
library name is versionned (libGemPC430.so.0.8.0)
* GemPC410/Makefile, GemPC430/Makefile:
remove rule to build version for an old pcsc-lite
* GemPC410/Makefile, GemPC430/Makefile:
optimize common rule (use common_stamp to avoid unnecessary recompilation)
* GemPC410/Makefile, GemPC430/Makefile, common/Makefile:
avoid running dep and check rules each time (use stamp files)
2003-04-06 Ludovic Rousseau <rousseau@debian>
* GemPC410/main.c: do all the tests (removed goto)
* common/ifdhandler.h: add prototype for IFDSetEmv()
* GemPC430/Makefile:
remove installation of multiple drivers since alias is supported
* GemPC430/Info.plist: add alias names
2003-03-30 Ludovic Rousseau <rousseau@debian>
* common/GCCmds.c, common/GemCore.h, common/ifdhandler.c:
add support for EMV mode
* common/GCUtils.c:
use function GCGemCoreError() in gemcore_status_processing()
* common/GCCmds.c, common/GCCmds.h: add function GCGemCoreError()
* common/GCCmds.c:
Add support of GemCore 2000 Power Up used by GemPC413
* common/GemCore.h: add 3 new error codes
* GemPC410/main.c: use debug_xxd() and DEBUG_INFO()
2003-03-21 Ludovic Rousseau <rousseau@debian>
* GemPC410/Config.h, GemPC430/Config.h, common/GCdebug.c:
remove debug using syslog (pcscd logs where needed to be)
2003-03-19 Ludovic Rousseau <rousseau@debian>
* common/pcsclite.h: sync with version from pcsc-lite 1.1.2beta3
2003-03-14 Ludovic Rousseau <rousseau@debian>
* GemPC430/libusb_wrap.c: change USB timeout from 10 to 60 seconds
2003-03-13 Ludovic Rousseau <rousseau@debian>
* check:
do not use /usr/local/include by default since cpp will warning on some
systems
2002-11-26 Ludovic Rousseau <rousseau@debian>
* GemPC410/Makefile, GemPC430/Makefile:
do not force use of -O2 -g if CFLAGS is already defined
2002-11-20 Ludovic Rousseau <rousseau@debian>
* README: release 0.7.4
* MANIFEST: add check file
* Makefile:
remove removing of config.log in clean rule since it is unneeded here
* GemPC410/Makefile, GemPC430/Makefile: remove config.log in clean rule
* GemPC410/gbpserial.c:
on arm, powerpc and s390 "char" is unsigned by default. So use an
explicit "signed char". Thank to Gerhard Tonn for looking at Debian
autobuilder logs.
* README.430:
add comment on how to compile the USB driver (install libusb, etc.)
* GemPC430/Makefile, GemPC410/Makefile, Makefile:
add support of the ./check script
* check:
script used to test the correct version of pcsc-lite and libusb
2002-10-18 Ludovic Rousseau <rousseau@debian>
* README: release 0.7.3
* GemPC430/libusb_wrap.c: support hotplug _after_ pcscd is started.
2002-10-15 Ludovic Rousseau <rousseau@debian>
* README: release 0.7.2
* GemPC410/gbpserial.c:
rename variable fd_set to fdset to avoid a name clash with structure
fd_set
* README: release 0.7.1
* GemPC410/gbpserial.c: add #include <sys/types.h>
* GemPC410/main.c: add #include <string.h>
* GemPC410/Makefile, GemPC430/Makefile, common/Makefile:
remove CC=gcc definition
2002-10-13 Ludovic Rousseau <rousseau@debian>
* README: add comment about makedepend(1)
* README: add comment about devfs
* README: release 0.7.0
* MacOSXbuild/ifd-GemPC430/ifd-GemPC430.pbproj/giraud.pbxuser, MacOSXbuild/ifd-GemPC430/ifd-GemPC430.pbproj/project.pbxproj:
new version
* GemPC430/usbserial_mosx.c:
- better stability and multiple reader support
- the productId is now read from the Info.plist. This allow to support
readers like the 432 and 435 without recompiling the library
2002-10-10 Ludovic Rousseau <rousseau@debian>
* GemPC430/usblinux.c, GemPC430/usblinux.h, GemPC430/usbserial_linux.c:
Removed. Replaced by libusb_wrap.c and libusb_wrap.h
* GemPC430/README.Linux: Removed. See README.430 instead
* GemPC430/libusb_wrap.c:
test dev->config != NULL before accessing the structure
* GemPC410/Makefile, GemPC430/Makefile, MANIFEST, common/Makefile:
do not remove but empty .dependencies files in clean and distclean
rules. We need the makedepend(1) command to regenerate these files and
this command comes with XFree which is not installed on console only
systems.
* GemPC410/gbpserial.c:
use select() instead of termios.c_cc[VTIME] = 100 to timeout since it
did not worked under FreeBSD
* README.410:
FreeBSD (4.7-RC2) and OpenBSD (3.1) do not use the same name for the
serial port devices
2002-10-09 Ludovic Rousseau <rousseau@debian>
* GemPC430/Makefile:
add /usr/local/include and /usr/local/lib paths needed when libusb is
installed in /usr/local/
* common/Makefile, GemPC410/Makefile, GemPC430/Makefile:
do not remove .dependencies files since makedepend(1) is not installed
by default.
2002-10-06 Ludovic Rousseau <rousseau@debian>
* GemPC410/Makefile:
avoid GNU options in cp(1) and install(1). Some Unix systems are not GNU.
* GemPC430/libusb_wrap.c: lots of debug
* GemPC430/Makefile: link the driver against libusb
* GemPC410/main.c:
shutdown the driver before exiting even if no card is present
2002-10-03 Ludovic Rousseau <rousseau@debian>
* common/ifdhandler.c: - add lun in log info
- completely remove unused and buggy mutex use (the driver shall be reentrant)
* GemPC410/gbpserial.c:
- add channel information in open device structure to detect a double
usage
- log Lun in low level input/output logs
- use one buffer per reader (instead of a global one) to be reentrant
- optimise the open port in case Host and IFD both at 38400 bauds
already (normal case for a pcscd restart on Linux)
2002-09-27 Ludovic Rousseau <rousseau@debian>
* GemPC430/Makefile, GemPC430/libusb_wrap.c, GemPC430/libusb_wrap.h:
port to libusb library
2002-09-26 Ludovic Rousseau <rousseau@debian>
* common/ifdhandler.c:
start support of multi reader: add mutex to avoid race problems
* GemPC430/Makefile, GemPC430/usbserial_linux.c:
start support for more than one reader with the same library
* GemPC410/Makefile, GemPC410/gbpserial.c:
add support for more than one reader with the same library
* README.430: add a section on USB support under Linux
2002-09-22 Ludovic Rousseau <rousseau@debian>
* GemPC410/TODO.txt:
do not reset the card if the command timeout: DONE, a workaround is
given
* GemPC410/devfs/README, GemPC410/devfs/libgempc410.conf.d, GemPC410/devfs/libgempc410.devfsd.conf, GemPC410/devfs/libgempc410.devices.d, README.410:
add devfsd configuration files in devfs/ and support in README.410
2002-09-18 Ludovic Rousseau <rousseau@debian>
* README.430: add a note about /proc/bus/usb/ directory under Linux
* GemPC410/TODO.txt:
The GCR400 and GCR410 will NOT be supported. So removed from the TODO
list.
* common/GCCmds.c, common/GemCore.h:
add "Incorrect number of arguments" GemCore error message
* GemPC410/GCGBPTransport.c, GemPC410/gbpserial.c, GemPC410/gbpserial.h:
retry the last command if GBP returns a wrong first byte (NAD)
2002-09-08 Ludovic Rousseau <rousseau@debian>
* GemPC410/gbpserial.c:
use the simpler GCCmdSetMode command instead of GCCmdCardStatus
* GemPC410/gbpserial.c:
use a SetSerialSpeed macro to factorise code. Add debug messages even
when the OpenGBP() returns OK to know what init branch was taken.
* GemPC410/GCGBPTransport.c: sequence 0 -> sequence n0
* GemPC410/resetGemPC410.c: PCB of reset command was wrong
2002-09-07 Ludovic Rousseau <rousseau@debian>
* GemPC410/GCGBPTransport.c, GemPC410/gbpserial.c, GemPC410/gbpserial.h:
add support for GemCore Repeat requests
* common/GCdebug.h:
file Config.h not included -> file Config.h NOT included
* GemPC410/Config.h: comment DEBUG_LEVEL_PERIODIC and DEBUG_LEVEL_COMM
* create_distrib.sh:
add test to avoid releasing a version with too much DEBUG on
2002-08-16 Ludovic Rousseau <rousseau@debian>
* GemPC430/Makefile: change libGemPC430 to libGemPC430.so
* common/GCdebug.c: moved from GemPC410
* common/GCdebug.c: removed
* README: release 0.6.5
* GemPC410/Makefile, GemPC430/Makefile:
correct clean rule to take care of _old_pcscd versions
* GemPC430/Makefile: add old_pcscd and libGemPC430_old_pcscd rules
* GemPC410/Makefile: add old_pcscd and libGemPC410_old_pcscd.so rules
* GemPC410/Makefile, GemPC430/Makefile, common/Makefile:
GCdebug.c is now in common/ again
* Makefile: rewrote install rule
* GemPC410/gbpserial.c:
hacked again the initialisation. It did not work since: the
GCCmdConfigureSIOLine will OFTEN fails since the GemCore response is
sent using the NEW speed but GCMakeCommand do not know how to handle
this.
* GemPC410/main.c: removed Log history
* GemPC410/TODO.txt:
"create /dev/pcsc/[1-4]" and "support hot unplug/replug" mark done
"do not reset the card if the command timeout" added
* GemPC410/Config.h, GemPC430/Config.h:
renamed GemPC410 to GemPC41x and GemPC430 to GemPC43x
add DEBUG_SYSLOG #define (undefined by default)
2002-08-13 Ludovic Rousseau <rousseau@debian>
* GemPC410/Makefile, GemPC430/Makefile: remove GCdebug.o in clean rule
* GemPC430/Makefile, GemPC410/Makefile:
install in /usr/local by default
* common/ifdhandler.c: do not debug APDU. This is done by pcscd now
* common/GCdebug.h, common/Makefile:
now use the debug facilities from pcscd
* common/GCCmds.c: repagination of comments
2002-08-12 Ludovic Rousseau <rousseau@debian>
* GemPC410/resetGemPC410.c: add a reset GemCore call
* GemPC410/gbpserial.c: add state name in the OpenGBP() error messages
* GemPC410/Makefile:
do not link the driver with GCdebug.o since we now use the debug
functions of pcscd
* GemPC430/Makefile, GemPC430/usbserial_linux.c:
support for 432 and 435 readers
* GemPC410/Config.h, GemPC430/Config.h:
remove DEBUG_LEVEL_APDU and DEBUG_STDERR since we now use pcscd debug
functions
2002-08-02 Ludovic Rousseau <rousseau@debian>
* GemPC430/usbserial_linux.c: add support for more than one reader
add support for GemPC 435
2002-08-01 Ludovic Rousseau <rousseau@debian>
* GemPC410/Makefile, GemPC430/Makefile:
add an "all" dependency in the "install" target (thanks Joe Phillips)
2002-07-31 Ludovic Rousseau <rousseau@debian>
* GemPC410/Makefile: create destination directory in install rule
* Makefile: add make install target
2002-05-23 Ludovic Rousseau <rousseau@debian>
* README: release 0.6.4
2002-05-21 Ludovic Rousseau <rousseau@debian>
* GemPC410/main.c: exit if powerup fails
* common/GCCmds.c:
perform a powerup without PPS managment is the powerup with PPS
managment failed
* GemPC410/resetGemPC410.c:
minimum size for a GBP bloc is 4 bytes and not 5
* GemPC410/main.c: add an error message
2002-05-19 Ludovic Rousseau <rousseau@debian>
* GemPC430/Makefile, common/Makefile: add -f to rm .dependencies
* GemPC410/gbpserial.c, GemPC410/resetGemPC410.c:
change sys_errlist[errno] to strerror(errno) to be (more) ready for the Hurd
* GemPC410/Makefile: add -f to rm .dependencies
* GemPC430/usbserial_linux.c:
print comm debug messages only if DEBUG_LEVEL_COMM is defined
* GemPC430/Makefile, common/Makefile:
correctly remove .dependencies file
2002-05-09 Ludovic Rousseau <rousseau@debian>
* README: release 0.6.3
* common/ifdhandler.c:
Case1 APDU now uses a (null length) ISO IN instead of ISO OUT
* common/GCUtils.c:
case nlength==0 in ISO_INPUT is used for Case1 APDUs
* README.410: Add info on /dev/pcsc/ for OpenBSD and FreeBSD
2002-04-03 Ludovic Rousseau <rousseau@debian>
* GemPC410/main.c: clear SendPci and RecvPci structures before use
add IFD_PROTOCOL_NOT_SUPPORTED error case
* GemPC410/gbpserial.c:
changed cfsetospeed() and cfsetispeed() to one cfsetspeed()
* GemPC410/Makefile:
libGemPC410.so rule: remove target before creation (needed to avoid
loops under OpenBSD)
2002-04-01 Ludovic Rousseau <rousseau@debian>
* README: release 0.6.2
* MacOSXbuild/ifd-GemPC430/build/intermediates/ifd-GemPC430.indexed-precomps, MacOSXbuild/ifd-GemPC430/build/intermediates/ifd-GemPC430.pbxindex/decls.pbxbtree, MacOSXbuild/ifd-GemPC430/build/intermediates/ifd-GemPC430.pbxindex/files.pbxbtree, MacOSXbuild/ifd-GemPC430/build/intermediates/ifd-GemPC430.pbxindex/imports.pbxbtree, MacOSXbuild/ifd-GemPC430/build/intermediates/ifd-GemPC430.pbxindex/pbxindex.header, MacOSXbuild/ifd-GemPC430/build/intermediates/ifd-GemPC430.pbxindex/refs.pbxbtree, MacOSXbuild/ifd-GemPC430/build/intermediates/ifd-GemPC430.pbxindex/strings.pbxstrings/control, MacOSXbuild/ifd-GemPC430/build/intermediates/ifd-GemPC430.pbxindex/strings.pbxstrings/strings:
new version of build files
* MANIFEST:
add file MacOSXbuild/ifd-GemPC430/build/intermediates/ifd-GemPC430.indexed-headers
* GemPC430/usbserial_mosx.c: Fixes for multi-reader support
* common/GCCmds.c: GCCmdPowerUp() power up with auto PPS management
* common/ifdhandler.c, common/ifdhandler.h:
add case TAG_IFD_SIMULTANEOUS_ACCESS in IFDHGetCapabilities()
* GemPC410/gbpserial.c:
complete reimplementation of serial port configuration
correct treatment when IFD send a 0x04 instead of a 0x24 (NAD_IFD2HOST)
* create_distrib.sh: make distclean defore archiving
* GemPC410/Makefile, GemPC430/Makefile, Makefile, common/Makefile:
add distclean rule in all Makefiles
* MacOSXbuild/ifd-GemPC430/ifd-GemPC430.pbproj/giraud.pbxuser, MacOSXbuild/ifd-GemPC430/ifd-GemPC430.pbproj/project.pbxproj:
new files in CVS
2002-03-27 Ludovic Rousseau <rousseau@debian>
* GemPC410/Makefile, common/Makefile: correct make dep rule
* common/GCCmds.c:
GCCmdSetMode() returns OK when GemCore answers GCORE_UNKNOWN_CMD since
the command is disabled when ROS mode is disabled (native only).
* GemPC410/gbpserial.c: remove debug printf()
changed %02X to 0x%02X
2002-03-11 Ludovic Rousseau <rousseau@debian>
* README: release 0.6.1
* GemPC410/gbpserial.c: changed again the serial port opening
2002-03-07 Ludovic Rousseau <rousseau@debian>
* README: release 0.6.0
* GemPC410/.dependencies: removed
* GemPC410/Makefile: clean rule: remove Makefile.bak .dependencies
* common/Makefile: clean rule: remove tags file
* common/ifdhandler.c: forgot a closing }
* common/ifdhandler.c:
Debug in IFDHSetCapabilities and IFDHICCPresence is now PERIODIC
IFDHTransmitToICC: now manage case 1 APDU (only CLA, INS, P1, P2) as an
outgoing APDU (CLA, INS, P1, P2, 0)
* common/GCdebug.h: add DEBUG_PERIODIC definitions
* common/GCCmds.c: Debug in GCCmdCardStatus is now PERIODIC
* GemPC410/gbpserial.c:
rewrote the serial port BAUDS setting during open()
* GemPC410/Config.h, GemPC430/Config.h: document log levels
add new log level: DEBUG_LEVEL_PERIODIC
2002-03-05 Ludovic Rousseau <rousseau@debian>
* common/GCUtils.c: replaced 2 by the equivalent constant ISO_SIZE_SW
2002-03-03 Ludovic Rousseau <rousseau@debian>
* README: release 0.5.10
* GemPC410/main.c: add hexa values of max length
add a new test (commented by default)
* GemPC410/Makefile:
add -f in 'ln -s' to avoid error if the link already exist
* common/GCUtils.c:
Correct a bug when more than 252 output bytes are expected and less than
that are available (which is the case when the card sends an error)
* common/GCCmds.c: add command options for IFD_CMD_ICC_POWER_UP
disable PPS management (needed by some kinds of Cyberflex Access cards)
* GemPC410/Makefile:
modify install: rule to include release version number in filename,
create symlinks, remove execution right on the .so lib
* GemPC410/main.c: changed default serial port
2002-02-16 Ludovic Rousseau <rousseau@debian>
* README.410: Add a script to create the /dev/pcsc/? links
* GemPC410/.dependencies, GemPC410/Makefile:
change the way compilation dependencies are generated and stored
2001-12-09 Ludovic Rousseau <rousseau@debian>
* GemPC410/GemPC410Utils.c, GemPC430/GemPC430Utils.c, common/GCCmds.c:
guarantee that the os_string is \0 terminated
2001-12-06 Ludovic Rousseau <rousseau@debian>
* GemPC410/resetGemPC410.c, GemPC410/gbpserial.c:
use cfgetospeed()/cfsetospeed() instead of accessing directly the
termios structure
2001-12-04 Ludovic Rousseau <rousseau@debian>
* create_distrib.sh:
support direcory names containing numbers and not just digits (add a \+
to the sed pattern matching)
2001-12-02 Ludovic Rousseau <rousseau@debian>
* common/ifdhandler.c: also log APDU results
* GemPC410/gbpserial.c: changed DEBUG_COMM to DEBUG_LEVEL_COMM
2001-12-01 Ludovic Rousseau <rousseau@debian>
* GemPC430/Config.h:
revert to just "#define foo" instead of "#define foo 1"
* GemPC410/GemPC410Utils.c, GemPC430/GemPC430Utils.c:
avoid a non NULL terminated string on the GemCore version string
2001-11-30 Ludovic Rousseau <rousseau@debian>
* README: release 0.5.9
* MANIFEST: add ProjectBuilder folder for MacOS X
* MacOSXbuild/ifd-GemPC430/build/intermediates/ifd-GemPC430.pbxindex/categories.pbxbtree, MacOSXbuild/ifd-GemPC430/build/intermediates/ifd-GemPC430.pbxindex/decls.pbxbtree, MacOSXbuild/ifd-GemPC430/build/intermediates/ifd-GemPC430.pbxindex/files.pbxbtree, MacOSXbuild/ifd-GemPC430/build/intermediates/ifd-GemPC430.pbxindex/imports.pbxbtree, MacOSXbuild/ifd-GemPC430/build/intermediates/ifd-GemPC430.pbxindex/pbxindex.header, MacOSXbuild/ifd-GemPC430/build/intermediates/ifd-GemPC430.pbxindex/protocols.pbxbtree, MacOSXbuild/ifd-GemPC430/build/intermediates/ifd-GemPC430.pbxindex/refs.pbxbtree, MacOSXbuild/ifd-GemPC430/build/intermediates/ifd-GemPC430.pbxindex/strings.pbxstrings/control, MacOSXbuild/ifd-GemPC430/build/intermediates/ifd-GemPC430.pbxindex/strings.pbxstrings/strings, MacOSXbuild/ifd-GemPC430/build/intermediates/ifd-GemPC430.indexed-precomps:
added ProjectBuilder folder for MacOS X
* common/GCUtils.c: change an IFD_SUCCESS to STATUS_SUCCESS
* GemPC430/usbserial_mosx.c: add #include "GemCore.h"
2001-11-27 Ludovic Rousseau <rousseau@debian>
* README: release 0.5.8
* create_distrib.sh: do not exclude create_distrib.sh
remove temporary directory at exit (including by Ctrl-C)
* MANIFEST: include create_distrib.sh
* create_distrib.sh:
correct first line to be #!/bin/bash instead of #/bin/sh
* MANIFEST, README:
removed GemPC430/main.c since the file does not exist anymore
* GemPC410/GCGBPTransport.h: unsued and then deleted
* create_distrib.sh:
add -p to mkdir to also create parent directory if it does not exist
* MANIFEST: removed deleted files
* README: release 0.5.7
* GemPC430/ifd-GemPC430.pbproj/giraud.pbxuser, GemPC430/ifd-GemPC430.pbproj/project.pbxproj, GemPC430/English.lproj/InfoPlist.strings:
Useless file (not distributed in the archive)
* common/GCUtils.c:
change return test from IFD_SUCCESS to STATUS_SUCCESS
* GemPC410/Makefile: removed automatically generated depends lines
* GemPC430/usblinux.c:
closedir() only if the device is found and usable (write access)
the code crashed with two USB readers
* GemPC410/Makefile, GemPC410/main.c:
Implement ISO 7816 Case 2, 3 and 4 with full length tests
* GemPC410/main.c:
add a pcsc_error() function instead of code duplication
add ReaderTest (Java test applet) APDU for ISO 7816 Case 1
* GemPC410/resetGemPC410.c: print more error messages
* GemPC410/gbpserial.c: "OpenGBP" instead of "OpenUSB"
print error message in case of tcgetattr() fails
* common/GCUtils.c:
add support for IFD_ICC_NOT_PRESENT GemCore error status
2001-11-24 Ludovic Rousseau <rousseau@debian>
* GemPC410/gbpserial.c: prepare to support multi serial reader
* GemPC430/usbserial_mosx.c:
remove \n in log messages and change %08x to 0x%08X
* GemPC430/usbserial_mosx.c: use TRUE & FALSE instead of 1 & 0
* GemPC430/usbserial_linux.c: use USB_TIMEOUT #define instead of 10000
* GemPC430/usbserial_linux.c: prepare support for multi USB readers
* common/GCdebug.h: add DEBUG_COMM3()
* GemPC410/gbpserial.c:
do not limit to 4 readers anymore (accept channel >= 4)
2001-11-23 Ludovic Rousseau <rousseau@debian>
* common/GCCmds.c: add #include <string.h>
2001-11-22 Ludovic Rousseau <rousseau@debian>
* GemPC410/gbpserial.c: removed $Log$
* GemPC410/GCGBPTransport.c, GemPC410/gbpserial.c, GemPC410/gbpserial.h:
differentiate return values of gbpserial.c regarding GBP errors.
* GemPC410/gbpserial.c:
use explain_gbp() to log a descriptive GBP level error message
* MANIFEST: add README.410
* common/Makefile: use OBJS= to avoid repetitions
* README, README.410: README.410 is specific to libGemPC410.so
* GemPC410/GemPC410Utils.c:
log "OS string" at CRITICAL level to always have it the logs
* GemPC410/Makefile:
do not compile directly files in common/ but use 'make -C ../common'
(avoid '../common/[...]' in log messages)
* GemPC430/Makefile:
do not compile directly files in common/ but use "make -C ../common"
(avoid "../common/[...]" in log messages)
* GemPC430/GemPC430Utils.c:
log "OS string" at CRITICAL level to always have it the logs
* GemPC430/TODO.txt: done:
- re-organise sources of ifdhandler.c
- modify ifdhandler.c from GemPC430 to GemPC
- use a more elegant mechanism for log_function
* common/ifdhandler.c: Source file reindentation
* common/ifdhandler.c: Add APDU logging
* GemPC430/GemPC430Utils.c: Get and print the GemCore version
* GemPC410/GemPC410Utils.c: reindent
* GemPC430/usblinux.c:
Print USB device info in 0x%04X format instead of %d
* GemPC430/usblinux.c:
Open /proc/bus/usb/00x/00y in read only mode to find the good device.
When identified the device is re-opened read/write.
* GemPC430/usblinux.c: use DEBUG_CRITICAL3 to be more informative
* common/GCdebug.h: added support for DEBUG_CRITICAL3()
2001-11-15 Ludovic Rousseau <rousseau@debian>
* README: release 0.5.6
* common/pcscdefines.h: define type status_t
* common/ifdhandler.c: add argument &length to GCCmdCardStatus
* common/GemCore.h: define type gcore_t
* common/GCUtils.h:
change return values type from RESPONSECODE to ifd_t
* common/GCUtils.c: reindentation
change return value types from RESPONSECODE to ifd_t
correct return value of functions called
* common/GCTransport.h:
change return values type from RESPONSECODE to status_t
* common/GCCmds.h: change return values type from RESPONSECODE to ifd_t
* common/GCCmds.c:
migration of GCCmdConfigureSIOLine() to GCMakeCommand()
* common/GCCmds.c: change return values type from RESPONSECODE to ifd_t
complete migration from GCSendCommand() to GCMakeCommand()
* GemPC410/resetGemPC410.c: small typo
* GemPC410/main.c: add IFDHTransmitToICC test
print return values (SW)
* GemPC410/gbpserial.c:
removed GCCmdGetOSVersion() and GCCmdSetMode() (moved to GemPC410Utils.c)
add explain_gbp() (only used for GBP debug)
* GemPC410/TODO.txt:
add "create /dev/pcsc/[1-4] at module installation"
* GemPC410/Makefile: add -D_REENTRANT compilation flag
add strip --strip-unneeded on the library
* GemPC410/GemPC410Utils.c:
add GCCmdGetOSVersion() call. result not yet checked.
* GemPC410/GCGBPTransport.c: change return value type from to status_t
* GemPC430/main.c: removed and use ../GemPC410/main.c instead
* GemPC430/usbserial_linux.c, GemPC430/usbserial_mosx.c:
change return value types from to status_t
* GemPC430/usbserial_linux.c, GemPC430/usbserial.h:
change return value types from RESPONSECODE to gcore_t
* GemPC430/usblinux.c:
print the error message instead of the filename when open fail
* GemPC430/Makefile:
use main.c from ../GemPC410/ to avoid code duplication
* GemPC430/GemPC430Utils.h, GemPC430/GemPC430Utils.c:
OpenGemPC430() CloseGemPC430(): change return value type from RESPONSECODE to ifd_t
* GemPC430/GCUSBTransport.c:
change return value type from RESPONSECODE to status_t
2001-11-08 Ludovic Rousseau <rousseau@debian>
* common/GCCmds.c, common/GemCore.h:
Added GemCore error code "Card Absent"
2001-11-07 Ludovic Rousseau <rousseau@debian>
* common/GCCmds.c, common/GCCmds.h, common/GCUtils.h:
removed "All rights reserved" which is a nonsense for an Free Software
* common/GCUtils.c: iLunCheck(): add a test (LunToReaderIndex(Lun) < 0)
* README: release 0.5.5
* GemPC410/GemPC410Utils.c, GemPC410/GemPC410Utils.h: new files
* GemPC430/usbserial_linux.c:
define USBMAX_READERS as (PCSCLITE_MAX_CHANNELS) instead of 4
* GemPC430/usbserial_mosx.c:
use DEBUG_XXD instead of a for (i=0;...) loop in WriteUSB() also
* GemPC410/Makefile: added the install rule
* MANIFEST: added common/{pcsclite.h, winscard.h, wintypes.h}
* GemPC430/Makefile:
remove ifd-GemPC430.bundle/Contents/Linux/libGemPC430.so in rule clean
* GemPC430/Info.plist: new file
* GemPC430/Makefile: renamed ifd-GemPC430 to libGemPC430.so
* common/pcsclite.h, common/winscard.h, common/wintypes.h:
new files nedded to compile the drivers without installing pcscd before.
This solves a chicken and egg problem under Debian
* GemPC430/GemPC430Utils.c, GemPC430/Makefile:
removed the "," in DEBUG_CRITICAL("OpenUSB failed", );
* GemPC410/Makefile: add GemPC410Utils.o to the list of objects
* GemPC410/Config.h:
change OpenGBP, CloseGBP to OpenGemPC410, CloseGemPC410
* common/ifdhandler.c:
changed ../GemPC410/gbpserial.h to ../GemPC410/GemPC410Utils.h
* MANIFEST: added GemPC410/GemPC410Utils.c and GemPC410/GemPC410Utils.h
* GemPC430/GemPC430Utils.c: changed CloseREADER_NAME to CloseUSB
* GemPC430/GemPC430Utils.c: removed a silly #include "GemPC430Utils.c"
* GemPC430/GemPC430Utils.c, GemPC430/GemPC430Utils.h:
removed "All rights reserved." which is in contradiction with COPYING
* GemPC430/usbserial.h:
go back to xxxUSB from xxxGemPC430. This is not the good layer to patch.
* GemPC430/GemPC430Utils.c: change OpenREADER_NAME to OpenUSB
* GemPC430/Config.h:
Changed back to ReadUSB and WriteUSB from a wrong patch to ReadGemPC430
and WriteGemPC430
* README: changed <jl.giraud@free.fr> to <jlgiraud@mac.com>
* common/ifdhandler.c:
renamed ../GemPC430/usbserial.h to ../GemPC430/GemPC430Utils.h
* common/GCdebug.c: changed LOG_DEBUG to LOG_INFO in syslog()
* common/GCUtils.c: add #include "GCTransport.h"
2001-11-06 Ludovic Rousseau <rousseau@debian>
* GemPC430/usbserial_mosx.c:
use DEBUG_XXD instead of a for (i=0;...) loop
* GemPC430/usbserial_mosx.c: Change log_fucntion() to DEBUG_xyz()
* GemPC430/usbserial.h: add #ifndef _USBSERIAL_H_ test
* GemPC430/GemPC430Utils.h: Added argument channel to OpenGemPC430()
* GemPC430/usbserial.h: renamed xxUSB into xxGemPC430
* GemPC430/GemPC430Utils.c: Added argument channel to OpenGemPC430()
* GemPC430/Config.h: renamed xxUSB into xxGemPC430
* common/GCCmds.c: removed GCCmdRestart() which is not used anywhere
2001-10-29 Ludovic Rousseau <rousseau@debian>
* GemPC430/GemPC430Utils.c: change .c into .h
* GemPC430/Makefile, GemPC410/Makefile:
define GEMPC in the 'make dep' rule
2001-10-28 Ludovic Rousseau <rousseau@debian>
* MANIFEST: renamed COPYING to COPYING.BSD or COPYING.GPL
* GemPC430/Makefile: rm -r for ifd-GemPC430.bundle
* common/GCUtils.c: Added a comment for iLunCheck() return value
* common/GCUtils.c: Changed inegality check in iLunCheck()
* README: added history and licences parts
* common/GCCmds.c, common/GCCmds.h, common/GCTransport.h, common/GCUtils.c, common/GCUtils.h, common/GCdebug.c, common/GCdebug.h, common/GemCore.h, common/ifdhandler.c, common/ifdhandler.h, common/pcscdefines.h:
added reference to the double licence BSD/GPL except for ifdhandler.c
and ifdhandler.h which are written by David Corcoran and are under BSD
only.
* common/COPYING, common/COPYING.BSD, common/COPYING.GPL:
renamed COPYING to COPYING.BSD and added COPYING.GPL
* GemPC430/GemPC430Utils.c, GemPC430/GemPC430Utils.h, GemPC430/usblinux.c, GemPC430/usblinux.h, GemPC430/usbserial.h, GemPC430/usbserial_linux.c, GemPC430/usbserial_mosx.c:
Added licence reference
* GemPC410/CmdGemCore.c, GemPC410/CmdGemCore.h:
removed CmdGemCore.h CmdGemCore.c (they are in common/ now)
* GemPC410/COPYING, GemPC410/COPYING.GPL, GemPC410/GCGBPTransport.h, GemPC410/TODO.txt, GemPC410/resetGemPC410.c:
Add GPL text in source files
2001-10-25 Ludovic Rousseau <rousseau@debian>
* MANIFEST, GemPC430/Makefile, GemPC430/main.c, GemPC430/GemPC430Utils.c, GemPC430/GemPC430Utils.h, GemPC430/Config.h, GemPC430/Config.h_do_not_use_anymore, GemPC430/GCUSBTransport.h, common/COPYING, common/GCCmds.c, common/GCCmds.h, common/GCTransport.h, common/GCUtils.c, common/GCUtils.h, common/GCdebug.c, common/GCdebug.h, common/debug.c, common/debug.h, GemPC410/Config.h, GemPC410/GCGBPTransport.c, GemPC410/Makefile, GemPC410/gbpserial.c, GemPC410/gbpserial.h, GemPC410/main.c, common/GemCore.h, common/Makefile, common/ifdhandler.c, Makefile, create_distrib.sh, GemPC430/GCUSBTransport.c, GemPC430/README.Linux, GemPC430/usblinux.c, GemPC430/usbserial.h, GemPC430/usbserial_linux.c:
*** empty log message ***
2001-10-22 Ludovic Rousseau <rousseau@debian>
* GemPC410/COPYING, GemPC410/CmdGemCore.c, GemPC410/CmdGemCore.h, GemPC410/GCGBPTransport.c, GemPC410/GCGBPTransport.h, GemPC410/Makefile, GemPC410/gbpserial.c, GemPC410/gbpserial.h, GemPC410/main.c, GemPC410/resetGemPC410.c, GemPC430/COPYING, GemPC430/Config.h_do_not_use_anymore, GemPC430/English.lproj/InfoPlist.strings, GemPC430/GCUSBTransport.c, GemPC430/GCUSBTransport.h, GemPC430/Makefile, GemPC430/README.Linux, GemPC430/TODO.txt, GemPC430/ifd-GemPC430.pbproj/giraud.pbxuser, GemPC430/ifd-GemPC430.pbproj/project.pbxproj, GemPC430/usblinux.c, GemPC430/usblinux.h, GemPC430/usbserial.h, GemPC430/usbserial_linux.c, GemPC430/usbserial_mosx.c, Makefile, README, common/GemCore.h, common/Makefile, common/debug.c, common/debug.h, common/ifdhandler.c, common/ifdhandler.h, common/pcscdefines.h:
Imported sources
* GemPC410/COPYING, GemPC410/CmdGemCore.c, GemPC410/CmdGemCore.h, GemPC410/GCGBPTransport.c, GemPC410/GCGBPTransport.h, GemPC410/Makefile, GemPC410/gbpserial.c, GemPC410/gbpserial.h, GemPC410/main.c, GemPC410/resetGemPC410.c, GemPC430/COPYING, GemPC430/Config.h_do_not_use_anymore, GemPC430/English.lproj/InfoPlist.strings, GemPC430/GCUSBTransport.c, GemPC430/GCUSBTransport.h, GemPC430/Makefile, GemPC430/README.Linux, GemPC430/TODO.txt, GemPC430/ifd-GemPC430.pbproj/giraud.pbxuser, GemPC430/ifd-GemPC430.pbproj/project.pbxproj, GemPC430/usblinux.c, GemPC430/usblinux.h, GemPC430/usbserial.h, GemPC430/usbserial_linux.c, GemPC430/usbserial_mosx.c, Makefile, README, common/GemCore.h, common/Makefile, common/debug.c, common/debug.h, common/ifdhandler.c, common/ifdhandler.h, common/pcscdefines.h:
New file.
|