]>
git.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 //-----------------------------------------------------------------------------
25 #define MAX_BIN_BREAK_LENGTH (3072+384+1)
29 #include <sys/ioctl.h>
36 static struct termios Otty
, Ntty
;
38 if ( tcgetattr(STDIN_FILENO
, &Otty
) == -1 ) return -1;
41 Ntty
.c_iflag
= 0x0000; // input mode
42 Ntty
.c_oflag
= 0x0000; // output mode
43 Ntty
.c_lflag
&= ~ICANON
; // control mode = raw
44 Ntty
.c_cc
[VMIN
] = 1; // return if at least 1 character is in the queue
45 Ntty
.c_cc
[VTIME
] = 0; // no timeout. Wait forever
47 if (0 == (error
= tcsetattr(STDIN_FILENO
, TCSANOW
, &Ntty
))) { // set new attributes
48 error
+= ioctl(STDIN_FILENO
, FIONREAD
, &cnt
); // get number of characters availabe
49 error
+= tcsetattr(STDIN_FILENO
, TCSANOW
, &Otty
); // reset attributes
52 return ( error
== 0 ? cnt
: -1 );
63 // log files functions
64 void AddLogLine(char *file
, char *extData
, char *c
) {
66 char filename
[FILE_PATH_SIZE
] = {0x00};
70 if (len
> FILE_PATH_SIZE
) len
= FILE_PATH_SIZE
;
71 memcpy(filename
, file
, len
);
73 fLog
= fopen(filename
, "a");
75 printf("Could not append log file %s", filename
);
79 fprintf(fLog
, "%s", extData
);
80 fprintf(fLog
, "%s\n", c
);
84 void AddLogHex(char *fileName
, char *extData
, const uint8_t * data
, const size_t len
){
85 AddLogLine(fileName
, extData
, sprint_hex(data
, len
));
88 void AddLogUint64(char *fileName
, char *extData
, const uint64_t data
) {
90 sprintf(buf
, "%x%x", (unsigned int)((data
& 0xFFFFFFFF00000000) >> 32), (unsigned int)(data
& 0xFFFFFFFF));
91 AddLogLine(fileName
, extData
, buf
);
94 void AddLogCurrentDT(char *fileName
) {
99 curTime
= gmtime(&now
);
101 strftime (buff
, sizeof(buff
), "%Y-%m-%d %H:%M:%S", curTime
);
102 AddLogLine(fileName
, "\nanticollision: ", buff
);
105 void FillFileNameByUID(char *fileName
, uint8_t * uid
, char *ext
, int byteCount
) {
106 char * fnameptr
= fileName
;
107 memset(fileName
, 0x00, 200);
109 for (int j
= 0; j
< byteCount
; j
++, fnameptr
+= 2)
110 sprintf(fnameptr
, "%02x", (unsigned int) uid
[j
]);
111 sprintf(fnameptr
, "%s", ext
);
114 // fill buffer from structure [{uint8_t data, size_t length},...]
115 int FillBuffer(uint8_t *data
, size_t maxDataLength
, size_t *dataLength
, ...) {
118 va_start(valist
, dataLength
);
120 uint8_t *vdata
= NULL
;
123 vdata
= va_arg(valist
, uint8_t *);
127 vlength
= va_arg(valist
, size_t);
128 if (*dataLength
+ vlength
> maxDataLength
) {
133 memcpy(&data
[*dataLength
], vdata
, vlength
);
134 *dataLength
+= vlength
;
143 bool CheckStringIsHEXValue(const char *value
) {
144 for (int i
= 0; i
< strlen(value
); i
++)
145 if (!isxdigit(value
[i
]))
148 if (strlen(value
) % 2)
154 void hex_to_buffer(const uint8_t *buf
, const uint8_t *hex_data
, const size_t hex_len
, const size_t hex_max_len
,
155 const size_t min_str_len
, const size_t spaces_between
, bool uppercase
) {
157 char *tmp
= (char *)buf
;
159 memset(tmp
, 0x00, hex_max_len
);
161 int maxLen
= ( hex_len
> hex_max_len
) ? hex_max_len
: hex_len
;
163 for (i
= 0; i
< maxLen
; ++i
, tmp
+= 2 + spaces_between
) {
164 sprintf(tmp
, (uppercase
) ? "%02X" : "%02x", (unsigned int) hex_data
[i
]);
166 for (int j
= 0; j
< spaces_between
; j
++)
167 sprintf(tmp
+ 2 + j
, " ");
170 i
*= (2 + spaces_between
);
171 int minStrLen
= min_str_len
> i
? min_str_len
: 0;
172 if (minStrLen
> hex_max_len
)
173 minStrLen
= hex_max_len
;
174 for(; i
< minStrLen
; i
++, tmp
+= 1)
180 // printing and converting functions
182 char *sprint_hex(const uint8_t *data
, const size_t len
) {
183 static char buf
[4097] = {0};
185 hex_to_buffer((uint8_t *)buf
, data
, len
, sizeof(buf
) - 1, 0, 1, false);
190 char *sprint_hex_inrow_ex(const uint8_t *data
, const size_t len
, const size_t min_str_len
) {
191 static char buf
[4097] = {0};
193 hex_to_buffer((uint8_t *)buf
, data
, len
, sizeof(buf
) - 1, min_str_len
, 0, false);
198 char *sprint_hex_inrow(const uint8_t *data
, const size_t len
) {
199 return sprint_hex_inrow_ex(data
, len
, 0);
202 char *sprint_bin_break(const uint8_t *data
, const size_t len
, const uint8_t breaks
) {
203 // make sure we don't go beyond our char array memory
206 max_len
= ( len
> MAX_BIN_BREAK_LENGTH
) ? MAX_BIN_BREAK_LENGTH
: len
;
208 max_len
= ( len
+(len
/breaks
) > MAX_BIN_BREAK_LENGTH
) ? MAX_BIN_BREAK_LENGTH
: len
+(len
/breaks
);
210 static char buf
[MAX_BIN_BREAK_LENGTH
]; // 3072 + end of line characters if broken at 8 bits
212 memset(buf
, 0x00, sizeof(buf
));
216 // loop through the out_index to make sure we don't go too far
217 for (size_t out_index
=0; out_index
< max_len
; out_index
++) {
218 // set character - (should be binary but verify it isn't more than 1 digit)
219 if (data
[in_index
]<10)
220 sprintf(tmp
++, "%u", (unsigned int) data
[in_index
]);
221 // check if a line break is needed and we have room to print it in our array
222 if ( (breaks
> 0) && !((in_index
+1) % breaks
) && (out_index
+1 < max_len
) ) {
223 // increment and print line break
225 sprintf(tmp
++, "%s","\n");
233 char *sprint_bin(const uint8_t *data
, const size_t len
) {
234 return sprint_bin_break(data
, len
, 0);
237 char *sprint_ascii_ex(const uint8_t *data
, const size_t len
, const size_t min_str_len
) {
238 static char buf
[1024];
240 memset(buf
, 0x00, 1024);
241 size_t max_len
= (len
> 1010) ? 1010 : len
;
245 tmp
[i
] = ((c
< 32) || (c
== 127)) ? '.' : c
;
249 int minStrLen
= min_str_len
> i
? min_str_len
: 0;
250 for(; i
< minStrLen
; ++i
)
256 void num_to_bytes(uint64_t n
, size_t len
, uint8_t* dest
)
259 dest
[len
] = (uint8_t) n
;
264 uint64_t bytes_to_num(uint8_t* src
, size_t len
)
269 num
= (num
<< 8) | (*src
);
275 void num_to_bytebits(uint64_t n
, size_t len
, uint8_t *dest
) {
282 //least significant bit first
283 void num_to_bytebitsLSBF(uint64_t n
, size_t len
, uint8_t *dest
) {
284 for(int i
= 0 ; i
< len
; ++i
) {
290 // Swap bit order on a uint32_t value. Can be limited by nrbits just use say 8bits reversal
291 // And clears the rest of the bits.
292 uint32_t SwapBits(uint32_t value
, int nrbits
) {
293 uint32_t newvalue
= 0;
294 for(int i
= 0; i
< nrbits
; i
++) {
295 newvalue
^= ((value
>> i
) & 1) << (nrbits
- 1 - i
);
300 // aa,bb,cc,dd,ee,ff,gg,hh, ii,jj,kk,ll,mm,nn,oo,pp
302 // hh,gg,ff,ee,dd,cc,bb,aa, pp,oo,nn,mm,ll,kk,jj,ii
303 // up to 64 bytes or 512 bits
304 uint8_t *SwapEndian64(const uint8_t *src
, const size_t len
, const uint8_t blockSize
){
305 static uint8_t buf
[64];
306 memset(buf
, 0x00, 64);
308 for (uint8_t block
=0; block
< (uint8_t)(len
/blockSize
); block
++){
309 for (size_t i
= 0; i
< blockSize
; i
++){
310 tmp
[i
+(blockSize
*block
)] = src
[(blockSize
-1-i
)+(blockSize
*block
)];
316 //assumes little endian
317 char * printBits(size_t const size
, void const * const ptr
)
319 unsigned char *b
= (unsigned char*) ptr
;
321 static char buf
[1024];
325 for (i
=size
-1;i
>=0;i
--)
329 byte
= b
[i
] & (1<<j
);
331 sprintf(tmp
, "%u", (unsigned int)byte
);
338 char * printBitsPar(const uint8_t *b
, size_t len
) {
339 static char buf1
[512] = {0};
340 static char buf2
[512] = {0};
346 memset(buf
, 0x00, 512);
348 for (int i
= 0; i
< len
; i
++) {
349 buf
[i
] = ((b
[i
/ 8] << (i
% 8)) & 0x80) ? '1':'0';
355 // -------------------------------------------------------------------------
356 // string parameters lib
357 // -------------------------------------------------------------------------
359 // -------------------------------------------------------------------------
361 // bg, en - symbol numbers in param line of beginning and ending parameter
362 // paramnum - param number (from 0)
363 // -------------------------------------------------------------------------
364 int param_getptr(const char *line
, int *bg
, int *en
, int paramnum
)
367 int len
= strlen(line
);
373 while (line
[*bg
] ==' ' || line
[*bg
]=='\t') (*bg
)++;
378 for (i
= 0; i
< paramnum
; i
++) {
379 while (line
[*bg
]!=' ' && line
[*bg
]!='\t' && line
[*bg
] != '\0') (*bg
)++;
380 while (line
[*bg
]==' ' || line
[*bg
]=='\t') (*bg
)++;
382 if (line
[*bg
] == '\0') return 1;
386 while (line
[*en
] != ' ' && line
[*en
] != '\t' && line
[*en
] != '\0') (*en
)++;
394 int param_getlength(const char *line
, int paramnum
)
398 if (param_getptr(line
, &bg
, &en
, paramnum
)) return 0;
403 char param_getchar(const char *line
, int paramnum
) {
404 return param_getchar_indx(line
, 0, paramnum
);
407 char param_getchar_indx(const char *line
, int indx
, int paramnum
) {
410 if (param_getptr(line
, &bg
, &en
, paramnum
)) return 0x00;
415 return line
[bg
+ indx
];
418 uint8_t param_get8(const char *line
, int paramnum
)
420 return param_get8ex(line
, paramnum
, 0, 10);
424 * @brief Reads a decimal integer (actually, 0-254, not 255)
427 * @return -1 if error
429 uint8_t param_getdec(const char *line
, int paramnum
, uint8_t *destination
)
431 uint8_t val
= param_get8ex(line
, paramnum
, 255, 10);
432 if( (int8_t) val
== -1) return 1;
433 (*destination
) = val
;
437 * @brief Checks if param is decimal
442 uint8_t param_isdec(const char *line
, int paramnum
)
445 //TODO, check more thorougly
446 if (!param_getptr(line
, &bg
, &en
, paramnum
)) return 1;
447 // return strtoul(&line[bg], NULL, 10) & 0xff;
452 uint8_t param_get8ex(const char *line
, int paramnum
, int deflt
, int base
)
456 if (!param_getptr(line
, &bg
, &en
, paramnum
))
457 return strtoul(&line
[bg
], NULL
, base
) & 0xff;
462 uint32_t param_get32ex(const char *line
, int paramnum
, int deflt
, int base
)
466 if (!param_getptr(line
, &bg
, &en
, paramnum
))
467 return strtoul(&line
[bg
], NULL
, base
);
472 uint64_t param_get64ex(const char *line
, int paramnum
, int deflt
, int base
)
476 if (!param_getptr(line
, &bg
, &en
, paramnum
))
477 return strtoull(&line
[bg
], NULL
, base
);
482 int param_gethex(const char *line
, int paramnum
, uint8_t * data
, int hexcnt
)
489 if (param_getptr(line
, &bg
, &en
, paramnum
)) return 1;
491 if (en
- bg
+ 1 != hexcnt
)
494 for(i
= 0; i
< hexcnt
; i
+= 2) {
495 if (!(isxdigit((unsigned char)line
[bg
+ i
]) && isxdigit((unsigned char)line
[bg
+ i
+ 1])) ) return 1;
497 sscanf((char[]){line
[bg
+ i
], line
[bg
+ i
+ 1], 0}, "%X", &temp
);
498 data
[i
/ 2] = temp
& 0xff;
503 int param_gethex_ex(const char *line
, int paramnum
, uint8_t * data
, int *hexcnt
)
510 if (param_getptr(line
, &bg
, &en
, paramnum
)) return 1;
512 *hexcnt
= en
- bg
+ 1;
513 if (*hexcnt
% 2) //error if not complete hex bytes
516 for(i
= 0; i
< *hexcnt
; i
+= 2) {
517 if (!(isxdigit((unsigned char)line
[bg
+ i
]) && isxdigit((unsigned char)line
[bg
+ i
+ 1])) ) return 1;
519 sscanf((char[]){line
[bg
+ i
], line
[bg
+ i
+ 1], 0}, "%X", &temp
);
520 data
[i
/ 2] = temp
& 0xff;
526 int param_gethex_to_eol(const char *line
, int paramnum
, uint8_t * data
, int maxdatalen
, int *datalen
) {
531 if (param_getptr(line
, &bg
, &en
, paramnum
)) return 1;
537 if (line
[indx
] == '\t' || line
[indx
] == ' ') {
542 if (isxdigit((unsigned char)line
[indx
])) {
543 buf
[strlen(buf
) + 1] = 0x00;
544 buf
[strlen(buf
)] = line
[indx
];
546 // if we have symbols other than spaces and hex
550 if (*datalen
>= maxdatalen
) {
551 // if we dont have space in buffer and have symbols to translate
555 if (strlen(buf
) >= 2) {
556 sscanf(buf
, "%x", &temp
);
557 data
[*datalen
] = (uint8_t)(temp
& 0xff);
566 //error when not completed hex bytes
572 int param_getstr(const char *line
, int paramnum
, char * str
, size_t buffersize
)
576 if (param_getptr(line
, &bg
, &en
, paramnum
)) {
580 // Prevent out of bounds errors
581 if (en
- bg
+ 1 >= buffersize
) {
582 printf("out of bounds error: want %d bytes have %zd bytes\n", en
- bg
+ 1 + 1, buffersize
);
586 memcpy(str
, line
+ bg
, en
- bg
+ 1);
587 str
[en
- bg
+ 1] = 0;
593 The following methods comes from Rfidler sourcecode.
594 https://github.com/ApertureLabsLtd/RFIDler/blob/master/firmware/Pic32/RFIDler.X/src/
597 // convert hex to sequence of 0/1 bit values
598 // returns number of bits converted
599 int hextobinarray(char *target
, char *source
)
601 int length
, i
, count
= 0;
602 char* start
= source
;
605 length
= strlen(source
);
606 // process 4 bits (1 hex digit) at a time
611 if (x
>= 'a' && x
<= 'f')
613 // convert to numeric value
614 if (x
>= '0' && x
<= '9')
616 else if (x
>= 'A' && x
<= 'F')
619 printf("Discovered unknown character %c %d at idx %tu of %s\n", x
, x
, source
- start
, start
);
623 for(i
= 0 ; i
< 4 ; ++i
, ++count
)
624 *(target
++)= (x
>> (3 - i
)) & 1;
630 // convert binary array of 0x00/0x01 values to hex (safe to do in place as target will always be shorter than source)
631 // return number of bits converted
632 int binarraytohex(char *target
,char *source
, int length
)
642 for(i
= x
= 0 ; i
< 4 ; ++i
)
643 x
+= ( source
[i
] << (3 - i
));
644 sprintf(target
,"%X", (unsigned int)x
);
652 // return parity bit required to match type
653 uint8_t GetParity( uint8_t *bits
, uint8_t type
, int length
)
657 for(x
= 0 ; length
> 0 ; --length
)
658 x
+= bits
[length
- 1];
664 // add HID parity to binary array: EVEN prefix for 1st half of ID, ODD suffix for 2nd half
665 void wiegand_add_parity(uint8_t *target
, uint8_t *source
, uint8_t length
)
667 *(target
++)= GetParity(source
, EVEN
, length
/ 2);
668 memcpy(target
, source
, length
);
670 *(target
)= GetParity(source
+ length
/ 2, ODD
, length
/ 2);
673 // xor two arrays together for len items. The dst array contains the new xored values.
674 void xor(unsigned char *dst
, unsigned char *src
, size_t len
) {
675 for( ; len
> 0; len
--,dst
++,src
++)
679 // RotateLeft - Ultralight, Desfire, works on byte level
680 // 00-01-02 >> 01-02-00
681 void rol(uint8_t *data
, const size_t len
){
682 uint8_t first
= data
[0];
683 for (size_t i
= 0; i
< len
-1; i
++) {
690 // Replace unprintable characters with a dot in char buffer
691 void clean_ascii(unsigned char *buf
, size_t len
) {
692 for (size_t i
= 0; i
< len
; i
++) {
693 if (!isprint(buf
[i
]))
698 // replace \r \n to \0
699 void strcleanrn(char *buf
, size_t len
) {
700 strcreplace(buf
, len
, '\n', '\0');
701 strcreplace(buf
, len
, '\r', '\0');
704 // replace char in buffer
705 void strcreplace(char *buf
, size_t len
, char from
, char to
) {
706 for (size_t i
= 0; i
< len
; i
++) {
712 char *strmcopy(char *buf
) {
714 if ((str
= (char*) malloc(strlen(buf
) + 1)) != NULL
) {
715 memset(str
, 0, strlen(buf
) + 1);
722 // determine number of logical CPU cores (use for multithreaded functions)
723 extern int num_CPUs(void)
726 #include <sysinfoapi.h>
728 GetSystemInfo(&sysinfo
);
729 return sysinfo
.dwNumberOfProcessors
;
730 #elif defined(__linux__) || defined(__APPLE__)
732 return sysconf(_SC_NPROCESSORS_ONLN
);