Add partial support (list) for ISO14443B-3 ST SRx & ASK CTx cards

This commit is contained in:
Philippe Teuwen 2011-05-06 19:11:03 +00:00
parent 805d738b24
commit d834860965
6 changed files with 137 additions and 13 deletions

View file

@ -199,6 +199,34 @@ main (int argc, const char *argv[])
} }
} }
nm.nmt = NMT_ISO14443B3SR;
nm.nbr = NBR_106;
// List ISO14443B-3 ST SRx family targets
if (nfc_initiator_list_passive_targets (pnd, nm, ant, MAX_TARGET_COUNT, &szTargetFound)) {
size_t n;
if (verbose || (szTargetFound > 0)) {
printf ("%d ISO14443B-3 ST SRx passive target(s) found%s\n", (int) szTargetFound, (szTargetFound == 0) ? ".\n" : ":");
}
for (n = 0; n < szTargetFound; n++) {
print_nfc_iso14443b3sr_info (ant[n].nti.nsi, verbose);
printf ("\n");
}
}
nm.nmt = NMT_ISO14443B3CT;
nm.nbr = NBR_106;
// List ISO14443B-3 ASK CTx family targets
if (nfc_initiator_list_passive_targets (pnd, nm, ant, MAX_TARGET_COUNT, &szTargetFound)) {
size_t n;
if (verbose || (szTargetFound > 0)) {
printf ("%d ISO14443B-3 ASK CTx passive target(s) found%s\n", (int) szTargetFound, (szTargetFound == 0) ? ".\n" : ":");
}
for (n = 0; n < szTargetFound; n++) {
print_nfc_iso14443b3ct_info (ant[n].nti.nci, verbose);
printf ("\n");
}
}
nm.nmt = NMT_JEWEL; nm.nmt = NMT_JEWEL;
nm.nbr = NBR_106; nm.nbr = NBR_106;
// List Jewel targets // List Jewel targets

View file

@ -631,6 +631,20 @@ print_nfc_iso14443bi_info (const nfc_iso14443bi_info_t nii, bool verbose)
} }
} }
void
print_nfc_iso14443b3sr_info (const nfc_iso14443b3sr_info_t nsi, bool verbose)
{
printf (" UID: ");
print_hex (nsi.abtUID, 8);
}
void
print_nfc_iso14443b3ct_info (const nfc_iso14443b3ct_info_t nci, bool verbose)
{
printf (" Data: ");
print_hex (nci.abtData, nci.szDataLen);
}
void void
print_nfc_dep_info (const nfc_dep_info_t ndi, bool verbose) print_nfc_dep_info (const nfc_dep_info_t ndi, bool verbose)
{ {
@ -740,6 +754,14 @@ print_nfc_target (const nfc_target_t nt, bool verbose)
printf ("ISO/IEC 14443-4B' (%s) target:\n", str_nfc_baud_rate(nt.nm.nbr)); printf ("ISO/IEC 14443-4B' (%s) target:\n", str_nfc_baud_rate(nt.nm.nbr));
print_nfc_iso14443bi_info (nt.nti.nii, verbose); print_nfc_iso14443bi_info (nt.nti.nii, verbose);
break; break;
case NMT_ISO14443B3SR:
printf ("ISO/IEC 14443-3B ST SRx (%s) target:\n", str_nfc_baud_rate(nt.nm.nbr));
print_nfc_iso14443b3sr_info (nt.nti.nsi, verbose);
break;
case NMT_ISO14443B3CT:
printf ("ISO/IEC 14443-3B ASK CTx (%s) target:\n", str_nfc_baud_rate(nt.nm.nbr));
print_nfc_iso14443b3ct_info (nt.nti.nci, verbose);
break;
case NMT_DEP: case NMT_DEP:
printf ("D.E.P. (%s) target:\n", str_nfc_baud_rate(nt.nm.nbr)); printf ("D.E.P. (%s) target:\n", str_nfc_baud_rate(nt.nm.nbr));
print_nfc_dep_info (nt.nti.ndi, verbose); print_nfc_dep_info (nt.nti.ndi, verbose);

View file

@ -89,6 +89,8 @@ void print_hex_par (const byte_t * pbtData, const size_t szBits, const byte_t
void print_nfc_iso14443a_info (const nfc_iso14443a_info_t nai, bool verbose); void print_nfc_iso14443a_info (const nfc_iso14443a_info_t nai, bool verbose);
void print_nfc_iso14443b_info (const nfc_iso14443b_info_t nbi, bool verbose); void print_nfc_iso14443b_info (const nfc_iso14443b_info_t nbi, bool verbose);
void print_nfc_iso14443bi_info (const nfc_iso14443bi_info_t nii, bool verbose); void print_nfc_iso14443bi_info (const nfc_iso14443bi_info_t nii, bool verbose);
void print_nfc_iso14443b3sr_info (const nfc_iso14443b3sr_info_t nsi, bool verbose);
void print_nfc_iso14443b3ct_info (const nfc_iso14443b3ct_info_t nci, bool verbose);
void print_nfc_felica_info (const nfc_felica_info_t nfi, bool verbose); void print_nfc_felica_info (const nfc_felica_info_t nfi, bool verbose);
void print_nfc_jewel_info (const nfc_jewel_info_t nji, bool verbose); void print_nfc_jewel_info (const nfc_jewel_info_t nji, bool verbose);
void print_nfc_dep_info (const nfc_dep_info_t ndi, bool verbose); void print_nfc_dep_info (const nfc_dep_info_t ndi, bool verbose);

View file

@ -243,6 +243,23 @@ typedef struct {
byte_t abtAtr[33]; byte_t abtAtr[33];
} nfc_iso14443bi_info_t; } nfc_iso14443bi_info_t;
/**
* @struct nfc_iso14443b3sr_info_t
* @brief NFC ISO14443-3B ST SRx tag information
*/
typedef struct {
byte_t abtUID[8];
} nfc_iso14443b3sr_info_t;
/**
* @struct nfc_iso14443b3ct_info_t
* @brief NFC ISO14443-3B ASK CTx tag information
*/
typedef struct {
byte_t abtData[256]; // No idea what data to expect...
size_t szDataLen;
} nfc_iso14443b3ct_info_t;
/** /**
* @struct nfc_jewel_info_t * @struct nfc_jewel_info_t
* @brief NFC Jewel tag information * @brief NFC Jewel tag information
@ -261,6 +278,8 @@ typedef union {
nfc_felica_info_t nfi; nfc_felica_info_t nfi;
nfc_iso14443b_info_t nbi; nfc_iso14443b_info_t nbi;
nfc_iso14443bi_info_t nii; nfc_iso14443bi_info_t nii;
nfc_iso14443b3sr_info_t nsi;
nfc_iso14443b3ct_info_t nci;
nfc_jewel_info_t nji; nfc_jewel_info_t nji;
nfc_dep_info_t ndi; nfc_dep_info_t ndi;
} nfc_target_info_t; } nfc_target_info_t;
@ -283,10 +302,12 @@ typedef enum {
*/ */
typedef enum { typedef enum {
NMT_ISO14443A, NMT_ISO14443A,
NMT_JEWEL,
NMT_ISO14443B, NMT_ISO14443B,
NMT_ISO14443BI, // pre-ISO14443B aka ISO/IEC 14443 B' or Type B' NMT_ISO14443BI, // pre-ISO14443B aka ISO/IEC 14443 B' or Type B'
NMT_ISO14443B3SR, // ISO14443-3B ST SRx
NMT_ISO14443B3CT, // ISO14443-3B ASK CTx
NMT_FELICA, NMT_FELICA,
NMT_JEWEL,
NMT_DEP, NMT_DEP,
} nfc_modulation_type_t; } nfc_modulation_type_t;

View file

@ -383,12 +383,25 @@ pn53x_decode_target_data (const byte_t * pbtRawData, size_t szRawData, pn53x_typ
pnti->nii.btConfig = *(pbtRawData++); pnti->nii.btConfig = *(pbtRawData++);
if (pnti->nii.btConfig & 0x40) { if (pnti->nii.btConfig & 0x40) {
memcpy (pnti->nii.abtAtr, pbtRawData, szRawData - 8); memcpy (pnti->nii.abtAtr, pbtRawData, szRawData - 8);
pbtRawData += szRawData - 6; pbtRawData += szRawData - 8;
pnti->nii.szAtrLen = szRawData - 8; pnti->nii.szAtrLen = szRawData - 8;
} }
} }
break; break;
case NMT_ISO14443B3SR:
// Store the UID
memcpy (pnti->nsi.abtUID, pbtRawData, 8);
pbtRawData += 8;
break;
case NMT_ISO14443B3CT:
// Store the unknown data as one blob for now
memcpy (pnti->nci.abtData, pbtRawData, szRawData);
pbtRawData += szRawData;
pnti->nci.szDataLen = szRawData;
break;
case NMT_FELICA: case NMT_FELICA:
// We skip the first byte: its the target number (Tg) // We skip the first byte: its the target number (Tg)
pbtRawData++; pbtRawData++;
@ -639,8 +652,6 @@ pn53x_configure (nfc_device_t * pnd, const nfc_device_option_t ndo, const bool b
return false; return false;
} }
// TODO not yet sufficient to setup TypeB, some settings are missing here...
return true; return true;
break; break;
} }
@ -683,10 +694,8 @@ pn53x_initiator_select_passive_target (nfc_device_t * pnd,
byte_t abtTargetsData[PN53x_EXTENDED_FRAME__DATA_MAX_LEN]; byte_t abtTargetsData[PN53x_EXTENDED_FRAME__DATA_MAX_LEN];
size_t szTargetsData = sizeof(abtTargetsData); size_t szTargetsData = sizeof(abtTargetsData);
if (nm.nmt == NMT_ISO14443BI) { if (nm.nmt == NMT_ISO14443BI || nm.nmt == NMT_ISO14443B3SR || nm.nmt == NMT_ISO14443B3CT) {
// No native support in InListPassiveTarget so we do discovery by hand // No native support in InListPassiveTarget so we do discovery by hand
byte_t abtAttrib[6];
size_t szAttrib = sizeof(abtAttrib);
if (!nfc_configure (pnd, NDO_FORCE_ISO14443_B, true)) { if (!nfc_configure (pnd, NDO_FORCE_ISO14443_B, true)) {
return false; return false;
} }
@ -697,6 +706,23 @@ pn53x_initiator_select_passive_target (nfc_device_t * pnd,
return false; return false;
} }
pnd->bEasyFraming = false; pnd->bEasyFraming = false;
if (nm.nmt == NMT_ISO14443B3SR) {
// Some work to do before getting the UID...
byte_t abtInitiate[]="\x06\x00";
size_t szInitiateLen = 2;
byte_t abtSelect[]="\x0e\x00";
size_t szSelectLen = 2;
byte_t abtRx[1];
size_t szRxLen = 1;
// Getting random Chip_ID
if (!pn53x_initiator_transceive_bytes (pnd, abtInitiate, szInitiateLen, abtRx, &szRxLen)) {
return false;
}
abtSelect[1] = abtRx[0];
if (!pn53x_initiator_transceive_bytes (pnd, abtSelect, szSelectLen, abtRx, &szRxLen)) {
return false;
}
}
if (!pn53x_initiator_transceive_bytes (pnd, pbtInitData, szInitData, abtTargetsData, &szTargetsData)) { if (!pn53x_initiator_transceive_bytes (pnd, pbtInitData, szInitData, abtTargetsData, &szTargetsData)) {
return false; return false;
} }
@ -707,10 +733,15 @@ pn53x_initiator_select_passive_target (nfc_device_t * pnd,
return false; return false;
} }
} }
memcpy(abtAttrib, abtTargetsData, szAttrib); if (nm.nmt == NMT_ISO14443BI) {
abtAttrib[1] = 0x0f; // ATTRIB // Select tag
if (!pn53x_initiator_transceive_bytes (pnd, abtAttrib, szAttrib, NULL, NULL)) { byte_t abtAttrib[6];
return false; size_t szAttribLen = sizeof(abtAttrib);
memcpy(abtAttrib, abtTargetsData, szAttribLen);
abtAttrib[1] = 0x0f; // ATTRIB
if (!pn53x_initiator_transceive_bytes (pnd, abtAttrib, szAttribLen, NULL, NULL)) {
return false;
}
} }
return true; return true;
} // else: } // else:
@ -1137,6 +1168,8 @@ pn53x_target_init (nfc_device_t * pnd, nfc_target_t * pnt, byte_t * pbtRx, size_
break; break;
case NMT_ISO14443B: case NMT_ISO14443B:
case NMT_ISO14443BI: case NMT_ISO14443BI:
case NMT_ISO14443B3SR:
case NMT_ISO14443B3CT:
case NMT_JEWEL: case NMT_JEWEL:
pnd->iLastError = DENOTSUP; pnd->iLastError = DENOTSUP;
return false; return false;
@ -1237,6 +1270,8 @@ pn53x_target_init (nfc_device_t * pnd, nfc_target_t * pnt, byte_t * pbtRx, size_
break; break;
case NMT_ISO14443B: case NMT_ISO14443B:
case NMT_ISO14443BI: case NMT_ISO14443BI:
case NMT_ISO14443B3SR:
case NMT_ISO14443B3CT:
case NMT_JEWEL: case NMT_JEWEL:
pnd->iLastError = DENOTSUP; pnd->iLastError = DENOTSUP;
return false; return false;
@ -2017,6 +2052,8 @@ pn53x_nm_to_pm(const nfc_modulation_t nm)
break; break;
case NMT_ISO14443BI: case NMT_ISO14443BI:
case NMT_ISO14443B3SR:
case NMT_ISO14443B3CT:
case NMT_DEP: case NMT_DEP:
// Nothing to do... // Nothing to do...
break; break;
@ -2117,6 +2154,8 @@ pn53x_nm_to_ptt(const nfc_modulation_t nm)
break; break;
case NMT_ISO14443BI: case NMT_ISO14443BI:
case NMT_ISO14443B3SR:
case NMT_ISO14443B3CT:
case NMT_DEP: case NMT_DEP:
// Nothing to do... // Nothing to do...
break; break;

View file

@ -164,7 +164,7 @@ nfc_pick_device (void)
if (!ndr->probe (pndd, 1, &szN)) { if (!ndr->probe (pndd, 1, &szN)) {
ERR ("%s probe failed", ndr->name); ERR ("%s probe failed", ndr->name);
szN = 0; szN = 0;
} }
if (szN == 0) { if (szN == 0) {
@ -386,6 +386,18 @@ nfc_initiator_list_passive_targets (nfc_device_t * pnd,
szInitDataLen = 4; szInitDataLen = 4;
} }
break; break;
case NMT_ISO14443B3SR: {
// Get_UID
pbtInitData = (byte_t *) "\x0b";
szInitDataLen = 1;
}
break;
case NMT_ISO14443B3CT: {
// REQT
pbtInitData = (byte_t *) "\x10";
szInitDataLen = 1;
}
break;
case NMT_FELICA: { case NMT_FELICA: {
// polling payload must be present (see ISO/IEC 18092 11.2.2.5) // polling payload must be present (see ISO/IEC 18092 11.2.2.5)
pbtInitData = (byte_t *) "\x00\xff\xff\x01\x00"; pbtInitData = (byte_t *) "\x00\xff\xff\x01\x00";
@ -407,7 +419,7 @@ nfc_initiator_list_passive_targets (nfc_device_t * pnd,
szTargetFound++; szTargetFound++;
// deselect has no effect on FeliCa and Jewel cards so we'll stop after one... // deselect has no effect on FeliCa and Jewel cards so we'll stop after one...
// ISO/IEC 14443 B' cards are polled at 100% probability so it's not possible to detect correctly two cards at the same time // ISO/IEC 14443 B' cards are polled at 100% probability so it's not possible to detect correctly two cards at the same time
if ((nm.nmt == NMT_FELICA) || (nm.nmt == NMT_JEWEL) || (nm.nmt == NMT_ISO14443BI)) { if ((nm.nmt == NMT_FELICA) || (nm.nmt == NMT_JEWEL) || (nm.nmt == NMT_ISO14443BI) || (nm.nmt == NMT_ISO14443B3SR) || (nm.nmt == NMT_ISO14443B3CT)) {
break; break;
} }
} }