]>
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 //-----------------------------------------------------------------------------
13 #define MAX_BIN_BREAK_LENGTH (3072+384+1)
17 #include <sys/ioctl.h>
24 static struct termios Otty
, Ntty
;
27 if ( tcgetattr( 0, &Otty
) == -1 ) return -1;
30 Ntty
.c_iflag
= 0; /* input mode */
31 Ntty
.c_oflag
= 0; /* output mode */
32 Ntty
.c_lflag
&= ~ICANON
; /* raw mode */
33 Ntty
.c_cc
[VMIN
] = CMIN
; /* minimum time to wait */
34 Ntty
.c_cc
[VTIME
] = CTIME
; /* minimum characters to wait for */
36 if (0 == (error
= tcsetattr(0, TCSANOW
, &Ntty
))) {
37 error
+= ioctl(0, FIONREAD
, &cnt
);
38 error
+= tcsetattr(0, TCSANOW
, &Otty
);
41 return ( error
== 0 ? cnt
: -1 );
51 // log files functions
52 void AddLogLine(char *file
, char *extData
, char *c
) {
54 char filename
[FILE_PATH_SIZE
] = {0x00};
58 if (len
> FILE_PATH_SIZE
) len
= FILE_PATH_SIZE
;
59 memcpy(filename
, file
, len
);
61 fLog
= fopen(filename
, "a");
63 printf("Could not append log file %s", filename
);
67 fprintf(fLog
, "%s", extData
);
68 fprintf(fLog
, "%s\n", c
);
72 void AddLogHex(char *fileName
, char *extData
, const uint8_t * data
, const size_t len
){
73 AddLogLine(fileName
, extData
, sprint_hex(data
, len
));
76 void AddLogUint64(char *fileName
, char *extData
, const uint64_t data
) {
78 sprintf(buf
, "%x%x", (unsigned int)((data
& 0xFFFFFFFF00000000) >> 32), (unsigned int)(data
& 0xFFFFFFFF));
79 AddLogLine(fileName
, extData
, buf
);
82 void AddLogCurrentDT(char *fileName
) {
87 curTime
= gmtime(&now
);
89 strftime (buff
, sizeof(buff
), "%Y-%m-%d %H:%M:%S", curTime
);
90 AddLogLine(fileName
, "\nanticollision: ", buff
);
93 void FillFileNameByUID(char *fileName
, uint8_t * uid
, char *ext
, int byteCount
) {
94 char * fnameptr
= fileName
;
95 memset(fileName
, 0x00, 200);
97 for (int j
= 0; j
< byteCount
; j
++, fnameptr
+= 2)
98 sprintf(fnameptr
, "%02x", (unsigned int) uid
[j
]);
99 sprintf(fnameptr
, "%s", ext
);
102 // printing and converting functions
104 void print_hex(const uint8_t * data
, const size_t len
)
108 for (i
=0; i
< len
; i
++)
109 printf("%02x ", data
[i
]);
114 void print_hex_break(const uint8_t *data
, const size_t len
, uint8_t breaks
) {
117 printf("[%02d] | ", rownum
);
118 for (int i
= 0; i
< len
; ++i
) {
120 printf("%02X ", data
[i
]);
122 // check if a line break is needed
123 if ( breaks
> 0 && !((i
+1) % breaks
) && (i
+1 < len
) ) {
125 printf("\n[%02d] | ", rownum
);
131 char *sprint_hex(const uint8_t *data
, const size_t len
) {
133 int maxLen
= ( len
> 1024/3) ? 1024/3 : len
;
134 static char buf
[1024];
135 memset(buf
, 0x00, 1024);
139 for (i
=0; i
< maxLen
; ++i
, tmp
+= 3)
140 sprintf(tmp
, "%02x ", (unsigned int) data
[i
]);
145 char *sprint_bin_break(const uint8_t *data
, const size_t len
, const uint8_t breaks
) {
146 // make sure we don't go beyond our char array memory
149 max_len
= ( len
> MAX_BIN_BREAK_LENGTH
) ? MAX_BIN_BREAK_LENGTH
: len
;
151 max_len
= ( len
+(len
/breaks
) > MAX_BIN_BREAK_LENGTH
) ? MAX_BIN_BREAK_LENGTH
: len
+(len
/breaks
);
153 static char buf
[MAX_BIN_BREAK_LENGTH
]; // 3072 + end of line characters if broken at 8 bits
155 memset(buf
, 0x00, sizeof(buf
));
159 // loop through the out_index to make sure we don't go too far
160 for (size_t out_index
=0; out_index
< max_len
-1; out_index
++) {
161 // set character - (should be binary but verify it isn't more than 1 digit)
162 if (data
[in_index
]<10)
163 sprintf(tmp
++, "%u", (unsigned int) data
[in_index
]);
164 // check if a line break is needed and we have room to print it in our array
165 if ( (breaks
> 0) && !((in_index
+1) % breaks
) && (out_index
+1 != max_len
) ) {
166 // increment and print line break
168 sprintf(tmp
++, "%s","\n");
176 char *sprint_bin(const uint8_t *data
, const size_t len
) {
177 return sprint_bin_break(data
, len
, 0);
180 char *sprint_hex_ascii(const uint8_t *data
, const size_t len
) {
181 static char buf
[1024];
183 memset(buf
, 0x00, 1024);
184 size_t max_len
= (len
> 1010) ? 1010 : len
;
186 sprintf(tmp
, "%s| ", sprint_hex(data
, max_len
) );
189 size_t pos
= (max_len
* 3)+2;
192 if ( (c
< 32) || (c
== 127))
194 sprintf(tmp
+pos
+i
, "%c", c
);
200 char *sprint_ascii(const uint8_t *data
, const size_t len
) {
201 static char buf
[1024];
203 memset(buf
, 0x00, 1024);
204 size_t max_len
= (len
> 1010) ? 1010 : len
;
208 tmp
[i
] = ((c
< 32) || (c
== 127)) ? '.' : c
;
214 void num_to_bytes(uint64_t n
, size_t len
, uint8_t* dest
)
217 dest
[len
] = (uint8_t) n
;
222 uint64_t bytes_to_num(uint8_t* src
, size_t len
)
227 num
= (num
<< 8) | (*src
);
233 void num_to_bytebits(uint64_t n
, size_t len
, uint8_t *dest
) {
240 //least significant bit first
241 void num_to_bytebitsLSBF(uint64_t n
, size_t len
, uint8_t *dest
) {
242 for(int i
= 0 ; i
< len
; ++i
) {
249 // aa,bb,cc,dd,ee,ff,gg,hh, ii,jj,kk,ll,mm,nn,oo,pp
251 // hh,gg,ff,ee,dd,cc,bb,aa, pp,oo,nn,mm,ll,kk,jj,ii
252 // up to 64 bytes or 512 bits
253 uint8_t *SwapEndian64(const uint8_t *src
, const size_t len
, const uint8_t blockSize
){
254 static uint8_t buf
[64];
255 memset(buf
, 0x00, 64);
257 for (uint8_t block
=0; block
< (uint8_t)(len
/blockSize
); block
++){
258 for (size_t i
= 0; i
< blockSize
; i
++){
259 tmp
[i
+(blockSize
*block
)] = src
[(blockSize
-1-i
)+(blockSize
*block
)];
265 // takes a uint8_t src array, for len items and reverses the byte order in blocksizes (8,16,32,64),
266 // returns: the dest array contains the reordered src array.
267 void SwapEndian64ex(const uint8_t *src
, const size_t len
, const uint8_t blockSize
, uint8_t *dest
){
268 for (uint8_t block
=0; block
< (uint8_t)(len
/blockSize
); block
++){
269 for (size_t i
= 0; i
< blockSize
; i
++){
270 dest
[i
+(blockSize
*block
)] = src
[(blockSize
-1-i
)+(blockSize
*block
)];
275 //assumes little endian
276 char * printBits(size_t const size
, void const * const ptr
)
278 unsigned char *b
= (unsigned char*) ptr
;
280 static char buf
[1024];
284 for (i
=size
-1;i
>=0;i
--)
288 byte
= b
[i
] & (1<<j
);
290 sprintf(tmp
, "%u", (unsigned int)byte
);
297 // -------------------------------------------------------------------------
298 // string parameters lib
299 // -------------------------------------------------------------------------
301 // -------------------------------------------------------------------------
303 // bg, en - symbol numbers in param line of beginning an ending parameter
304 // paramnum - param number (from 0)
305 // -------------------------------------------------------------------------
306 int param_getptr(const char *line
, int *bg
, int *en
, int paramnum
)
309 int len
= strlen(line
);
315 while (line
[*bg
] ==' ' || line
[*bg
]=='\t') (*bg
)++;
320 for (i
= 0; i
< paramnum
; i
++) {
321 while (line
[*bg
]!=' ' && line
[*bg
]!='\t' && line
[*bg
] != '\0') (*bg
)++;
322 while (line
[*bg
]==' ' || line
[*bg
]=='\t') (*bg
)++;
324 if (line
[*bg
] == '\0') return 1;
328 while (line
[*en
] != ' ' && line
[*en
] != '\t' && line
[*en
] != '\0') (*en
)++;
336 char param_getchar(const char *line
, int paramnum
)
340 if (param_getptr(line
, &bg
, &en
, paramnum
)) return 0x00;
345 uint8_t param_get8(const char *line
, int paramnum
)
347 return param_get8ex(line
, paramnum
, 0, 10);
351 * @brief Reads a decimal integer (actually, 0-254, not 255)
354 * @return -1 if error
356 uint8_t param_getdec(const char *line
, int paramnum
, uint8_t *destination
)
358 uint8_t val
= param_get8ex(line
, paramnum
, 255, 10);
359 if( (int8_t) val
== -1) return 1;
360 (*destination
) = val
;
364 * @brief Checks if param is decimal
369 uint8_t param_isdec(const char *line
, int paramnum
)
372 //TODO, check more thorougly
373 if (!param_getptr(line
, &bg
, &en
, paramnum
)) return 1;
374 // return strtoul(&line[bg], NULL, 10) & 0xff;
379 uint8_t param_get8ex(const char *line
, int paramnum
, int deflt
, int base
)
383 if (!param_getptr(line
, &bg
, &en
, paramnum
))
384 return strtoul(&line
[bg
], NULL
, base
) & 0xff;
389 uint32_t param_get32ex(const char *line
, int paramnum
, int deflt
, int base
)
393 if (!param_getptr(line
, &bg
, &en
, paramnum
))
394 return strtoul(&line
[bg
], NULL
, base
);
399 uint64_t param_get64ex(const char *line
, int paramnum
, int deflt
, int base
)
403 if (!param_getptr(line
, &bg
, &en
, paramnum
))
404 return strtoull(&line
[bg
], NULL
, base
);
409 int param_gethex(const char *line
, int paramnum
, uint8_t * data
, int hexcnt
)
416 if (param_getptr(line
, &bg
, &en
, paramnum
)) return 1;
418 if (en
- bg
+ 1 != hexcnt
)
421 for(i
= 0; i
< hexcnt
; i
+= 2) {
422 if (!(isxdigit(line
[bg
+ i
]) && isxdigit(line
[bg
+ i
+ 1])) ) return 1;
424 sscanf((char[]){line
[bg
+ i
], line
[bg
+ i
+ 1], 0}, "%X", &temp
);
425 data
[i
/ 2] = temp
& 0xff;
430 int param_gethex_ex(const char *line
, int paramnum
, uint8_t * data
, int *hexcnt
)
437 if (param_getptr(line
, &bg
, &en
, paramnum
)) return 1;
439 *hexcnt
= en
- bg
+ 1;
440 if (*hexcnt
% 2) //error if not complete hex bytes
443 for(i
= 0; i
< *hexcnt
; i
+= 2) {
444 if (!(isxdigit(line
[bg
+ i
]) && isxdigit(line
[bg
+ i
+ 1])) ) return 1;
446 sscanf((char[]){line
[bg
+ i
], line
[bg
+ i
+ 1], 0}, "%X", &temp
);
447 data
[i
/ 2] = temp
& 0xff;
452 int param_getstr(const char *line
, int paramnum
, char * str
)
456 if (param_getptr(line
, &bg
, &en
, paramnum
)) return 0;
458 memcpy(str
, line
+ bg
, en
- bg
+ 1);
459 str
[en
- bg
+ 1] = 0;
465 The following methods comes from Rfidler sourcecode.
466 https://github.com/ApertureLabsLtd/RFIDler/blob/master/firmware/Pic32/RFIDler.X/src/
469 // convert hex to sequence of 0/1 bit values
470 // returns number of bits converted
471 int hextobinarray(char *target
, char *source
)
473 int length
, i
, count
= 0;
476 length
= strlen(source
);
477 // process 4 bits (1 hex digit) at a time
482 if (x
>= 'a' && x
<= 'f')
484 // convert to numeric value
485 if (x
>= '0' && x
<= '9')
487 else if (x
>= 'A' && x
<= 'F')
492 for(i
= 0 ; i
< 4 ; ++i
, ++count
)
493 *(target
++)= (x
>> (3 - i
)) & 1;
499 // convert hex to human readable binary string
500 int hextobinstring(char *target
, char *source
)
504 if(!(length
= hextobinarray(target
, source
)))
506 binarraytobinstring(target
, target
, length
);
510 // convert binary array of 0x00/0x01 values to hex (safe to do in place as target will always be shorter than source)
511 // return number of bits converted
512 int binarraytohex(char *target
,char *source
, int length
)
522 for(i
= x
= 0 ; i
< 4 ; ++i
)
523 x
+= ( source
[i
] << (3 - i
));
524 sprintf(target
,"%X", (unsigned int)x
);
532 // convert binary array to human readable binary
533 void binarraytobinstring(char *target
, char *source
, int length
)
537 for(i
= 0 ; i
< length
; ++i
)
538 *(target
++)= *(source
++) + '0';
542 // return parity bit required to match type
543 uint8_t GetParity( uint8_t *bits
, uint8_t type
, int length
)
547 for(x
= 0 ; length
> 0 ; --length
)
548 x
+= bits
[length
- 1];
554 // add HID parity to binary array: EVEN prefix for 1st half of ID, ODD suffix for 2nd half
555 void wiegand_add_parity(uint8_t *target
, uint8_t *source
, uint8_t length
)
557 *(target
++)= GetParity(source
, EVEN
, length
/ 2);
558 memcpy(target
, source
, length
);
560 *(target
)= GetParity(source
+ length
/ 2, ODD
, length
/ 2);
563 // xor two arrays together for len items. The dst array contains the new xored values.
564 void xor(unsigned char *dst
, unsigned char *src
, size_t len
) {
565 for( ; len
> 0; len
--,dst
++,src
++)
569 int32_t le24toh (uint8_t data
[3]) {
570 return (data
[2] << 16) | (data
[1] << 8) | data
[0];
572 uint32_t le32toh (uint8_t *data
) {
573 return (uint32_t)( (data
[3]<<24) | (data
[2]<<16) | (data
[1]<<8) | data
[0]);
576 // RotateLeft - Ultralight, Desfire, works on byte level
577 // 00-01-02 >> 01-02-00
578 void rol(uint8_t *data
, const size_t len
){
579 uint8_t first
= data
[0];
580 for (size_t i
= 0; i
< len
-1; i
++) {
587 // Replace unprintable characters with a dot in char buffer
588 void clean_ascii(unsigned char *buf
, size_t len
) {
589 for (size_t i
= 0; i
< len
; i
++) {
590 if (!isprint(buf
[i
]))