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"
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 PrintAndLog("Sending bytes to proxmark failed - offline");
46 The while-loop below causes hangups at times, when the pm3 unit is unresponsive
47 or disconnected. The main console thread is alive, but comm thread just spins here.
60 struct main_loop_arg
{
62 char *script_cmds_file
;
68 // static void showBanner(void){
69 // printf("██████╗ ███╗ ███╗ ████╗ ...Iceman fork\n");
70 // printf("██╔══██╗████╗ ████║ ══█║\n");
71 // printf("██████╔╝██╔████╔██║ ████╔╝\n");
72 // printf("██╔═══╝ ██║╚██╔╝██║ ══█║ iceman@icesql.net\n");
73 // printf("██║ ██║ ╚═╝ ██║ ████╔╝ https://github.com/iceman1001/proxmark3\n");
74 // printf("╚═╝ ╚═╝ ╚═╝ ╚═══╝v1.6.4\n");
78 static void *uart_receiver(void *targ
) {
79 struct receiver_arg
*arg
= (struct receiver_arg
*)targ
;
85 rxlen
= sizeof(UsbCommand
);
87 if (uart_receive(sp
, prx
, &rxlen
)) {
89 if (((prx
-rx
) % sizeof(UsbCommand
)) != 0)
92 cmd_count
= (prx
-rx
) / sizeof(UsbCommand
);
94 for (size_t i
= 0; i
< cmd_count
; i
++)
95 UsbCommandReceived((UsbCommand
*)( rx
+ ( i
* sizeof(UsbCommand
))));
101 if ( !uart_send(sp
, (byte_t
*) &txcmd
, sizeof(UsbCommand
))) {
102 PrintAndLog("Sending bytes to proxmark failed");
104 txcmd_pending
= false;
112 static void *main_loop(void *targ
) {
113 struct main_loop_arg
*arg
= (struct main_loop_arg
*)targ
;
114 struct receiver_arg rarg
;
116 pthread_t reader_thread
;
118 if (arg
->usb_present
== 1) {
120 pthread_create(&reader_thread
, NULL
, &uart_receiver
, &rarg
);
121 // cache Version information now:
125 FILE *script_file
= NULL
;
126 char script_cmd_buf
[256] = {0x00}; // iceman, needs lua script the same file_path_buffer as the rest
128 if (arg
->script_cmds_file
) {
129 script_file
= fopen(arg
->script_cmds_file
, "r");
132 printf("using 'scripting' commands file %s\n", arg
->script_cmds_file
);
135 read_history(".history");
139 // If there is a script file
142 if (!fgets(script_cmd_buf
, sizeof(script_cmd_buf
), script_file
)) {
147 nl
= strrchr(script_cmd_buf
, '\r');
151 nl
= strrchr(script_cmd_buf
, '\n');
156 int newlen
= strlen(script_cmd_buf
);
157 if ((cmd
= (char*) malloc( newlen
+ 1)) != NULL
) {
158 memset(cmd
, 0x00, newlen
);
159 strcpy(cmd
, script_cmd_buf
);
164 cmd
= readline(PROXPROMPT
);
167 // this one should pick up all non-null cmd...
171 while(cmd
[strlen(cmd
) - 1] == ' ')
172 cmd
[strlen(cmd
) - 1] = 0x00;
174 if (cmd
[0] != 0x00) {
175 int ret
= CommandReceived(cmd
);
195 write_history(".history");
200 if (arg
->usb_present
== 1) {
202 pthread_join(reader_thread
, NULL
);
210 static void dumpAllHelp(int markdown
)
212 printf("\n%sProxmark3 command dump%s\n\n",markdown
?"# ":"",markdown
?"":"\n======================");
213 printf("Some commands are available only if a Proxmark is actually connected.%s\n",markdown
?" ":"");
214 printf("Check column \"offline\" for their availability.\n");
216 command_t
*cmds
= getTopLevelCommandTable();
217 dumpCommandsRecursive(cmds
, markdown
);
220 int main(int argc
, char* argv
[]) {
224 printf("syntax: %s <port>\n\n",argv
[0]);
225 printf("\tLinux example:'%s /dev/ttyACM0'\n\n", argv
[0]);
226 printf("help: %s -h\n\n", argv
[0]);
227 printf("\tDump all interactive help at once\n");
228 printf("markdown: %s -m\n\n", argv
[0]);
229 printf("\tDump all interactive help at once in markdown syntax\n");
232 if (strcmp(argv
[1], "-h") == 0) {
233 printf("syntax: %s <port>\n\n",argv
[0]);
234 printf("\tLinux example:'%s /dev/ttyACM0'\n\n", argv
[0]);
238 if (strcmp(argv
[1], "-m") == 0) {
242 // Make sure to initialize
243 struct main_loop_arg marg
= {
245 .script_cmds_file
= NULL
248 pthread_t main_loop_threat
;
250 sp
= uart_open(argv
[1]);
251 if (sp
== INVALID_SERIAL_PORT
) {
252 printf("ERROR: invalid serial port\n");
253 marg
.usb_present
= 0;
255 } else if (sp
== CLAIMED_SERIAL_PORT
) {
256 printf("ERROR: serial port is claimed by another process\n");
257 marg
.usb_present
= 0;
260 marg
.usb_present
= 1;
264 // If the user passed the filename of the 'script' to execute, get it
265 if (argc
> 2 && argv
[2]) {
266 if (argv
[2][0] == 'f' && //buzzy, if a word 'flush' passed, flush the output after every log entry.
272 printf("Output will be flushed after every print.\n");
276 marg
.script_cmds_file
= argv
[2];
280 // create a mutex to avoid interlacing print commands from our different threads
281 pthread_mutex_init(&print_lock
, NULL
);
283 pthread_create(&main_loop_threat
, NULL
, &main_loop
, &marg
);
284 InitGraphics(argc
, argv
);
288 pthread_join(main_loop_threat
, NULL
);
295 pthread_mutex_destroy(&print_lock
);