1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2009 Michael Gernoth <michael at gernoth.net>
3 // Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
5 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
6 // at your option, any later version. See the LICENSE.txt file for the text of
8 //-----------------------------------------------------------------------------
10 //-----------------------------------------------------------------------------
17 #include <readline/readline.h>
18 #include <readline/history.h>
20 #include "proxmark3.h"
26 #include "cmdparser.h"
31 // a global mutex to prevent interlaced printing from different threads
32 pthread_mutex_t print_lock
;
34 static serial_port sp
;
35 static UsbCommand txcmd
;
36 volatile static bool txcmd_pending
= false;
38 void SendCommand(UsbCommand
*c
) {
40 printf("Sending %d bytes\n", sizeof(UsbCommand
));
44 PrintAndLog("Sending bytes to proxmark failed - offline");
48 The while-loop below causes hangups at times, when the pm3 unit is unresponsive
49 or disconnected. The main console thread is alive, but comm thread just spins here.
61 struct main_loop_arg
{
63 char *script_cmds_file
;
69 static void *uart_receiver(void *targ
) {
70 struct receiver_arg
*arg
= (struct receiver_arg
*)targ
;
75 rxlen
= sizeof(UsbCommand
);
76 if (uart_receive(sp
, prx
, &rxlen
)) {
78 if (((prx
-rx
) % sizeof(UsbCommand
)) != 0) {
81 cmd_count
= (prx
-rx
) / sizeof(UsbCommand
);
83 for (size_t i
= 0; i
< cmd_count
; i
++) {
84 UsbCommandReceived((UsbCommand
*)(rx
+(i
*sizeof(UsbCommand
))));
90 if (!uart_send(sp
, (byte_t
*) &txcmd
, sizeof(UsbCommand
))) {
91 PrintAndLog("Sending bytes to proxmark failed");
93 txcmd_pending
= false;
101 static void *main_loop(void *targ
) {
102 struct main_loop_arg
*arg
= (struct main_loop_arg
*)targ
;
103 struct receiver_arg rarg
;
105 pthread_t reader_thread
;
107 if (arg
->usb_present
== 1) {
109 pthread_create(&reader_thread
, NULL
, &uart_receiver
, &rarg
);
110 // cache Version information now:
114 FILE *script_file
= NULL
;
115 char script_cmd_buf
[256]; // iceman, needs lua script the same file_path_buffer as the rest
117 if (arg
->script_cmds_file
) {
118 script_file
= fopen(arg
->script_cmds_file
, "r");
120 printf("using 'scripting' commands file %s\n", arg
->script_cmds_file
);
124 read_history(".history");
128 // If there is a script file
131 if (!fgets(script_cmd_buf
, sizeof(script_cmd_buf
), script_file
)) {
136 nl
= strrchr(script_cmd_buf
, '\r');
139 nl
= strrchr(script_cmd_buf
, '\n');
142 if ((cmd
= (char*) malloc(strlen(script_cmd_buf
) + 1)) != NULL
) {
143 memset(cmd
, 0, strlen(script_cmd_buf
));
144 strcpy(cmd
, script_cmd_buf
);
151 cmd
= readline(PROXPROMPT
);
156 while(cmd
[strlen(cmd
) - 1] == ' ')
157 cmd
[strlen(cmd
) - 1] = 0x00;
159 if (cmd
[0] != 0x00) {
160 int ret
= CommandReceived(cmd
);
162 if (ret
== 99) { // exit or quit
173 write_history(".history");
175 if (arg
->usb_present
== 1) {
177 pthread_join(reader_thread
, NULL
);
190 static void dumpAllHelp(int markdown
)
192 printf("\n%sProxmark3 command dump%s\n\n",markdown
?"# ":"",markdown
?"":"\n======================");
193 printf("Some commands are available only if a Proxmark is actually connected.%s\n",markdown
?" ":"");
194 printf("Check column \"offline\" for their availability.\n");
196 command_t
*cmds
= getTopLevelCommandTable();
197 dumpCommandsRecursive(cmds
, markdown
);
200 static char *my_executable_path
= NULL
;
201 static char *my_executable_directory
= NULL
;
203 const char const *get_my_executable_path(void)
205 return my_executable_path
;
208 const char const *get_my_executable_directory(void)
210 return my_executable_directory
;
213 static void set_my_executable_path(void)
215 int path_length
= wai_getExecutablePath(NULL
, 0, NULL
);
216 if (path_length
!= -1) {
217 my_executable_path
= (char*)malloc(path_length
+ 1);
218 int dirname_length
= 0;
219 if (wai_getExecutablePath(my_executable_path
, path_length
, &dirname_length
) != -1) {
220 my_executable_path
[path_length
] = '\0';
221 my_executable_directory
= (char *)malloc(dirname_length
+ 2);
222 strncpy(my_executable_directory
, my_executable_path
, dirname_length
+1);
227 int main(int argc
, char* argv
[]) {
231 printf("syntax: %s <port>\n\n",argv
[0]);
232 printf("\tLinux example:'%s /dev/ttyACM0'\n\n", argv
[0]);
233 printf("help: %s -h\n\n", argv
[0]);
234 printf("\tDump all interactive help at once\n");
235 printf("markdown: %s -m\n\n", argv
[0]);
236 printf("\tDump all interactive help at once in markdown syntax\n");
239 if (strcmp(argv
[1], "-h") == 0) {
240 printf("syntax: %s <port>\n\n",argv
[0]);
241 printf("\tLinux example:'%s /dev/ttyACM0'\n\n", argv
[0]);
245 if (strcmp(argv
[1], "-m") == 0) {
250 set_my_executable_path();
252 // Make sure to initialize
253 struct main_loop_arg marg
= {
255 .script_cmds_file
= NULL
257 pthread_t main_loop_threat
;
260 sp
= uart_open(argv
[1]);
261 if (sp
== INVALID_SERIAL_PORT
) {
262 printf("ERROR: invalid serial port\n");
263 marg
.usb_present
= 0;
265 } else if (sp
== CLAIMED_SERIAL_PORT
) {
266 printf("ERROR: serial port is claimed by another process\n");
267 marg
.usb_present
= 0;
270 marg
.usb_present
= 1;
274 // If the user passed the filename of the 'script' to execute, get it
275 if (argc
> 2 && argv
[2]) {
276 if (argv
[2][0] == 'f' && //buzzy, if a word 'flush' passed, flush the output after every log entry.
282 printf("Output will be flushed after every print.\n");
286 marg
.script_cmds_file
= argv
[2];
289 // create a mutex to avoid interlacing print commands from our different threads
290 pthread_mutex_init(&print_lock
, NULL
);
292 pthread_create(&main_loop_threat
, NULL
, &main_loop
, &marg
);
293 InitGraphics(argc
, argv
);
297 pthread_join(main_loop_threat
, NULL
);
305 pthread_mutex_destroy(&print_lock
);