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>
19 //#include "proxusb.h"
20 #include "proxmark3.h"
26 #include "cmdparser.h"
29 // a global mutex to prevent interlaced printing from different threads
30 pthread_mutex_t print_lock
;
32 static serial_port sp
;
33 static UsbCommand txcmd
;
34 volatile static bool txcmd_pending
= false;
36 void SendCommand(UsbCommand
*c
) {
38 printf("Sending %d bytes\n", sizeof(UsbCommand
));
42 ERR("Sending command failed, previous command is still pending");
47 PrintAndLog("Sending bytes to proxmark failed - offline");
60 struct main_loop_arg
{
62 char *script_cmds_file
;
68 static void *uart_receiver(void *targ
) {
69 struct receiver_arg
*arg
= (struct receiver_arg
*)targ
;
74 rxlen
= sizeof(UsbCommand
);
75 if (uart_receive(sp
,prx
,&rxlen
)) {
77 if (((prx
-rx
) % sizeof(UsbCommand
)) != 0) {
80 cmd_count
= (prx
-rx
) / sizeof(UsbCommand
);
81 // printf("received %d bytes, which represents %d commands\n",(prx-rx), cmd_count);
82 for (size_t i
=0; i
<cmd_count
; i
++) {
83 UsbCommandReceived((UsbCommand
*)(rx
+(i
*sizeof(UsbCommand
))));
89 if (!uart_send(sp
,(byte_t
*)&txcmd
,sizeof(UsbCommand
))) {
90 PrintAndLog("Sending bytes to proxmark failed");
92 txcmd_pending
= false;
100 static void *main_loop(void *targ
) {
101 struct main_loop_arg
*arg
= (struct main_loop_arg
*)targ
;
102 struct receiver_arg rarg
;
104 pthread_t reader_thread
;
106 if (arg
->usb_present
== 1) {
108 // pthread_create(&reader_thread, NULL, &usb_receiver, &rarg);
109 pthread_create(&reader_thread
, NULL
, &uart_receiver
, &rarg
);
112 FILE *script_file
= NULL
;
113 char script_cmd_buf
[256];
115 if (arg
->script_cmds_file
)
117 script_file
= fopen(arg
->script_cmds_file
, "r");
120 printf("using 'scripting' commands file %s\n", arg
->script_cmds_file
);
124 read_history(".history");
127 // If there is a script file
130 if (!fgets(script_cmd_buf
, sizeof(script_cmd_buf
), script_file
))
138 nl
= strrchr(script_cmd_buf
, '\r');
140 nl
= strrchr(script_cmd_buf
, '\n');
143 if ((cmd
= (char*) malloc(strlen(script_cmd_buf
) + 1)) != NULL
)
145 memset(cmd
, 0, strlen(script_cmd_buf
));
146 strcpy(cmd
, script_cmd_buf
);
154 cmd
= readline(PROXPROMPT
);
158 while(cmd
[strlen(cmd
) - 1] == ' ')
159 cmd
[strlen(cmd
) - 1] = 0x00;
161 if (cmd
[0] != 0x00) {
162 if (strncmp(cmd
, "quit", 4) == 0) {
167 CommandReceived(cmd
);
177 write_history(".history");
179 if (arg
->usb_present
== 1) {
181 pthread_join(reader_thread
, NULL
);
195 static void dumpAllHelp(int markdown
)
197 printf("\n%sProxmark3 command dump%s\n\n",markdown
?"# ":"",markdown
?"":"\n======================");
198 printf("Some commands are available only if a Proxmark is actually connected.%s\n",markdown
?" ":"");
199 printf("Check column \"offline\" for their availability.\n");
201 command_t
*cmds
= getTopLevelCommandTable();
202 dumpCommandsRecursive(cmds
, markdown
);
205 int main(int argc
, char* argv
[]) {
209 printf("syntax: %s <port>\n\n",argv
[0]);
210 printf("\tLinux example:'%s /dev/ttyACM0'\n\n", argv
[0]);
211 printf("help: %s -h\n\n", argv
[0]);
212 printf("\tDump all interactive help at once\n");
213 printf("markdown: %s -m\n\n", argv
[0]);
214 printf("\tDump all interactive help at once in markdown syntax\n");
217 if (strcmp(argv
[1], "-h") == 0) {
218 printf("syntax: %s <port>\n\n",argv
[0]);
219 printf("\tLinux example:'%s /dev/ttyACM0'\n\n", argv
[0]);
223 if (strcmp(argv
[1], "-m") == 0) {
227 // Make sure to initialize
228 struct main_loop_arg marg
= {
230 .script_cmds_file
= NULL
232 pthread_t main_loop_t
;
235 sp
= uart_open(argv
[1]);
236 if (sp
== INVALID_SERIAL_PORT
) {
237 printf("ERROR: invalid serial port\n");
238 marg
.usb_present
= 0;
240 } else if (sp
== CLAIMED_SERIAL_PORT
) {
241 printf("ERROR: serial port is claimed by another process\n");
242 marg
.usb_present
= 0;
245 marg
.usb_present
= 1;
249 // If the user passed the filename of the 'script' to execute, get it
250 if (argc
> 2 && argv
[2]) {
251 if (argv
[2][0] == 'f' && //buzzy, if a word 'flush' passed, flush the output after every log entry.
257 printf("Output will be flushed after every print.\n");
261 marg
.script_cmds_file
= argv
[2];
264 // create a mutex to avoid interlacing print commands from our different threads
265 pthread_mutex_init(&print_lock
, NULL
);
267 pthread_create(&main_loop_t
, NULL
, &main_loop
, &marg
);
268 InitGraphics(argc
, argv
);
272 pthread_join(main_loop_t
, NULL
);
278 pthread_mutex_destroy(&print_lock
);