]>
Commit | Line | Data |
---|---|---|
2ae8a312 | 1 | /***************************************************************************** |
2 | * WARNING | |
3 | * | |
4 | * THIS CODE IS CREATED FOR EXPERIMENTATION AND EDUCATIONAL USE ONLY. | |
5 | * | |
6 | * USAGE OF THIS CODE IN OTHER WAYS MAY INFRINGE UPON THE INTELLECTUAL | |
7 | * PROPERTY OF OTHER PARTIES, SUCH AS INSIDE SECURE AND HID GLOBAL, | |
8 | * AND MAY EXPOSE YOU TO AN INFRINGEMENT ACTION FROM THOSE PARTIES. | |
9 | * | |
10 | * THIS CODE SHOULD NEVER BE USED TO INFRINGE PATENTS OR INTELLECTUAL PROPERTY RIGHTS. | |
11 | * | |
12 | ***************************************************************************** | |
13 | * | |
14 | * This file is part of loclass. It is a reconstructon of the cipher engine | |
15 | * used in iClass, and RFID techology. | |
16 | * | |
17 | * The implementation is based on the work performed by | |
18 | * Flavio D. Garcia, Gerhard de Koning Gans, Roel Verdult and | |
19 | * Milosch Meriac in the paper "Dismantling IClass". | |
20 | * | |
21 | * Copyright (C) 2014 Martin Holst Swende | |
22 | * | |
23 | * This is free software: you can redistribute it and/or modify | |
24 | * it under the terms of the GNU General Public License version 2 as published | |
25 | * by the Free Software Foundation. | |
26 | * | |
27 | * This file is distributed in the hope that it will be useful, | |
28 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
29 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
30 | * GNU General Public License for more details. | |
31 | * | |
32 | * You should have received a copy of the GNU General Public License | |
33 | * along with loclass. If not, see <http://www.gnu.org/licenses/>. | |
34 | * | |
35 | * | |
36 | * | |
37 | ****************************************************************************/ | |
38 | ||
f38a1528 | 39 | #include <stdio.h> |
40 | #include <string.h> | |
41 | #include <stdlib.h> | |
42 | #include <sys/stat.h> | |
43 | #include <stdarg.h> | |
44 | #include "fileutils.h" | |
45 | #include "ui.h" | |
46 | /** | |
47 | * @brief checks if a file exists | |
48 | * @param filename | |
49 | * @return | |
50 | */ | |
51 | int fileExists(const char *filename) { | |
8d0a3e87 | 52 | |
53 | #ifdef _WIN32 | |
313ee67e | 54 | struct _stat fileStat; |
55 | int result = _stat(filename, &fileStat); | |
8d0a3e87 | 56 | #else |
57 | struct stat fileStat; | |
58 | int result = stat(filename, &fileStat); | |
59 | #endif | |
f38a1528 | 60 | return result == 0; |
61 | } | |
62 | ||
63 | int saveFile(const char *preferredName, const char *suffix, const void* data, size_t datalen) | |
64 | { | |
a501c82b | 65 | int size = sizeof(char) * (strlen(preferredName)+strlen(suffix)+10); |
f38a1528 | 66 | char * fileName = malloc(size); |
67 | ||
68 | memset(fileName,0,size); | |
69 | int num = 1; | |
70 | sprintf(fileName,"%s.%s", preferredName, suffix); | |
71 | while(fileExists(fileName)) | |
72 | { | |
73 | sprintf(fileName,"%s-%d.%s", preferredName, num, suffix); | |
74 | num++; | |
75 | } | |
76 | /* We should have a valid filename now, e.g. dumpdata-3.bin */ | |
77 | ||
78 | /*Opening file for writing in binary mode*/ | |
a501c82b | 79 | FILE *fh=fopen(fileName,"wb"); |
80 | if(!fh) { | |
81 | PrintAndLog("Failed to write to file '%s'", fileName); | |
f38a1528 | 82 | return 1; |
83 | } | |
a501c82b | 84 | fwrite(data, 1, datalen, fh); |
85 | fclose(fh); | |
86 | PrintAndLog("Saved data to '%s'", fileName); | |
f38a1528 | 87 | free(fileName); |
88 | ||
89 | return 0; | |
90 | } | |
91 | ||
2ae8a312 | 92 | int loadFile(const char *fileName, void* data, size_t datalen) |
93 | { | |
94 | FILE *filehandle = fopen(fileName, "rb"); | |
95 | if(!filehandle) { | |
a501c82b | 96 | PrintAndLog("Failed to read from file '%s'", fileName); |
2ae8a312 | 97 | return 1; |
98 | } | |
99 | fread(data,datalen,1,filehandle); | |
100 | fclose(filehandle); | |
101 | return 0; | |
102 | } | |
f38a1528 | 103 | /** |
104 | * Utility function to print to console. This is used consistently within the library instead | |
105 | * of printf, but it actually only calls printf (and adds a linebreak). | |
106 | * The reason to have this method is to | |
107 | * make it simple to plug this library into proxmark, which has this function already to | |
108 | * write also to a logfile. When doing so, just delete this function. | |
109 | * @param fmt | |
110 | */ | |
111 | void prnlog(char *fmt, ...) | |
112 | { | |
113 | ||
114 | va_list args; | |
115 | va_start(args,fmt); | |
116 | PrintAndLog(fmt, args); | |
117 | //vprintf(fmt,args); | |
118 | va_end(args); | |
119 | //printf("\n"); | |
120 | } |