2010-04-09 23:57:03 +02:00
|
|
|
#include <nfc/nfc.h>
|
|
|
|
|
|
|
|
#include "nfc-utils.h"
|
|
|
|
|
2010-04-16 18:38:57 +02:00
|
|
|
static const byte_t OddParity[256] = {
|
|
|
|
1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1,
|
|
|
|
0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0,
|
|
|
|
0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0,
|
|
|
|
1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1,
|
|
|
|
0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0,
|
|
|
|
1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1,
|
|
|
|
1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1,
|
|
|
|
0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0,
|
|
|
|
0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0,
|
|
|
|
1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1,
|
|
|
|
1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1,
|
|
|
|
0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0,
|
|
|
|
1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1,
|
|
|
|
0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0,
|
|
|
|
0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0,
|
|
|
|
1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1
|
|
|
|
};
|
|
|
|
|
2010-09-07 19:51:03 +02:00
|
|
|
byte_t
|
|
|
|
oddparity (const byte_t bt)
|
2010-09-06 12:02:19 +02:00
|
|
|
{
|
|
|
|
return OddParity[bt];
|
|
|
|
}
|
|
|
|
|
2010-09-07 19:51:03 +02:00
|
|
|
void
|
|
|
|
oddparity_bytes_ts (const byte_t * pbtData, const size_t szLen, byte_t * pbtPar)
|
2010-09-06 12:02:19 +02:00
|
|
|
{
|
2010-09-07 19:51:03 +02:00
|
|
|
size_t szByteNr;
|
2010-09-06 12:02:19 +02:00
|
|
|
// Calculate the parity bits for the command
|
2010-09-07 19:51:03 +02:00
|
|
|
for (szByteNr = 0; szByteNr < szLen; szByteNr++) {
|
2010-09-06 12:02:19 +02:00
|
|
|
pbtPar[szByteNr] = OddParity[pbtData[szByteNr]];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-07 19:51:03 +02:00
|
|
|
void
|
|
|
|
print_hex (const byte_t * pbtData, const size_t szBytes)
|
2010-04-16 18:38:57 +02:00
|
|
|
{
|
2010-09-07 19:51:03 +02:00
|
|
|
size_t szPos;
|
2010-04-16 18:38:57 +02:00
|
|
|
|
2010-09-07 19:51:03 +02:00
|
|
|
for (szPos = 0; szPos < szBytes; szPos++) {
|
|
|
|
printf ("%02x ", pbtData[szPos]);
|
2010-04-16 18:38:57 +02:00
|
|
|
}
|
2010-09-07 19:51:03 +02:00
|
|
|
printf ("\n");
|
2010-04-16 18:38:57 +02:00
|
|
|
}
|
|
|
|
|
2010-09-07 19:51:03 +02:00
|
|
|
void
|
|
|
|
print_hex_bits (const byte_t * pbtData, const size_t szBits)
|
2010-04-16 18:38:57 +02:00
|
|
|
{
|
|
|
|
uint8_t uRemainder;
|
2010-09-07 19:51:03 +02:00
|
|
|
size_t szPos;
|
|
|
|
size_t szBytes = szBits / 8;
|
2010-04-16 18:38:57 +02:00
|
|
|
|
2010-09-07 19:51:03 +02:00
|
|
|
for (szPos = 0; szPos < szBytes; szPos++) {
|
|
|
|
printf ("%02x ", pbtData[szPos]);
|
2010-04-16 18:38:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
uRemainder = szBits % 8;
|
|
|
|
// Print the rest bits
|
2010-09-07 19:51:03 +02:00
|
|
|
if (uRemainder != 0) {
|
2010-04-16 18:38:57 +02:00
|
|
|
if (uRemainder < 5)
|
2010-09-07 19:51:03 +02:00
|
|
|
printf ("%01x (%d bits)", pbtData[szBytes], uRemainder);
|
2010-04-16 18:38:57 +02:00
|
|
|
else
|
2010-09-07 19:51:03 +02:00
|
|
|
printf ("%02x (%d bits)", pbtData[szBytes], uRemainder);
|
2010-04-16 18:38:57 +02:00
|
|
|
}
|
2010-09-07 19:51:03 +02:00
|
|
|
printf ("\n");
|
2010-04-16 18:38:57 +02:00
|
|
|
}
|
|
|
|
|
2010-09-07 19:51:03 +02:00
|
|
|
void
|
|
|
|
print_hex_par (const byte_t * pbtData, const size_t szBits, const byte_t * pbtDataPar)
|
2010-04-16 18:38:57 +02:00
|
|
|
{
|
|
|
|
uint8_t uRemainder;
|
2010-09-07 19:51:03 +02:00
|
|
|
size_t szPos;
|
|
|
|
size_t szBytes = szBits / 8;
|
|
|
|
|
|
|
|
for (szPos = 0; szPos < szBytes; szPos++) {
|
|
|
|
printf ("%02x", pbtData[szPos]);
|
|
|
|
if (OddParity[pbtData[szPos]] != pbtDataPar[szPos]) {
|
|
|
|
printf ("! ");
|
2010-04-16 18:38:57 +02:00
|
|
|
} else {
|
2010-09-07 19:51:03 +02:00
|
|
|
printf (" ");
|
2010-04-16 18:38:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uRemainder = szBits % 8;
|
|
|
|
// Print the rest bits, these cannot have parity bit
|
2010-09-07 19:51:03 +02:00
|
|
|
if (uRemainder != 0) {
|
2010-04-16 18:38:57 +02:00
|
|
|
if (uRemainder < 5)
|
2010-09-07 19:51:03 +02:00
|
|
|
printf ("%01x (%d bits)", pbtData[szBytes], uRemainder);
|
2010-04-16 18:38:57 +02:00
|
|
|
else
|
2010-09-07 19:51:03 +02:00
|
|
|
printf ("%02x (%d bits)", pbtData[szBytes], uRemainder);
|
2010-04-16 18:38:57 +02:00
|
|
|
}
|
2010-09-07 19:51:03 +02:00
|
|
|
printf ("\n");
|
2010-04-16 18:38:57 +02:00
|
|
|
}
|
|
|
|
|
2010-08-17 17:24:37 +02:00
|
|
|
#define SAK_ISO14443_4_COMPLIANT 0x20
|
|
|
|
#define SAK_ISO18092_COMPLIANT 0x40
|
|
|
|
|
2010-09-07 19:51:03 +02:00
|
|
|
void
|
|
|
|
print_nfc_iso14443a_info (const nfc_iso14443a_info_t nai)
|
2010-04-09 23:57:03 +02:00
|
|
|
{
|
2010-09-07 19:51:03 +02:00
|
|
|
printf (" ATQA (SENS_RES): ");
|
|
|
|
print_hex (nai.abtAtqa, 2);
|
|
|
|
printf (" UID (NFCID%c): ", (nai.abtUid[0] == 0x08 ? '3' : '1'));
|
|
|
|
print_hex (nai.abtUid, nai.szUidLen);
|
|
|
|
printf (" SAK (SEL_RES): ");
|
|
|
|
print_hex (&nai.btSak, 1);
|
2010-04-09 23:57:03 +02:00
|
|
|
if (nai.szAtsLen) {
|
2010-09-07 19:51:03 +02:00
|
|
|
printf (" ATS (ATR): ");
|
|
|
|
print_hex (nai.abtAts, nai.szAtsLen);
|
2010-04-09 23:57:03 +02:00
|
|
|
}
|
2010-09-07 19:51:03 +02:00
|
|
|
if ((nai.btSak & SAK_ISO14443_4_COMPLIANT) || (nai.btSak & SAK_ISO18092_COMPLIANT)) {
|
|
|
|
printf (" Compliant with: ");
|
|
|
|
if (nai.btSak & SAK_ISO14443_4_COMPLIANT)
|
|
|
|
printf ("ISO/IEC 14443-4 ");
|
|
|
|
if (nai.btSak & SAK_ISO18092_COMPLIANT)
|
|
|
|
printf ("ISO/IEC 18092");
|
|
|
|
printf ("\n");
|
2010-08-17 17:24:37 +02:00
|
|
|
}
|
2010-04-09 23:57:03 +02:00
|
|
|
}
|
2010-09-07 19:51:03 +02:00
|
|
|
|
|
|
|
void
|
|
|
|
print_nfc_felica_info (const nfc_felica_info_t nfi)
|
2010-08-18 14:50:40 +02:00
|
|
|
{
|
2010-09-07 19:51:03 +02:00
|
|
|
printf (" ID (NFCID2): ");
|
|
|
|
print_hex (nfi.abtId, 8);
|
|
|
|
printf (" Parameter (PAD): ");
|
|
|
|
print_hex (nfi.abtPad, 8);
|
2010-08-18 14:50:40 +02:00
|
|
|
}
|
|
|
|
|
2010-09-23 19:03:19 +02:00
|
|
|
#define PI_ISO14443_4_SUPPORTED 0x01
|
|
|
|
#define PI_NAD_SUPPORTED 0x01
|
|
|
|
#define PI_CID_SUPPORTED 0x02
|
2010-09-07 19:51:03 +02:00
|
|
|
void
|
|
|
|
print_nfc_iso14443b_info (const nfc_iso14443b_info_t nbi)
|
2010-08-18 14:50:40 +02:00
|
|
|
{
|
2010-09-23 19:03:19 +02:00
|
|
|
const int iMaxFrameSizes[] = { 16, 24, 32, 40, 48, 64, 96, 128, 256 };
|
2010-09-23 18:26:06 +02:00
|
|
|
printf (" PUPI: ");
|
|
|
|
print_hex (nbi.abtPupi, 4);
|
|
|
|
printf (" Application Data: ");
|
|
|
|
print_hex (nbi.abtApplicationData, 4);
|
|
|
|
printf (" Protocol Info: ");
|
|
|
|
print_hex (nbi.abtProtocolInfo, 3);
|
2010-09-23 19:03:19 +02:00
|
|
|
if( (nbi.abtProtocolInfo[1] & 0xf0) <= 0x80 ) {
|
|
|
|
printf ("Maximum frame sizes: %d bytes\n", iMaxFrameSizes[((nbi.abtProtocolInfo[1] & 0xf0) >> 4)]);
|
|
|
|
}
|
|
|
|
if((nbi.abtProtocolInfo[1] & 0x0f) == PI_ISO14443_4_SUPPORTED) {
|
|
|
|
printf ("Protocol types supported: ISO/IEC 14443-4\n");
|
|
|
|
}
|
|
|
|
if((nbi.abtProtocolInfo[2] & (PI_NAD_SUPPORTED|PI_CID_SUPPORTED)) != 0) {
|
|
|
|
printf (" Frame options supported: ");
|
|
|
|
if ((nbi.abtProtocolInfo[2] & PI_NAD_SUPPORTED) != 0) printf ("NAD ");
|
|
|
|
if ((nbi.abtProtocolInfo[2] & PI_CID_SUPPORTED) != 0) printf ("CID ");
|
|
|
|
printf("\n");
|
|
|
|
}
|
2010-08-18 14:50:40 +02:00
|
|
|
}
|
2010-04-16 18:38:57 +02:00
|
|
|
|
2010-07-22 18:13:02 +02:00
|
|
|
/**
|
|
|
|
* @brief Tries to parse arguments to find device descriptions.
|
|
|
|
* @return Returns the list of found device descriptions.
|
|
|
|
*/
|
2010-09-07 19:51:03 +02:00
|
|
|
nfc_device_desc_t *
|
|
|
|
parse_device_desc (int argc, const char *argv[], size_t * szFound)
|
2010-07-22 18:13:02 +02:00
|
|
|
{
|
2010-09-07 19:51:03 +02:00
|
|
|
nfc_device_desc_t *pndd = 0;
|
|
|
|
int arg;
|
2010-08-10 21:50:29 +02:00
|
|
|
*szFound = 0;
|
2010-07-22 18:13:02 +02:00
|
|
|
|
|
|
|
// Get commandline options
|
2010-09-07 19:51:03 +02:00
|
|
|
for (arg = 1; arg < argc; arg++) {
|
2010-07-22 18:13:02 +02:00
|
|
|
|
2010-09-07 19:51:03 +02:00
|
|
|
if (0 == strcmp (argv[arg], "--device")) {
|
2010-07-22 18:13:02 +02:00
|
|
|
|
2010-09-07 19:51:03 +02:00
|
|
|
if (argc > arg + 1) {
|
|
|
|
char buffer[256];
|
2010-07-22 18:13:02 +02:00
|
|
|
|
2010-09-07 19:51:03 +02:00
|
|
|
pndd = malloc (sizeof (nfc_device_desc_t));
|
2010-07-22 18:13:02 +02:00
|
|
|
|
2010-09-07 19:51:03 +02:00
|
|
|
strncpy (buffer, argv[++arg], 256);
|
2010-07-22 18:13:02 +02:00
|
|
|
|
|
|
|
// Driver.
|
2010-09-07 19:51:03 +02:00
|
|
|
pndd->pcDriver = (char *) malloc (256);
|
|
|
|
strcpy (pndd->pcDriver, strtok (buffer, ":"));
|
2010-07-22 18:13:02 +02:00
|
|
|
|
|
|
|
// Port.
|
2010-09-07 19:51:03 +02:00
|
|
|
pndd->pcPort = (char *) malloc (256);
|
|
|
|
strcpy (pndd->pcPort, strtok (NULL, ":"));
|
2010-07-22 18:13:02 +02:00
|
|
|
|
|
|
|
// Speed.
|
2010-09-07 19:51:03 +02:00
|
|
|
sscanf (strtok (NULL, ":"), "%u", &pndd->uiSpeed);
|
2010-07-22 18:13:02 +02:00
|
|
|
|
|
|
|
*szFound = 1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return pndd;
|
|
|
|
}
|