]>
cvs.zerfleddert.de Git - proxmark3-svn/blob - client/util.c
   1 //----------------------------------------------------------------------------- 
   2 // Copyright (C) 2010 iZsh <izsh at fail0verflow.com> 
   4 // This code is licensed to you under the terms of the GNU GPL, version 2 or, 
   5 // at your option, any later version. See the LICENSE.txt file for the text of 
   7 //----------------------------------------------------------------------------- 
   9 //----------------------------------------------------------------------------- 
  12 #define MAX_BIN_BREAK_LENGTH   (3072+384+1) 
  16 #include <sys/ioctl.h>  
  23   static struct termios Otty
, Ntty
; 
  29   Ntty
.c_iflag          
= 0;       /* input mode                */ 
  30   Ntty
.c_oflag          
= 0;       /* output mode               */ 
  31   Ntty
.c_lflag         
&= ~ICANON
; /* raw mode */ 
  32   Ntty
.c_cc
[VMIN
]       = CMIN
;    /* minimum time to wait      */ 
  33   Ntty
.c_cc
[VTIME
]      = CTIME
;   /* minimum characters to wait for */ 
  35   if (0 == (error 
= tcsetattr(0, TCSANOW
, &Ntty
))) { 
  36     error 
+= ioctl(0, FIONREAD
, &cnt
); 
  37     error 
+= tcsetattr(0, TCSANOW
, &Otty
); 
  40   return ( error 
== 0 ? cnt 
: -1 ); 
  50 // log files functions 
  51 void AddLogLine(char *file
, char *extData
, char *c
) { 
  53     char filename
[FILE_PATH_SIZE
] = {0x00}; 
  57     if (len 
> FILE_PATH_SIZE
) len 
= FILE_PATH_SIZE
; 
  58     memcpy(filename
, file
, len
); 
  60         fLog 
= fopen(filename
, "a"); 
  62                 printf("Could not append log file %s", filename
); 
  66         fprintf(fLog
, "%s", extData
); 
  67         fprintf(fLog
, "%s\n", c
); 
  71 void AddLogHex(char *fileName
, char *extData
, const uint8_t * data
, const size_t len
){ 
  72         AddLogLine(fileName
, extData
, sprint_hex(data
, len
)); 
  75 void AddLogUint64(char *fileName
, char *extData
, const uint64_t data
) { 
  77         sprintf(buf
, "%x%x", (unsigned int)((data 
& 0xFFFFFFFF00000000) >> 32), (unsigned int)(data 
& 0xFFFFFFFF)); 
  78         AddLogLine(fileName
, extData
, buf
); 
  81 void AddLogCurrentDT(char *fileName
) { 
  86         curTime 
= gmtime(&now
); 
  88         strftime (buff
, sizeof(buff
), "%Y-%m-%d %H:%M:%S", curTime
); 
  89         AddLogLine(fileName
, "\nanticollision: ", buff
); 
  92 void FillFileNameByUID(char *fileName
, uint8_t * uid
, char *ext
, int byteCount
) { 
  93         char * fnameptr 
= fileName
; 
  94         memset(fileName
, 0x00, 200); 
  96         for (int j 
= 0; j 
< byteCount
; j
++, fnameptr 
+= 2) 
  97                 sprintf(fnameptr
, "%02x", uid
[j
]);  
  98         sprintf(fnameptr
, "%s", ext
);  
 101 // printing and converting functions 
 103 void print_hex(const uint8_t * data
, const size_t len
) 
 107         for (i
=0; i 
< len
; i
++) 
 108                 printf("%02x ", data
[i
]); 
 113 char *sprint_hex(const uint8_t *data
, const size_t len
) { 
 115         int maxLen 
= ( len 
> 1024/3) ? 1024/3 : len
; 
 116         static char buf
[1024]; 
 117         memset(buf
, 0x00, 1024); 
 121         for (i
=0; i 
< maxLen
; ++i
, tmp 
+= 3) 
 122                 sprintf(tmp
, "%02x ", data
[i
]); 
 127 char *sprint_bin_break(const uint8_t *data
, const size_t len
, const uint8_t breaks
) { 
 128         // make sure we don't go beyond our char array memory 
 131                 max_len 
= ( len 
> MAX_BIN_BREAK_LENGTH 
) ? MAX_BIN_BREAK_LENGTH 
: len
; 
 133                 max_len 
= ( len
+(len
/breaks
) > MAX_BIN_BREAK_LENGTH 
) ? MAX_BIN_BREAK_LENGTH 
: len
+(len
/breaks
); 
 135         static char buf
[MAX_BIN_BREAK_LENGTH
]; // 3072 + end of line characters if broken at 8 bits 
 137         memset(buf
, 0x00, sizeof(buf
)); 
 141         // loop through the out_index to make sure we don't go too far 
 142         for (size_t out_index
=0; out_index 
< max_len
; out_index
++) { 
 144                 sprintf(tmp
++, "%u", data
[in_index
]); 
 145                 // check if a line break is needed 
 146                 if ( (breaks 
> 0) && !((in_index
+1) % breaks
) && (out_index
+1 != max_len
) ) { 
 147                         // increment and print line break 
 149                         sprintf(tmp
++, "%s","\n"); 
 157 char *sprint_bin(const uint8_t *data
, const size_t len
) { 
 158         return sprint_bin_break(data
, len
, 0); 
 160 void num_to_bytes(uint64_t n
, size_t len
, uint8_t* dest
) 
 163                 dest
[len
] = (uint8_t) n
; 
 168 uint64_t bytes_to_num(uint8_t* src
, size_t len
) 
 173                 num 
= (num 
<< 8) | (*src
); 
 179 void num_to_bytebits(uint64_t   n
, size_t len
, uint8_t *dest
) { 
 186 // aa,bb,cc,dd,ee,ff,gg,hh, ii,jj,kk,ll,mm,nn,oo,pp 
 188 // hh,gg,ff,ee,dd,cc,bb,aa, pp,oo,nn,mm,ll,kk,jj,ii 
 189 // up to 64 bytes or 512 bits 
 190 uint8_t *SwapEndian64(const uint8_t *src
, const size_t len
, const uint8_t blockSize
){ 
 191         static uint8_t buf
[64]; 
 192         memset(buf
, 0x00, 64); 
 194         for (uint8_t block
=0; block 
< (uint8_t)(len
/blockSize
); block
++){ 
 195                 for (size_t i 
= 0; i 
< blockSize
; i
++){ 
 196                         tmp
[i
+(blockSize
*block
)] = src
[(blockSize
-1-i
)+(blockSize
*block
)]; 
 202 //assumes little endian 
 203 char * printBits(size_t const size
, void const * const ptr
) 
 205     unsigned char *b 
= (unsigned char*) ptr
;     
 207         static char buf
[1024]; 
 211     for (i
=size
-1;i
>=0;i
--) 
 215             byte 
= b
[i
] & (1<<j
); 
 217             sprintf(tmp
, "%u", byte
); 
 224 //  ------------------------------------------------------------------------- 
 225 //  string parameters lib 
 226 //  ------------------------------------------------------------------------- 
 228 //  ------------------------------------------------------------------------- 
 230 //  bg, en   - symbol numbers in param line of beginning an ending parameter 
 231 //  paramnum - param number (from 0) 
 232 //  ------------------------------------------------------------------------- 
 233 int param_getptr(const char *line
, int *bg
, int *en
, int paramnum
) 
 236         int len 
= strlen(line
); 
 242         while (line
[*bg
] ==' ' || line
[*bg
]=='\t') (*bg
)++; 
 247         for (i 
= 0; i 
< paramnum
; i
++) { 
 248                 while (line
[*bg
]!=' ' && line
[*bg
]!='\t' && line
[*bg
] != '\0') (*bg
)++; 
 249                 while (line
[*bg
]==' ' || line
[*bg
]=='\t') (*bg
)++; 
 251                 if (line
[*bg
] == '\0') return 1; 
 255         while (line
[*en
] != ' ' && line
[*en
] != '\t' && line
[*en
] != '\0') (*en
)++; 
 263 char param_getchar(const char *line
, int paramnum
) 
 267         if (param_getptr(line
, &bg
, &en
, paramnum
)) return 0x00; 
 272 uint8_t param_get8(const char *line
, int paramnum
) 
 274         return param_get8ex(line
, paramnum
, 10, 0); 
 278  * @brief Reads a decimal integer (actually, 0-254, not 255) 
 281  * @return -1 if error 
 283 uint8_t param_getdec(const char *line
, int paramnum
, uint8_t *destination
) 
 285         uint8_t val 
=  param_get8ex(line
, paramnum
, 255, 10); 
 286         if( (int8_t) val 
== -1) return 1; 
 287         (*destination
) = val
; 
 291  * @brief Checks if param is decimal 
 296 uint8_t param_isdec(const char *line
, int paramnum
) 
 299         //TODO, check more thorougly 
 300         if (!param_getptr(line
, &bg
, &en
, paramnum
)) return 1; 
 301                 //              return strtoul(&line[bg], NULL, 10) & 0xff; 
 306 uint8_t param_get8ex(const char *line
, int paramnum
, int deflt
, int base
) 
 310         if (!param_getptr(line
, &bg
, &en
, paramnum
))  
 311                 return strtoul(&line
[bg
], NULL
, base
) & 0xff; 
 316 uint32_t param_get32ex(const char *line
, int paramnum
, int deflt
, int base
) 
 320         if (!param_getptr(line
, &bg
, &en
, paramnum
))  
 321                 return strtoul(&line
[bg
], NULL
, base
); 
 326 uint64_t param_get64ex(const char *line
, int paramnum
, int deflt
, int base
) 
 330         if (!param_getptr(line
, &bg
, &en
, paramnum
))  
 331                 return strtoull(&line
[bg
], NULL
, base
); 
 338 int param_gethex(const char *line
, int paramnum
, uint8_t * data
, int hexcnt
) 
 345         if (param_getptr(line
, &bg
, &en
, paramnum
)) return 1; 
 347         if (en 
- bg 
+ 1 != hexcnt
)  
 350         for(i 
= 0; i 
< hexcnt
; i 
+= 2) { 
 351                 if (!(isxdigit(line
[bg 
+ i
]) && isxdigit(line
[bg 
+ i 
+ 1])) )   return 1; 
 353                 sscanf((char[]){line
[bg 
+ i
], line
[bg 
+ i 
+ 1], 0}, "%X", &temp
); 
 354                 data
[i 
/ 2] = temp 
& 0xff; 
 359 int param_gethex_ex(const char *line
, int paramnum
, uint8_t * data
, int *hexcnt
) 
 366         if (param_getptr(line
, &bg
, &en
, paramnum
)) return 1; 
 368         *hexcnt 
= en 
- bg 
+ 1; 
 369         if (*hexcnt 
% 2) //error if not complete hex bytes 
 372         for(i 
= 0; i 
< *hexcnt
; i 
+= 2) { 
 373                 if (!(isxdigit(line
[bg 
+ i
]) && isxdigit(line
[bg 
+ i 
+ 1])) )   return 1; 
 375                 sscanf((char[]){line
[bg 
+ i
], line
[bg 
+ i 
+ 1], 0}, "%X", &temp
); 
 376                 data
[i 
/ 2] = temp 
& 0xff; 
 381 int param_getstr(const char *line
, int paramnum
, char * str
) 
 385         if (param_getptr(line
, &bg
, &en
, paramnum
)) return 0; 
 387         memcpy(str
, line 
+ bg
, en 
- bg 
+ 1); 
 388         str
[en 
- bg 
+ 1] = 0; 
 394 The following methods comes from Rfidler sourcecode. 
 395 https://github.com/ApertureLabsLtd/RFIDler/blob/master/firmware/Pic32/RFIDler.X/src/ 
 398 // convert hex to sequence of 0/1 bit values 
 399 // returns number of bits converted 
 400 int hextobinarray(char *target
, char *source
) 
 402     int length
, i
, count
= 0; 
 405     length 
= strlen(source
); 
 406     // process 4 bits (1 hex digit) at a time 
 411         if (x 
>= 'a' && x 
<= 'f') 
 413         // convert to numeric value 
 414         if (x 
>= '0' && x 
<= '9') 
 416         else if (x 
>= 'A' && x 
<= 'F') 
 421         for(i
= 0 ; i 
< 4 ; ++i
, ++count
) 
 422             *(target
++)= (x 
>> (3 - i
)) & 1; 
 428 // convert hex to human readable binary string 
 429 int hextobinstring(char *target
, char *source
) 
 433     if(!(length
= hextobinarray(target
, source
))) 
 435     binarraytobinstring(target
, target
, length
); 
 439 // convert binary array of 0x00/0x01 values to hex (safe to do in place as target will always be shorter than source) 
 440 // return number of bits converted 
 441 int binarraytohex(char *target
,char *source
, int length
) 
 451         for(i
= x
= 0 ; i 
< 4 ; ++i
) 
 452             x 
+=  ( source
[i
] << (3 - i
)); 
 453         sprintf(target
,"%X", x
); 
 461 // convert binary array to human readable binary 
 462 void binarraytobinstring(char *target
, char *source
,  int length
) 
 466     for(i
= 0 ; i 
< length 
; ++i
) 
 467         *(target
++)= *(source
++) + '0'; 
 471 // return parity bit required to match type 
 472 uint8_t GetParity( uint8_t *bits
, uint8_t type
, int length
) 
 476     for(x
= 0 ; length 
> 0 ; --length
) 
 477         x 
+= bits
[length 
- 1]; 
 483 // add HID parity to binary array: EVEN prefix for 1st half of ID, ODD suffix for 2nd half 
 484 void wiegand_add_parity(uint8_t *target
, uint8_t *source
, uint8_t length
) 
 486     *(target
++)= GetParity(source
, EVEN
, length 
/ 2); 
 487     memcpy(target
, source
, length
); 
 489     *(target
)= GetParity(source 
+ length 
/ 2, ODD
, length 
/ 2); 
 492 void xor(unsigned char *dst
, unsigned char *src
, size_t len
) { 
 493    for( ; len 
> 0; len
--,dst
++,src
++) 
 497 int32_t le24toh (uint8_t data
[3]) { 
 498     return (data
[2] << 16) | (data
[1] << 8) | data
[0];