mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2026-05-12 11:18:11 -07:00
ADD: well, starting with a luascript for reading calypso tags, made me remake the 14b raw command on client and device side. Sorry @marshmellow42 , but this one broke your "hf 14b info" implementation. I fixed the "hf 14b read" and the hf search. So not to bad, but still a bit broken. The 14b raw device side is now very similar to 14a raw. Which is good. There is a Standard 14b 0x050008 detection and STmicroelectronic 0x0600 detection on deviceside. This removes a lot of code client side.
I also made the SRi read functions better by combining them. The demodulation / uart code should be the same as last summers changes. The device side code can now be even smaller.
This commit is contained in:
+3
-8
@@ -43,7 +43,6 @@ uint8_t *BigBuf_get_addr(void)
|
||||
return (uint8_t *)BigBuf;
|
||||
}
|
||||
|
||||
|
||||
// get the address of the emulator memory. Allocate part of Bigbuf for it, if not yet done
|
||||
uint8_t *BigBuf_get_EM_addr(void)
|
||||
{
|
||||
@@ -54,12 +53,12 @@ uint8_t *BigBuf_get_EM_addr(void)
|
||||
return emulator_memory;
|
||||
}
|
||||
|
||||
|
||||
// clear ALL of BigBuf
|
||||
void BigBuf_Clear(void)
|
||||
{
|
||||
BigBuf_Clear_ext(true);
|
||||
}
|
||||
|
||||
// clear ALL of BigBuf
|
||||
void BigBuf_Clear_ext(bool verbose)
|
||||
{
|
||||
@@ -86,7 +85,6 @@ uint8_t *BigBuf_malloc(uint16_t chunksize)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// free ALL allocated chunks. The whole BigBuf is available for traces or samples again.
|
||||
void BigBuf_free(void)
|
||||
{
|
||||
@@ -96,7 +94,6 @@ void BigBuf_free(void)
|
||||
// shouldn't this empty BigBuf also?
|
||||
}
|
||||
|
||||
|
||||
// free allocated chunks EXCEPT the emulator memory
|
||||
void BigBuf_free_keep_EM(void)
|
||||
{
|
||||
@@ -254,12 +251,10 @@ int LogTraceHitag(const uint8_t * btBytes, int iBits, int iSamples, uint32_t dwP
|
||||
// Emulator memory
|
||||
uint8_t emlSet(uint8_t *data, uint32_t offset, uint32_t length){
|
||||
uint8_t* mem = BigBuf_get_EM_addr();
|
||||
if(offset+length < CARD_MEMORY_SIZE)
|
||||
{
|
||||
if(offset+length < CARD_MEMORY_SIZE) {
|
||||
memcpy(mem+offset, data, length);
|
||||
return 0;
|
||||
}else
|
||||
{
|
||||
} else {
|
||||
Dbprintf("Error, trying to set memory outside of bounds! %d > %d", (offset+length), CARD_MEMORY_SIZE);
|
||||
return 1;
|
||||
}
|
||||
|
||||
+6
-10
@@ -1008,10 +1008,10 @@ void UsbPacketReceived(uint8_t *packet, int len)
|
||||
case CMD_TEST_HITAGS_TRACES:// Tests every challenge within the given file
|
||||
check_challenges((bool)c->arg[0],(byte_t*)c->d.asBytes);
|
||||
break;
|
||||
case CMD_READ_HITAG_S://Reader for only Hitag S tags, args = key or challenge
|
||||
case CMD_READ_HITAG_S: //Reader for only Hitag S tags, args = key or challenge
|
||||
ReadHitagS((hitag_function)c->arg[0],(hitag_data*)c->d.asBytes);
|
||||
break;
|
||||
case CMD_WR_HITAG_S://writer for Hitag tags args=data to write,page and key or challenge
|
||||
case CMD_WR_HITAG_S: //writer for Hitag tags args=data to write,page and key or challenge
|
||||
WritePageHitagS((hitag_function)c->arg[0],(hitag_data*)c->d.asBytes,c->arg[2]);
|
||||
break;
|
||||
#endif
|
||||
@@ -1059,11 +1059,8 @@ void UsbPacketReceived(uint8_t *packet, int len)
|
||||
#endif
|
||||
|
||||
#ifdef WITH_ISO14443b
|
||||
case CMD_READ_SRI512_TAG:
|
||||
ReadSTMemoryIso14443b(0x0F);
|
||||
break;
|
||||
case CMD_READ_SRIX4K_TAG:
|
||||
ReadSTMemoryIso14443b(0x7F);
|
||||
case CMD_READ_SRI_TAG:
|
||||
ReadSTMemoryIso14443b(c->arg[0]);
|
||||
break;
|
||||
case CMD_SNOOP_ISO_14443B:
|
||||
SnoopIso14443b();
|
||||
@@ -1072,7 +1069,8 @@ void UsbPacketReceived(uint8_t *packet, int len)
|
||||
SimulateIso14443bTag();
|
||||
break;
|
||||
case CMD_ISO_14443B_COMMAND:
|
||||
SendRawCommand14443B(c->arg[0],c->arg[1],c->arg[2],c->d.asBytes);
|
||||
//SendRawCommand14443B(c->arg[0],c->arg[1],c->arg[2],c->d.asBytes);
|
||||
SendRawCommand14443B_Ex(c);
|
||||
break;
|
||||
#endif
|
||||
|
||||
@@ -1086,14 +1084,12 @@ void UsbPacketReceived(uint8_t *packet, int len)
|
||||
case CMD_SIMULATE_TAG_ISO_14443a:
|
||||
SimulateIso14443aTag(c->arg[0], c->arg[1], c->d.asBytes); // ## Simulate iso14443a tag - pass tag type & UID
|
||||
break;
|
||||
|
||||
case CMD_EPA_PACE_COLLECT_NONCE:
|
||||
EPA_PACE_Collect_Nonce(c);
|
||||
break;
|
||||
case CMD_EPA_PACE_REPLAY:
|
||||
EPA_PACE_Replay(c);
|
||||
break;
|
||||
|
||||
case CMD_READER_MIFARE:
|
||||
ReaderMifare(c->arg[0], c->arg[1]);
|
||||
break;
|
||||
|
||||
+2
-2
@@ -28,7 +28,7 @@
|
||||
//#include "des.h"
|
||||
//#include "aes.h"
|
||||
#include "desfire.h"
|
||||
|
||||
#include "iso14443b.h"
|
||||
|
||||
extern const uint8_t OddByteParity[256];
|
||||
extern int rsamples; // = 0;
|
||||
@@ -101,7 +101,7 @@ void EM4xWriteWord(uint32_t Data, uint8_t Address, uint32_t Pwd, uint8_t PwdMode
|
||||
/// iso14443.h
|
||||
void SimulateIso14443bTag(void);
|
||||
void AcquireRawAdcSamplesIso14443b(uint32_t parameter);
|
||||
void ReadSTMemoryIso14443b(uint32_t);
|
||||
void ReadSTMemoryIso14443b(uint8_t numofblocks);
|
||||
void RAMFUNC SnoopIso14443b(void);
|
||||
void SendRawCommand14443B(uint32_t, uint32_t, uint8_t, uint8_t[]);
|
||||
|
||||
|
||||
+11
-10
@@ -523,30 +523,31 @@ int EPA_Setup()
|
||||
uint8_t uid[10];
|
||||
uint8_t pps_response[3];
|
||||
uint8_t pps_response_par[1];
|
||||
iso14a_card_select_t card_select_info;
|
||||
iso14a_card_select_t card_a_info;
|
||||
iso14b_card_select_t card_b_info;
|
||||
|
||||
// first, look for type A cards
|
||||
// power up the field
|
||||
iso14443a_setup(FPGA_HF_ISO14443A_READER_MOD);
|
||||
// select the card
|
||||
return_code = iso14443a_select_card(uid, &card_select_info, NULL, true, 0);
|
||||
return_code = iso14443a_select_card(uid, &card_a_info, NULL, true, 0);
|
||||
if (return_code == 1) {
|
||||
// send the PPS request
|
||||
ReaderTransmit((uint8_t *)pps, sizeof(pps), NULL);
|
||||
return_code = ReaderReceive(pps_response, pps_response_par);
|
||||
if (return_code != 3 || pps_response[0] != 0xD0) {
|
||||
return return_code == 0 ? 2 : return_code;
|
||||
}
|
||||
// send the PPS request
|
||||
ReaderTransmit((uint8_t *)pps, sizeof(pps), NULL);
|
||||
return_code = ReaderReceive(pps_response, pps_response_par);
|
||||
if (return_code != 3 || pps_response[0] != 0xD0) {
|
||||
return return_code == 0 ? 2 : return_code;
|
||||
}
|
||||
Dbprintf("ISO 14443 Type A");
|
||||
iso_type = 'a';
|
||||
return 0;
|
||||
return 0;
|
||||
}
|
||||
|
||||
// if we're here, there is no type A card, so we look for type B
|
||||
// power up the field
|
||||
iso14443b_setup();
|
||||
// select the card
|
||||
return_code = iso14443b_select_card();
|
||||
return_code = iso14443b_select_card( &card_b_info );
|
||||
if (return_code == 1) {
|
||||
Dbprintf("ISO 14443 Type B");
|
||||
iso_type = 'b';
|
||||
|
||||
+14
-17
@@ -17,6 +17,7 @@
|
||||
#include "cmd.h"
|
||||
#include "iso14443crc.h"
|
||||
#include "iso14443a.h"
|
||||
#include "iso14443b.h"
|
||||
#include "crapto1.h"
|
||||
#include "mifareutil.h"
|
||||
#include "BigBuf.h"
|
||||
@@ -187,12 +188,6 @@ void AppendCrc14443a(uint8_t* data, int len)
|
||||
ComputeCrc14443(CRC_14443_A,data,len,data+len,data+len+1);
|
||||
}
|
||||
|
||||
void AppendCrc14443b(uint8_t* data, int len)
|
||||
{
|
||||
ComputeCrc14443(CRC_14443_B,data,len,data+len,data+len+1);
|
||||
}
|
||||
|
||||
|
||||
//=============================================================================
|
||||
// ISO 14443 Type A - Miller decoder
|
||||
//=============================================================================
|
||||
@@ -745,13 +740,12 @@ static void CodeIso14443aAsTagPar(const uint8_t *cmd, uint16_t len, uint8_t *par
|
||||
ToSend[++ToSendMax] = SEC_F;
|
||||
|
||||
// Convert from last byte pos to length
|
||||
ToSendMax++;
|
||||
++ToSendMax;
|
||||
}
|
||||
|
||||
static void CodeIso14443aAsTag(const uint8_t *cmd, uint16_t len)
|
||||
{
|
||||
uint8_t par[MAX_PARITY_SIZE] = {0};
|
||||
|
||||
GetParity(cmd, len, par);
|
||||
CodeIso14443aAsTagPar(cmd, len, par);
|
||||
}
|
||||
@@ -1427,7 +1421,7 @@ void PrepareDelayedTransfer(uint16_t delay)
|
||||
for (i = 0; i < delay; ++i)
|
||||
bitmask |= (0x01 << i);
|
||||
|
||||
ToSend[++ToSendMax] = 0x00;
|
||||
ToSend[++ToSendMax] = 0x00;
|
||||
|
||||
for (i = 0; i < ToSendMax; ++i) {
|
||||
bits_to_shift = ToSend[i] & bitmask;
|
||||
@@ -2052,20 +2046,22 @@ void iso14443a_setup(uint8_t fpga_minor_mode) {
|
||||
|
||||
// Signal field is on with the appropriate LED
|
||||
if (fpga_minor_mode == FPGA_HF_ISO14443A_READER_MOD
|
||||
|| fpga_minor_mode == FPGA_HF_ISO14443A_READER_LISTEN) {
|
||||
|| fpga_minor_mode == FPGA_HF_ISO14443A_READER_LISTEN)
|
||||
LED_D_ON();
|
||||
} else {
|
||||
else
|
||||
LED_D_OFF();
|
||||
}
|
||||
|
||||
FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_ISO14443A | fpga_minor_mode);
|
||||
|
||||
// Start the timer
|
||||
StartCountSspClk();
|
||||
|
||||
DemodReset();
|
||||
UartReset();
|
||||
NextTransferTime = 2*DELAY_ARM2AIR_AS_READER;
|
||||
|
||||
iso14a_set_timeout(10*106); // 10ms default
|
||||
|
||||
// Start the timer
|
||||
StartCountSspClk();
|
||||
|
||||
NextTransferTime = 2*DELAY_ARM2AIR_AS_READER;
|
||||
}
|
||||
|
||||
int iso14_apdu(uint8_t *cmd, uint16_t cmd_len, void *data) {
|
||||
@@ -2119,13 +2115,14 @@ void ReaderIso14443a(UsbCommand *c)
|
||||
if (param & ISO14A_REQUEST_TRIGGER)
|
||||
iso14a_set_trigger(TRUE);
|
||||
|
||||
|
||||
if (param & ISO14A_CONNECT) {
|
||||
iso14443a_setup(FPGA_HF_ISO14443A_READER_LISTEN);
|
||||
if(!(param & ISO14A_NO_SELECT)) {
|
||||
iso14a_card_select_t *card = (iso14a_card_select_t*)buf;
|
||||
arg0 = iso14443a_select_card(NULL,card,NULL, true, 0);
|
||||
cmd_send(CMD_ACK,arg0,card->uidlen,0,buf,sizeof(iso14a_card_select_t));
|
||||
// if it fails, the cmdhf14a.c client quites.. however this one still executes.
|
||||
if ( arg0 == 0 ) return;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+237
-112
File diff suppressed because it is too large
Load Diff
+18
-4
@@ -7,15 +7,29 @@
|
||||
// at your option, any later version. See the LICENSE.txt file for the text of
|
||||
// the license.
|
||||
//-----------------------------------------------------------------------------
|
||||
// Routines to support ISO 14443 type A.
|
||||
// Routines to support ISO 14443 type B.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
#ifndef __ISO14443B_H
|
||||
#define __ISO14443B_H
|
||||
#include "common.h"
|
||||
|
||||
int iso14443b_apdu(uint8_t const *message, size_t message_length, uint8_t *response);
|
||||
#include "proxmark3.h"
|
||||
#include "apps.h"
|
||||
#include "util.h"
|
||||
#include "string.h"
|
||||
#include "iso14443crc.h"
|
||||
#include "common.h"
|
||||
#include "mifare.h"
|
||||
#include "protocols.h"
|
||||
#include "mifareutil.h" // access to global variable: MF_DBGLEVEL
|
||||
|
||||
extern void AppendCrc14443b(uint8_t *data, int len);
|
||||
|
||||
uint8_t iso14443b_apdu(uint8_t const *message, size_t message_length, uint8_t *response);
|
||||
void iso14443b_setup();
|
||||
int iso14443b_select_card();
|
||||
uint8_t iso14443b_select_card(iso14b_card_select_t* card);
|
||||
uint8_t iso14443b_select_card_srx(iso14b_card_select_t* card);
|
||||
|
||||
void SendRawCommand14443B_Ex(UsbCommand *c);
|
||||
|
||||
#endif /* __ISO14443B_H */
|
||||
|
||||
+4
-52
@@ -317,21 +317,7 @@ static int GetIso15693AnswerFromTag(uint8_t *receivedResponse, int maxLen, int *
|
||||
// every other is Q. We just want power, so abs(I) + abs(Q) is
|
||||
// close to what we want.
|
||||
if(getNext) {
|
||||
int8_t r;
|
||||
|
||||
r = ABS(b);
|
||||
|
||||
// if(b < 0) {
|
||||
// r = -b;
|
||||
// } else {
|
||||
// r = b;
|
||||
// }
|
||||
// ABS(prev)
|
||||
if(prev < 0) {
|
||||
r -= prev;
|
||||
} else {
|
||||
r += prev;
|
||||
}
|
||||
int8_t r = ABS(b) + ABS(prev);
|
||||
|
||||
dest[c++] = (uint8_t)r;
|
||||
|
||||
@@ -466,19 +452,7 @@ static int GetIso15693AnswerFromSniff(uint8_t *receivedResponse, int maxLen, int
|
||||
// every other is Q. We just want power, so abs(I) + abs(Q) is
|
||||
// close to what we want.
|
||||
if(getNext) {
|
||||
int8_t r;
|
||||
|
||||
r = ABS(b);
|
||||
// if(b < 0) {
|
||||
// r = -b;
|
||||
// } else {
|
||||
// r = b;
|
||||
// }
|
||||
if(prev < 0) {
|
||||
r -= prev;
|
||||
} else {
|
||||
r += prev;
|
||||
}
|
||||
int8_t r = ABS(b) + ABS(prev);
|
||||
|
||||
dest[c++] = (uint8_t)r;
|
||||
|
||||
@@ -647,18 +621,7 @@ void AcquireRawAdcSamplesIso15693(void)
|
||||
// every other is Q. We just want power, so abs(I) + abs(Q) is
|
||||
// close to what we want.
|
||||
if(getNext) {
|
||||
int8_t r;
|
||||
|
||||
if(b < 0) {
|
||||
r = -b;
|
||||
} else {
|
||||
r = b;
|
||||
}
|
||||
if(prev < 0) {
|
||||
r -= prev;
|
||||
} else {
|
||||
r += prev;
|
||||
}
|
||||
int8_t r = ABS(b) + ABS(prev);
|
||||
|
||||
dest[c++] = (uint8_t)r;
|
||||
|
||||
@@ -712,18 +675,7 @@ void RecordRawAdcSamplesIso15693(void)
|
||||
// every other is Q. We just want power, so abs(I) + abs(Q) is
|
||||
// close to what we want.
|
||||
if(getNext) {
|
||||
int8_t r;
|
||||
|
||||
if(b < 0) {
|
||||
r = -b;
|
||||
} else {
|
||||
r = b;
|
||||
}
|
||||
if(prev < 0) {
|
||||
r -= prev;
|
||||
} else {
|
||||
r += prev;
|
||||
}
|
||||
int8_t r = ABS(b) + ABS(prev);
|
||||
|
||||
dest[c++] = (uint8_t)r;
|
||||
|
||||
|
||||
+7
-18
@@ -734,7 +734,7 @@ int CmdHF14ACmdRaw(const char *cmd) {
|
||||
datalen = (datalen > USB_CMD_DATA_SIZE) ? USB_CMD_DATA_SIZE : datalen;
|
||||
|
||||
c.arg[1] = (datalen & 0xFFFF) | (uint32_t)(numbits << 16);
|
||||
memcpy(c.d.asBytes,data,datalen);
|
||||
memcpy(c.d.asBytes, data, datalen);
|
||||
|
||||
clearCommandBuffer();
|
||||
SendCommand(&c);
|
||||
@@ -749,26 +749,15 @@ int CmdHF14ACmdRaw(const char *cmd) {
|
||||
}
|
||||
|
||||
static void waitCmd(uint8_t iSelect) {
|
||||
uint8_t *recv;
|
||||
UsbCommand resp;
|
||||
char *hexout;
|
||||
uint16_t len = 0;
|
||||
|
||||
if (WaitForResponseTimeout(CMD_ACK,&resp,1500)) {
|
||||
recv = resp.d.asBytes;
|
||||
uint8_t iLen = iSelect ? resp.arg[1] : resp.arg[0];
|
||||
PrintAndLog("received %i octets",iLen);
|
||||
if(!iLen)
|
||||
if (WaitForResponseTimeout(CMD_ACK,&resp,1500)) {
|
||||
len = iSelect ? (resp.arg[1] & 0xffff) : (resp.arg[0] & 0xffff);
|
||||
PrintAndLog("received %i octets", len);
|
||||
if(!len)
|
||||
return;
|
||||
hexout = (char *)malloc(iLen * 3 + 1);
|
||||
if (hexout != NULL) {
|
||||
for (int i = 0; i < iLen; i++) { // data in hex
|
||||
sprintf(&hexout[i * 3], "%02X ", recv[i]);
|
||||
}
|
||||
PrintAndLog("%s", hexout);
|
||||
free(hexout);
|
||||
} else {
|
||||
PrintAndLog("malloc failed your client has low memory?");
|
||||
}
|
||||
PrintAndLog("%s", sprint_hex(resp.d.asBytes, len) );
|
||||
} else {
|
||||
PrintAndLog("timeout while waiting for reply.");
|
||||
}
|
||||
|
||||
+494
-474
File diff suppressed because it is too large
Load Diff
+35
-3
@@ -11,14 +11,46 @@
|
||||
#ifndef CMDHF14B_H__
|
||||
#define CMDHF14B_H__
|
||||
|
||||
#include "iso14443crc.h"
|
||||
#include "proxmark3.h"
|
||||
#include "data.h"
|
||||
#include "graph.h"
|
||||
#include "util.h"
|
||||
#include "ui.h"
|
||||
#include "cmdparser.h"
|
||||
#include "cmdmain.h"
|
||||
#include "cmdhf14a.h"
|
||||
#include "tea.h"
|
||||
#include "cmdhf.h"
|
||||
#include "prng.h"
|
||||
#include "sha1.h"
|
||||
#include "mifare.h" // structs/enum for ISO14B
|
||||
#include "protocols.h" // definitions of ISO14B protocol
|
||||
|
||||
|
||||
int usage_hf_14b_info(void);
|
||||
int usage_hf_14b_reader(void);
|
||||
int usage_hf_14b_raw(void);
|
||||
int usage_hf_14b_snoop(void);
|
||||
int usage_hf_14b_sim(void);
|
||||
int usage_hf_14b_read_srx(void);
|
||||
int usage_hf_14b_write_srx(void);
|
||||
|
||||
int CmdHF14B(const char *Cmd);
|
||||
int CmdHF14BList(const char *Cmd);
|
||||
int CmdHF14BInfo(const char *Cmd);
|
||||
int CmdHF14BSim(const char *Cmd);
|
||||
int CmdHF14BSnoop(const char *Cmd);
|
||||
int CmdSri512Read(const char *Cmd);
|
||||
int CmdSrix4kRead(const char *Cmd);
|
||||
int CmdHF14BWrite( const char *cmd);
|
||||
int HF14BInfo(bool verbose);
|
||||
int CmdHF14BReader(const char *Cmd);
|
||||
|
||||
bool HF14BInfo(bool verbose);
|
||||
bool HF14BReader(bool verbose);
|
||||
int CmdHF14BCmdRaw (const char *Cmd);
|
||||
|
||||
// SRi ST Microelectronics read/write
|
||||
int CmdHF14BReadSri(const char *Cmd);
|
||||
int CmdHF14BWriteSri(const char *Cmd);
|
||||
|
||||
bool waitCmd(bool verbose);
|
||||
#endif
|
||||
|
||||
@@ -101,8 +101,7 @@ typedef struct {
|
||||
|
||||
// For the 13.56 MHz tags
|
||||
#define CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_15693 0x0300
|
||||
#define CMD_READ_SRI512_TAG 0x0303
|
||||
#define CMD_READ_SRIX4K_TAG 0x0304
|
||||
#define CMD_READ_SRI_TAG 0x0303
|
||||
#define CMD_ISO_14443B_COMMAND 0x0305
|
||||
#define CMD_READER_ISO_15693 0x0310
|
||||
#define CMD_SIMTAG_ISO_15693 0x0311
|
||||
|
||||
@@ -67,8 +67,7 @@ local _commands = {
|
||||
|
||||
--// For the 13.56 MHz tags
|
||||
CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_15693 = 0x0300,
|
||||
CMD_READ_SRI512_TAG = 0x0303,
|
||||
CMD_READ_SRIX4K_TAG = 0x0304,
|
||||
CMD_READ_SRI_TAG = 0x0303,
|
||||
CMD_ISO_14443B_COMMAND = 0x0305,
|
||||
CMD_READER_ISO_15693 = 0x0310,
|
||||
CMD_SIMTAG_ISO_15693 = 0x0311,
|
||||
@@ -238,6 +237,6 @@ function Command:getBytes()
|
||||
local data = self.data
|
||||
local cmd = self.cmd
|
||||
local arg1, arg2, arg3 = self.arg1, self.arg2, self.arg3
|
||||
return bin.pack("LLLLH",cmd, arg1, arg2, arg3, data);
|
||||
return bin.pack("LLLLH", cmd, arg1, arg2, arg3, data);
|
||||
end
|
||||
return _commands
|
||||
|
||||
+77
-158
@@ -1,4 +1,3 @@
|
||||
|
||||
--[[
|
||||
This is a library to read 14443b tags. It can be used something like this
|
||||
|
||||
@@ -14,45 +13,57 @@
|
||||
-- Loads the commands-library
|
||||
local cmds = require('commands')
|
||||
local utils = require('utils')
|
||||
local TIMEOUT = 10000 -- Shouldn't take longer than 2 seconds
|
||||
local TIMEOUT = 4000
|
||||
local ISO14B_COMMAND = {
|
||||
ISO14B_CONNECT = 1,
|
||||
ISO14B_DISCONNECT = 2,
|
||||
ISO14B_APDU = 4,
|
||||
ISO14B_RAW = 8,
|
||||
ISO14B_REQUEST_TRIGGER = 0x10,
|
||||
ISO14B_APPEND_CRC = 0x20,
|
||||
ISO14B_SELECT_STD = 0x40,
|
||||
ISO14B_SELECT_SR = 0x80,
|
||||
}
|
||||
|
||||
local function parse1443b_reqb(data)
|
||||
local function parse1443b(data)
|
||||
--[[
|
||||
--]]
|
||||
local pcb = data:sub(1,2)
|
||||
local uid = data:sub(3,10)
|
||||
local pps = data:sub(11,18)
|
||||
local ats = data:sub(19,24)
|
||||
local crc = data:sub(25,29)
|
||||
return { pcb = pcb, uid = uid, pps = pps, ats = ats, crc = crc, cid = '' }
|
||||
end
|
||||
|
||||
Based on this struct :
|
||||
|
||||
typedef struct {
|
||||
byte_t uid[10];
|
||||
byte_t uidlen;
|
||||
byte_t atqb[7];
|
||||
byte_t chipid;
|
||||
byte_t cid;
|
||||
} __attribute__((__packed__)) iso14b_card_select_t;
|
||||
|
||||
local function parse1443b_attrib(data)
|
||||
--[[
|
||||
--]]
|
||||
local attrib = data:sub(1,2)
|
||||
local crc = data:sub(3,7)
|
||||
return { attrib = attrib, crc = crc }
|
||||
|
||||
local count, uid, uidlen, atqb, chipid, cid = bin.unpack('H10CH7CC',data)
|
||||
uid = uid:sub(1,2*uidlen)
|
||||
return { uid = uid, uidlen = uidlen, atqb = atqb, chipid = chipid, cid = cid }
|
||||
end
|
||||
|
||||
|
||||
--- Sends a USBpacket to the device
|
||||
-- @param command - the usb packet to send
|
||||
-- @param readresponse - if set to true, we read the device answer packet
|
||||
-- @param ignoreresponse - if set to true, we don't read the device answer packet
|
||||
-- which is usually recipe for fail. If not sent, the host will wait 2s for a
|
||||
-- response of type CMD_ACK
|
||||
-- @return packet,nil if successfull
|
||||
-- nil, errormessage if unsuccessfull
|
||||
local function sendToDevice(cmd, readresponse)
|
||||
core.clearCommandBuffer()
|
||||
local function sendToDevice(cmd, ignoreresponse)
|
||||
--core.clearCommandBuffer()
|
||||
local bytes = cmd:getBytes()
|
||||
local count,c,arg0,arg1,arg2 = bin.unpack('LLLL',bytes)
|
||||
local err = core.SendCommand(cmd:getBytes())
|
||||
if err then
|
||||
print(err)
|
||||
print('ERROR',err)
|
||||
return nil, err
|
||||
end
|
||||
if readresponse == 0 then return '',nil end
|
||||
if ignoreresponse then return nil,nil end
|
||||
|
||||
local response = core.WaitForResponseTimeout(cmds.CMD_ACK, TIMEOUT)
|
||||
if response == nil then return nil, nil end
|
||||
return response,nil
|
||||
end
|
||||
--- Picks out and displays the data read from a tag
|
||||
@@ -63,133 +74,63 @@ end
|
||||
-- @param usbpacket the data received from the device
|
||||
local function showData(usbpacket)
|
||||
local response = Command.parse(usbpacket)
|
||||
local len = tonumber(response.arg1) * 2
|
||||
local len = response.arg2 * 2
|
||||
local data = string.sub(response.data, 0, len);
|
||||
print("<< ",data)
|
||||
end
|
||||
|
||||
---
|
||||
-- Sends a usbpackage , "hf 14b raw" and the 14bCrc is added to the rawdata before sending
|
||||
local function sendRaw(rawdata, readresponse, addcrc)
|
||||
-- add crc first
|
||||
local rawdata_crc = rawdata
|
||||
if ( addcrc == 1) then
|
||||
rawdata_crc = utils.Crc14b(rawdata)
|
||||
end
|
||||
print(">> ", rawdata_crc)
|
||||
|
||||
local command = Command:new{cmd = cmds.CMD_ISO_14443B_COMMAND,
|
||||
arg1 = #rawdata_crc/2, -- LEN of data, which is half the length of the ASCII-string rawdata
|
||||
arg2 = readresponse, -- read response
|
||||
arg3 = 1, -- leave power on
|
||||
data = rawdata_crc} -- raw data bytes
|
||||
return sendToDevice(command, readresponse)
|
||||
end
|
||||
|
||||
-- This function does a connect and retrieves some info
|
||||
-- @return if successfull: an table containing card info
|
||||
-- @return if unsuccessfull : nil, error
|
||||
local function read14443b(disconnect)
|
||||
|
||||
-- void SendRawCommand14443B(uint32_t datalen, uint32_t recv, uint8_t powerfield, uint8_t data[])
|
||||
local function select1443b()
|
||||
local command, result, info, err, data
|
||||
|
||||
local result, infoReqb, infoAttrib, infoPong, err, resp, len, data
|
||||
local goodReqbResponse = false
|
||||
--REQB
|
||||
local p = 20
|
||||
while p > 0 do
|
||||
-- 05 00 08
|
||||
-- 05
|
||||
-- command (REQB/WUPB)
|
||||
-- 00
|
||||
-- AFI application family identifier ( 00 == all sorts)
|
||||
-- 08 (ie WUPB)
|
||||
-- bit 0-1-2 | N slots ( 0 = 1, 1 = 2, 2 = 4, 3 = 8, 4 == 16)
|
||||
-- bit 3 | (1== WUPB, 0 == REQB)
|
||||
-- bit 4-5-6-7 | AFI application family identifier
|
||||
local result, err = sendRaw('050008', 1, 1)
|
||||
if result then
|
||||
resp = Command.parse( result )
|
||||
len = tonumber(resp.arg1) * 2
|
||||
local data = string.sub(resp.data, 0, len)
|
||||
if ( resp.arg1 == 14 ) then
|
||||
--print ('DATA ::', data)
|
||||
infoReqb, err = parse1443b_reqb(data)
|
||||
--print(infoReqb.pcb, infoReqb.uid, infoReqb.pps, infoReqb.ats, infoReqb.crc)
|
||||
goodReqbResponse = true
|
||||
break -- break while loop. REQB got a good response
|
||||
end
|
||||
end
|
||||
|
||||
-- send some strange 0A/0C
|
||||
-- if ( p < 3) then
|
||||
-- sendRaw('0A', 0, 0)
|
||||
-- sendRaw('0C', 0, 0)
|
||||
-- end
|
||||
|
||||
p = p - 1
|
||||
print('retrying')
|
||||
end
|
||||
|
||||
if goodReqbResponse == false then
|
||||
err = "No response from card"
|
||||
print(err)
|
||||
return nil, err
|
||||
end
|
||||
--SLOT MARKER
|
||||
-- result, err = sendRaw('05', 1, 1)
|
||||
-- if result then
|
||||
-- showData(result)
|
||||
-- resp = Command.parse( result )
|
||||
-- if arg1 == 0 then
|
||||
-- return nil, "iso14443b card - SLOT MARKER failed"
|
||||
-- end
|
||||
-- len = tonumber(resp.arg1) * 2
|
||||
-- data = string.sub(resp.data, 0, len)
|
||||
-- infoAttrib, err = parse1443b_attrib(data)
|
||||
-- print( infoAttrib.attrib, infoAttrib.crc)
|
||||
-- else
|
||||
-- err ="No response from card"
|
||||
-- print(err)
|
||||
-- return nil, err
|
||||
-- end
|
||||
local flags = ISO14B_COMMAND.ISO14B_CONNECT +
|
||||
ISO14B_COMMAND.ISO14B_SELECT_STD
|
||||
|
||||
--ATTRIB
|
||||
local cid = '00'
|
||||
result, err = sendRaw('1D'..infoReqb.uid..'000801'..cid, 1, 1)
|
||||
if disconnect then
|
||||
print('DISCONNECT')
|
||||
flags = flags + ISO14B_COMMAND.ISO14B_DISCONNECT
|
||||
end
|
||||
|
||||
command = Command:new{cmd = cmds.CMD_ISO_14443B_COMMAND, arg1 = flags}
|
||||
local result,err = sendToDevice(command, false)
|
||||
if result then
|
||||
showData(result)
|
||||
resp = Command.parse( result )
|
||||
if resp.arg1 == 0 then
|
||||
return nil, "iso14443b card - ATTRIB failed"
|
||||
local count,cmd,arg0,arg1,arg2 = bin.unpack('LLLL',result)
|
||||
if arg0 == 0 then
|
||||
data = string.sub(result, count)
|
||||
info, err = parse1443b(data)
|
||||
else
|
||||
err = "iso14443b card select failed"
|
||||
end
|
||||
len = tonumber(resp.arg1) * 2
|
||||
data = string.sub(resp.data, 0, len)
|
||||
infoAttrib, err = parse1443b_attrib(data)
|
||||
infoReqb.cid = infoAttrib.attrib:sub(2,2)
|
||||
else
|
||||
err ="No response from card"
|
||||
err = "No response from card"
|
||||
end
|
||||
|
||||
if err then
|
||||
print(err)
|
||||
return nil, err
|
||||
end
|
||||
|
||||
--PING / PONG - Custom Anticollison for Navigo.
|
||||
local ping = ('BA00')
|
||||
result, err = sendRaw(ping, 1, 1)
|
||||
if result then
|
||||
resp = Command.parse( result )
|
||||
if arg1 == 0 then
|
||||
return nil, "iso14443b card - PING/PONG failed"
|
||||
end
|
||||
showData(result)
|
||||
else
|
||||
err = "No response from card"
|
||||
print(err)
|
||||
return nil, err
|
||||
end
|
||||
|
||||
return infoReqb
|
||||
return info
|
||||
end
|
||||
--PING / PONG - Custom Anticollison for Navigo.
|
||||
-- AA / BB ?!?
|
||||
-- local ping = ('BA00')
|
||||
-- result, err = sendRaw(ping, 1, 1)
|
||||
-- if result then
|
||||
-- resp = Command.parse( result )
|
||||
-- if arg1 == 0 then
|
||||
-- return nil, "iso14443b card - PING/PONG failed"
|
||||
-- end
|
||||
-- showData(result)
|
||||
-- else
|
||||
-- err = "No response from card"
|
||||
-- print(err)
|
||||
-- return nil, err
|
||||
-- end
|
||||
|
||||
|
||||
---
|
||||
-- Waits for a mifare card to be placed within the vicinity of the reader.
|
||||
@@ -198,42 +139,20 @@ end
|
||||
local function waitFor14443b()
|
||||
print("Waiting for card... press any key to quit")
|
||||
while not core.ukbhit() do
|
||||
res, err = select1443b()
|
||||
res, err = read14443b(false)
|
||||
if res then return res end
|
||||
if res == nil then return nil, err end
|
||||
-- err means that there was no response from card
|
||||
end
|
||||
return nil, "Aborted by user"
|
||||
end
|
||||
|
||||
local function disconnect(uid)
|
||||
|
||||
local halt = ('50'..uid) -- 50 UID0 UID1 UID2 UID3 CRC1 CRC2
|
||||
result, err = sendRaw(halt, 1, 1)
|
||||
if result then
|
||||
resp = Command.parse( result )
|
||||
showData(result) -- expected answer is 00 CRC1 CRC2
|
||||
else
|
||||
err = "No response from card"
|
||||
print(err)
|
||||
return nil, err
|
||||
end
|
||||
|
||||
-- shutdown raw command / pm3 device.
|
||||
local command = Command:new{ cmd = cmds.CMD_ISO_14443B_COMMAND, arg1 = 0, arg2 = 0, arg3 = 0 }
|
||||
-- We can ignore the response here, no ACK is returned for this command
|
||||
-- Check /armsrc/iso14443b.c, SendRawCommand14443B() for details
|
||||
return sendToDevice(command, 0)
|
||||
end
|
||||
|
||||
local library = {
|
||||
select1443b = select1443b,
|
||||
select = select1443b,
|
||||
parse1443b = parse1443b,
|
||||
read1443b = read14443b,
|
||||
waitFor14443b = waitFor14443b,
|
||||
sendToDevice = sendToDevice,
|
||||
disconnect = disconnect,
|
||||
sendRaw = sendRaw,
|
||||
showData = showData,
|
||||
ISO14B_COMMAND = ISO14B_COMMAND,
|
||||
}
|
||||
|
||||
return library
|
||||
@@ -31,5 +31,4 @@ typedef unsigned char byte_t;
|
||||
#endif
|
||||
|
||||
#define RAMFUNC __attribute((long_call, section(".ramfunc")))
|
||||
|
||||
#endif
|
||||
|
||||
@@ -37,4 +37,29 @@ typedef enum ISO14A_COMMAND {
|
||||
ISO14A_TOPAZMODE = (1 << 8)
|
||||
} iso14a_command_t;
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// ISO 14443B
|
||||
//-----------------------------------------------------------------------------
|
||||
typedef struct {
|
||||
byte_t uid[10];
|
||||
byte_t uidlen;
|
||||
byte_t atqb[7];
|
||||
byte_t chipid;
|
||||
byte_t cid;
|
||||
} __attribute__((__packed__)) iso14b_card_select_t;
|
||||
|
||||
|
||||
typedef enum ISO14B_COMMAND {
|
||||
ISO14B_CONNECT = (1 << 0),
|
||||
ISO14B_DISCONNECT = (1 << 1),
|
||||
ISO14B_APDU = (1 << 2),
|
||||
ISO14B_RAW = (1 << 3),
|
||||
ISO14B_REQUEST_TRIGGER = (1 << 4),
|
||||
ISO14B_APPEND_CRC = (1 << 5),
|
||||
ISO14B_SELECT_STD = (1 << 6),
|
||||
ISO14B_SELECT_SR = (1 << 7)
|
||||
} iso14b_command_t;
|
||||
|
||||
|
||||
#endif // _MIFARE_H_
|
||||
|
||||
+1
-2
@@ -109,8 +109,7 @@ typedef struct{
|
||||
|
||||
// For the 13.56 MHz tags
|
||||
#define CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_15693 0x0300
|
||||
#define CMD_READ_SRI512_TAG 0x0303
|
||||
#define CMD_READ_SRIX4K_TAG 0x0304
|
||||
#define CMD_READ_SRI_TAG 0x0303
|
||||
#define CMD_ISO_14443B_COMMAND 0x0305
|
||||
#define CMD_READER_ISO_15693 0x0310
|
||||
#define CMD_SIMTAG_ISO_15693 0x0311
|
||||
|
||||
Reference in New Issue
Block a user