]>
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 //-----------------------------------------------------------------------------
15 #include <sys/ioctl.h>
21 static struct termios Otty
, Ntty
;
27 Ntty
.c_iflag
= 0; /* input mode */
28 Ntty
.c_oflag
= 0; /* output mode */
29 Ntty
.c_lflag
&= ~ICANON
; /* raw mode */
30 Ntty
.c_cc
[VMIN
] = CMIN
; /* minimum time to wait */
31 Ntty
.c_cc
[VTIME
] = CTIME
; /* minimum characters to wait for */
33 if (0 == (error
= tcsetattr(0, TCSANOW
, &Ntty
))) {
34 error
+= ioctl(0, FIONREAD
, &cnt
);
35 error
+= tcsetattr(0, TCSANOW
, &Otty
);
38 return ( error
== 0 ? cnt
: -1 );
48 // log files functions
49 void AddLogLine(char *file
, char *extData
, char *c
) {
51 char filename
[FILE_PATH_SIZE
] = {0x00};
55 if (len
> FILE_PATH_SIZE
) len
= FILE_PATH_SIZE
;
56 memcpy(filename
, file
, len
);
58 fLog
= fopen(filename
, "a");
60 printf("Could not append log file %s", filename
);
64 fprintf(fLog
, "%s", extData
);
65 fprintf(fLog
, "%s\n", c
);
69 void AddLogHex(char *fileName
, char *extData
, const uint8_t * data
, const size_t len
){
70 AddLogLine(fileName
, extData
, sprint_hex(data
, len
));
73 void AddLogUint64(char *fileName
, char *extData
, const uint64_t data
) {
75 sprintf(buf
, "%x%x", (unsigned int)((data
& 0xFFFFFFFF00000000) >> 32), (unsigned int)(data
& 0xFFFFFFFF));
76 AddLogLine(fileName
, extData
, buf
);
79 void AddLogCurrentDT(char *fileName
) {
84 curTime
= gmtime(&now
);
86 strftime (buff
, sizeof(buff
), "%Y-%m-%d %H:%M:%S", curTime
);
87 AddLogLine(fileName
, "\nanticollision: ", buff
);
90 void FillFileNameByUID(char *fileName
, uint8_t * uid
, char *ext
, int byteCount
) {
91 char * fnameptr
= fileName
;
92 memset(fileName
, 0x00, 200);
94 for (int j
= 0; j
< byteCount
; j
++, fnameptr
+= 2)
95 sprintf(fnameptr
, "%02x", uid
[j
]);
96 sprintf(fnameptr
, "%s", ext
);
99 // printing and converting functions
101 void print_hex(const uint8_t * data
, const size_t len
)
105 for (i
=0; i
< len
; i
++)
106 printf("%02x ", data
[i
]);
111 char * sprint_hex(const uint8_t * data
, const size_t len
) {
113 int maxLen
= ( len
> 1024/3) ? 1024/3 : len
;
114 static char buf
[1024];
115 memset(buf
, 0x00, 1024);
119 for (i
=0; i
< maxLen
; ++i
, tmp
+= 3)
120 sprintf(tmp
, "%02x ", data
[i
]);
125 char *sprint_bin_break(const uint8_t *data
, const size_t len
, const uint8_t breaks
) {
127 int maxLen
= ( len
> 1020) ? 1020 : len
;
128 static char buf
[1024];
129 memset(buf
, 0x00, 1024);
132 for (size_t i
=0; i
< maxLen
; ++i
){
133 sprintf(tmp
++, "%u", data
[i
]);
134 if (breaks
> 0 && !((i
+1) % breaks
))
135 sprintf(tmp
++, "%s","\n");
141 char *sprint_bin(const uint8_t *data
, const size_t len
) {
142 return sprint_bin_break(data
, len
, 0);
144 void num_to_bytes(uint64_t n
, size_t len
, uint8_t* dest
)
147 dest
[len
] = (uint8_t) n
;
152 uint64_t bytes_to_num(uint8_t* src
, size_t len
)
157 num
= (num
<< 8) | (*src
);
163 // aa,bb,cc,dd,ee,ff,gg,hh, ii,jj,kk,ll,mm,nn,oo,pp
165 // hh,gg,ff,ee,dd,cc,bb,aa, pp,oo,nn,mm,ll,kk,jj,ii
166 // up to 64 bytes or 512 bits
167 uint8_t *SwapEndian64(const uint8_t *src
, const size_t len
, const uint8_t blockSize
){
168 static uint8_t buf
[64];
169 memset(buf
, 0x00, 64);
171 for (uint8_t block
=0; block
< (uint8_t)(len
/blockSize
); block
++){
172 for (size_t i
= 0; i
< blockSize
; i
++){
173 tmp
[i
+(blockSize
*block
)] = src
[(blockSize
-1-i
)+(blockSize
*block
)];
179 //assumes little endian
180 char * printBits(size_t const size
, void const * const ptr
)
182 unsigned char *b
= (unsigned char*) ptr
;
184 static char buf
[1024];
188 for (i
=size
-1;i
>=0;i
--)
192 byte
= b
[i
] & (1<<j
);
194 sprintf(tmp
, "%u", byte
);
201 // -------------------------------------------------------------------------
202 // string parameters lib
203 // -------------------------------------------------------------------------
205 // -------------------------------------------------------------------------
207 // bg, en - symbol numbers in param line of beginning an ending parameter
208 // paramnum - param number (from 0)
209 // -------------------------------------------------------------------------
210 int param_getptr(const char *line
, int *bg
, int *en
, int paramnum
)
213 int len
= strlen(line
);
219 while (line
[*bg
] ==' ' || line
[*bg
]=='\t') (*bg
)++;
224 for (i
= 0; i
< paramnum
; i
++) {
225 while (line
[*bg
]!=' ' && line
[*bg
]!='\t' && line
[*bg
] != '\0') (*bg
)++;
226 while (line
[*bg
]==' ' || line
[*bg
]=='\t') (*bg
)++;
228 if (line
[*bg
] == '\0') return 1;
232 while (line
[*en
] != ' ' && line
[*en
] != '\t' && line
[*en
] != '\0') (*en
)++;
240 char param_getchar(const char *line
, int paramnum
)
244 if (param_getptr(line
, &bg
, &en
, paramnum
)) return 0x00;
249 uint8_t param_get8(const char *line
, int paramnum
)
251 return param_get8ex(line
, paramnum
, 10, 0);
255 * @brief Reads a decimal integer (actually, 0-254, not 255)
258 * @return -1 if error
260 uint8_t param_getdec(const char *line
, int paramnum
, uint8_t *destination
)
262 uint8_t val
= param_get8ex(line
, paramnum
, 255, 10);
263 if( (int8_t) val
== -1) return 1;
264 (*destination
) = val
;
268 * @brief Checks if param is decimal
273 uint8_t param_isdec(const char *line
, int paramnum
)
276 //TODO, check more thorougly
277 if (!param_getptr(line
, &bg
, &en
, paramnum
)) return 1;
278 // return strtoul(&line[bg], NULL, 10) & 0xff;
283 uint8_t param_get8ex(const char *line
, int paramnum
, int deflt
, int base
)
287 if (!param_getptr(line
, &bg
, &en
, paramnum
))
288 return strtoul(&line
[bg
], NULL
, base
) & 0xff;
293 uint32_t param_get32ex(const char *line
, int paramnum
, int deflt
, int base
)
297 if (!param_getptr(line
, &bg
, &en
, paramnum
))
298 return strtoul(&line
[bg
], NULL
, base
);
303 uint64_t param_get64ex(const char *line
, int paramnum
, int deflt
, int base
)
307 if (!param_getptr(line
, &bg
, &en
, paramnum
))
308 return strtoull(&line
[bg
], NULL
, base
);
315 int param_gethex(const char *line
, int paramnum
, uint8_t * data
, int hexcnt
)
322 if (param_getptr(line
, &bg
, &en
, paramnum
)) return 1;
324 if (en
- bg
+ 1 != hexcnt
)
327 for(i
= 0; i
< hexcnt
; i
+= 2) {
328 if (!(isxdigit(line
[bg
+ i
]) && isxdigit(line
[bg
+ i
+ 1])) ) return 1;
330 sscanf((char[]){line
[bg
+ i
], line
[bg
+ i
+ 1], 0}, "%X", &temp
);
331 data
[i
/ 2] = temp
& 0xff;
337 int param_getstr(const char *line
, int paramnum
, char * str
)
341 if (param_getptr(line
, &bg
, &en
, paramnum
)) return 0;
343 memcpy(str
, line
+ bg
, en
- bg
+ 1);
344 str
[en
- bg
+ 1] = 0;
350 The following methods comes from Rfidler sourcecode.
351 https://github.com/ApertureLabsLtd/RFIDler/blob/master/firmware/Pic32/RFIDler.X/src/
354 // convert hex to sequence of 0/1 bit values
355 // returns number of bits converted
356 int hextobinarray(char *target
, char *source
)
358 int length
, i
, count
= 0;
361 length
= strlen(source
);
362 // process 4 bits (1 hex digit) at a time
367 if (x
>= 'a' && x
<= 'f')
369 // convert to numeric value
370 if (x
>= '0' && x
<= '9')
372 else if (x
>= 'A' && x
<= 'F')
377 for(i
= 0 ; i
< 4 ; ++i
, ++count
)
378 *(target
++)= (x
>> (3 - i
)) & 1;
384 // convert hex to human readable binary string
385 int hextobinstring(char *target
, char *source
)
389 if(!(length
= hextobinarray(target
, source
)))
391 binarraytobinstring(target
, target
, length
);
395 // convert binary array of 0x00/0x01 values to hex (safe to do in place as target will always be shorter than source)
396 // return number of bits converted
397 int binarraytohex(char *target
, char *source
, int length
)
407 for(i
= x
= 0 ; i
< 4 ; ++i
)
408 x
+= ( source
[i
] << (3 - i
));
409 sprintf(target
,"%X", x
);
417 // convert binary array to human readable binary
418 void binarraytobinstring(char *target
, char *source
, int length
)
422 for(i
= 0 ; i
< length
; ++i
)
423 *(target
++)= *(source
++) + '0';
427 // return parity bit required to match type
428 uint8_t GetParity( char *bits
, uint8_t type
, int length
)
432 for(x
= 0 ; length
> 0 ; --length
)
433 x
+= bits
[length
- 1];
439 // add HID parity to binary array: EVEN prefix for 1st half of ID, ODD suffix for 2nd half
440 void wiegand_add_parity(char *target
, char *source
, char length
)
442 *(target
++)= GetParity(source
, EVEN
, length
/ 2);
443 memcpy(target
, source
, length
);
445 *(target
)= GetParity(source
+ length
/ 2, ODD
, length
/ 2);