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
;
65 //static void *usb_receiver(void *targ) {
66 // struct receiver_arg *arg = (struct receiver_arg*)targ;
70 // if (ReceiveCommandPoll(&cmdbuf)) {
71 // UsbCommandReceived(&cmdbuf);
76 // pthread_exit(NULL);
83 static void *uart_receiver(void *targ
) {
84 struct receiver_arg
*arg
= (struct receiver_arg
*)targ
;
89 rxlen
= sizeof(UsbCommand
);
90 if (uart_receive(sp
,prx
,&rxlen
)) {
92 if (((prx
-rx
) % sizeof(UsbCommand
)) != 0) {
95 cmd_count
= (prx
-rx
) / sizeof(UsbCommand
);
96 // printf("received %d bytes, which represents %d commands\n",(prx-rx), cmd_count);
97 for (size_t i
=0; i
<cmd_count
; i
++) {
98 UsbCommandReceived((UsbCommand
*)(rx
+(i
*sizeof(UsbCommand
))));
104 if (!uart_send(sp
,(byte_t
*)&txcmd
,sizeof(UsbCommand
))) {
105 PrintAndLog("Sending bytes to proxmark failed");
107 txcmd_pending
= false;
115 static void *main_loop(void *targ
) {
116 struct main_loop_arg
*arg
= (struct main_loop_arg
*)targ
;
117 struct receiver_arg rarg
;
119 pthread_t reader_thread
;
121 if (arg
->usb_present
== 1) {
123 // pthread_create(&reader_thread, NULL, &usb_receiver, &rarg);
124 pthread_create(&reader_thread
, NULL
, &uart_receiver
, &rarg
);
127 FILE *script_file
= NULL
;
128 char script_cmd_buf
[256];
130 if (arg
->script_cmds_file
)
132 script_file
= fopen(arg
->script_cmds_file
, "r");
135 printf("using 'scripting' commands file %s\n", arg
->script_cmds_file
);
139 read_history(".history");
142 // If there is a script file
145 if (!fgets(script_cmd_buf
, sizeof(script_cmd_buf
), script_file
))
153 nl
= strrchr(script_cmd_buf
, '\r');
155 nl
= strrchr(script_cmd_buf
, '\n');
158 if ((cmd
= (char*) malloc(strlen(script_cmd_buf
) + 1)) != NULL
)
160 memset(cmd
, 0, strlen(script_cmd_buf
));
161 strcpy(cmd
, script_cmd_buf
);
169 cmd
= readline(PROXPROMPT
);
173 while(cmd
[strlen(cmd
) - 1] == ' ')
174 cmd
[strlen(cmd
) - 1] = 0x00;
176 if (cmd
[0] != 0x00) {
177 if (strncmp(cmd
, "quit", 4) == 0) {
182 CommandReceived(cmd
);
192 write_history(".history");
194 if (arg
->usb_present
== 1) {
196 pthread_join(reader_thread
, NULL
);
210 //static void dumpHelp(char *parent, ...)
212 // printf("## %s\n\n", parent);
213 // CommandReceived(parent);
218 static void dumpAllHelp()
221 printf("\n# Proxmark3 command dump\n\n");
222 printf("Some commands are available only if a Proxmark is actually connected.\n");
223 printf("Check column \"offline\" for their availability.\n");
225 command_t
*cmds
= getTopLevelCommandTable();
227 dumpCommandsRecursive(cmds
);
231 int main(int argc
, char* argv
[]) {
235 printf("syntax: %s <port>\n\n",argv
[0]);
236 printf("\tLinux example:'%s /dev/ttyACM0'\n\n", argv
[0]);
237 printf("help: %s -h\n\n", argv
[0]);
238 printf("\tDump all interactive help at once\n");
242 if (strcmp(argv
[1], "-h") == 0) {
243 printf("syntax: %s <port>\n\n",argv
[0]);
244 printf("\tLinux example:'%s /dev/ttyACM0'\n\n", argv
[0]);
248 // Make sure to initialize
249 struct main_loop_arg marg
= {
251 .script_cmds_file
= NULL
253 pthread_t main_loop_t
;
257 if (!OpenProxmark(1)) {
258 fprintf(stderr,"PROXMARK3: NOT FOUND!\n");
259 marg.usb_present = 0;
262 marg.usb_present = 1;
267 sp
= uart_open(argv
[1]);
268 if (sp
== INVALID_SERIAL_PORT
) {
269 printf("ERROR: invalid serial port\n");
270 marg
.usb_present
= 0;
272 } else if (sp
== CLAIMED_SERIAL_PORT
) {
273 printf("ERROR: serial port is claimed by another process\n");
274 marg
.usb_present
= 0;
277 marg
.usb_present
= 1;
281 // If the user passed the filename of the 'script' to execute, get it
282 if (argc
> 2 && argv
[2]) {
283 if (argv
[2][0] == 'f' && //buzzy, if a word 'flush' passed, flush the output after every log entry.
289 printf("Output will be flushed after every print.\n");
293 marg
.script_cmds_file
= argv
[2];
296 // create a mutex to avoid interlacing print commands from our different threads
297 pthread_mutex_init(&print_lock
, NULL
);
299 pthread_create(&main_loop_t
, NULL
, &main_loop
, &marg
);
300 InitGraphics(argc
, argv
);
304 pthread_join(main_loop_t
, NULL
);
306 // if (marg.usb_present == 1) {
314 pthread_mutex_destroy(&print_lock
);