]>
cvs.zerfleddert.de Git - proxmark3-svn/blob - client/proxmark3.c
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"
27 static serial_port sp
;
28 static UsbCommand txcmd
;
29 static bool txcmd_pending
= false;
31 void SendCommand(UsbCommand
*c
) {
33 printf("Sending %d bytes\n", sizeof(UsbCommand
));
37 ERR("Sending command failed, previous command is still pending");
49 struct main_loop_arg
{
51 char *script_cmds_file
;
54 //static void *usb_receiver(void *targ) {
55 // struct receiver_arg *arg = (struct receiver_arg*)targ;
59 // if (ReceiveCommandPoll(&cmdbuf)) {
60 // UsbCommandReceived(&cmdbuf);
65 // pthread_exit(NULL);
72 static void *uart_receiver(void *targ
) {
73 struct receiver_arg
*arg
= (struct receiver_arg
*)targ
;
78 rxlen
= sizeof(UsbCommand
);
79 if (uart_receive(sp
,prx
,&rxlen
)) {
81 if (((prx
-rx
) % sizeof(UsbCommand
)) != 0) {
84 cmd_count
= (prx
-rx
) / sizeof(UsbCommand
);
85 // printf("received %d bytes, which represents %d commands\n",(prx-rx), cmd_count);
86 for (size_t i
=0; i
<cmd_count
; i
++) {
87 UsbCommandReceived((UsbCommand
*)(rx
+(i
*sizeof(UsbCommand
))));
93 if (!uart_send(sp
,(byte_t
*)&txcmd
,sizeof(UsbCommand
))) {
94 PrintAndLog("Sending bytes to proxmark failed");
96 txcmd_pending
= false;
104 static void *main_loop(void *targ
) {
105 struct main_loop_arg
*arg
= (struct main_loop_arg
*)targ
;
106 struct receiver_arg rarg
;
108 pthread_t reader_thread
;
110 if (arg
->usb_present
== 1) {
112 // pthread_create(&reader_thread, NULL, &usb_receiver, &rarg);
113 pthread_create(&reader_thread
, NULL
, &uart_receiver
, &rarg
);
116 FILE *script_file
= NULL
;
117 char script_cmd_buf
[256];
119 if (arg
->script_cmds_file
)
121 script_file
= fopen(arg
->script_cmds_file
, "r");
124 printf("using 'scripting' commands file %s\n", arg
->script_cmds_file
);
128 read_history(".history");
131 // If there is a script file
134 if (!fgets(script_cmd_buf
, sizeof(script_cmd_buf
), script_file
))
142 nl
= strrchr(script_cmd_buf
, '\r');
144 nl
= strrchr(script_cmd_buf
, '\n');
147 if ((cmd
= (char*) malloc(strlen(script_cmd_buf
))) != NULL
)
149 memset(cmd
, 0, strlen(script_cmd_buf
));
150 strcpy(cmd
, script_cmd_buf
);
158 cmd
= readline(PROXPROMPT
);
162 while(cmd
[strlen(cmd
) - 1] == ' ')
163 cmd
[strlen(cmd
) - 1] = 0x00;
165 if (cmd
[0] != 0x00) {
166 if (strncmp(cmd
, "quit", 4) == 0) {
170 CommandReceived(cmd
);
180 write_history(".history");
182 if (arg
->usb_present
== 1) {
184 pthread_join(reader_thread
, NULL
);
198 int main(int argc
, char* argv
[]) {
202 printf("syntax: %s <port>\n\n",argv
[0]);
206 // Make sure to initialize
207 struct main_loop_arg marg
= {
209 .script_cmds_file
= NULL
211 pthread_t main_loop_t
;
215 if (!OpenProxmark(1)) {
216 fprintf(stderr,"PROXMARK3: NOT FOUND!\n");
217 marg.usb_present = 0;
220 marg.usb_present = 1;
224 sp
= uart_open(argv
[1]);
225 if (sp
== INVALID_SERIAL_PORT
) {
226 printf("ERROR: invalid serial port\n");
227 marg
.usb_present
= 0;
230 marg
.usb_present
= 1;
234 // If the user passed the filename of the 'script' to execute, get it
235 if (argc
> 2 && argv
[2]) {
236 marg
.script_cmds_file
= argv
[2];
239 pthread_create(&main_loop_t
, NULL
, &main_loop
, &marg
);
240 InitGraphics(argc
, argv
);
244 pthread_join(main_loop_t
, NULL
);
246 // if (marg.usb_present == 1) {