]>
git.zerfleddert.de Git - proxmark3-svn/blob - client/proxmark3.c
32e6320a1dd1b01c02c00de48b82c9dee0967c4b
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"
28 static serial_port sp
;
29 static UsbCommand txcmd
;
30 static bool txcmd_pending
= false;
32 void SendCommand(UsbCommand
*c
) {
34 printf("Sending %d bytes\n", sizeof(UsbCommand
));
38 ERR("Sending command failed, previous command is still pending");
50 struct main_loop_arg
{
52 char *script_cmds_file
;
55 //static void *usb_receiver(void *targ) {
56 // struct receiver_arg *arg = (struct receiver_arg*)targ;
60 // if (ReceiveCommandPoll(&cmdbuf)) {
61 // UsbCommandReceived(&cmdbuf);
66 // pthread_exit(NULL);
73 static void *uart_receiver(void *targ
) {
74 struct receiver_arg
*arg
= (struct receiver_arg
*)targ
;
79 rxlen
= sizeof(UsbCommand
);
80 if (uart_receive(sp
,prx
,&rxlen
)) {
82 if (((prx
-rx
) % sizeof(UsbCommand
)) != 0) {
85 cmd_count
= (prx
-rx
) / sizeof(UsbCommand
);
86 // printf("received %d bytes, which represents %d commands\n",(prx-rx), cmd_count);
87 for (size_t i
=0; i
<cmd_count
; i
++) {
88 UsbCommandReceived((UsbCommand
*)(rx
+(i
*sizeof(UsbCommand
))));
94 if (!uart_send(sp
,(byte_t
*)&txcmd
,sizeof(UsbCommand
))) {
95 PrintAndLog("Sending bytes to proxmark failed");
97 txcmd_pending
= false;
105 static void *main_loop(void *targ
) {
106 struct main_loop_arg
*arg
= (struct main_loop_arg
*)targ
;
107 struct receiver_arg rarg
;
109 pthread_t reader_thread
;
111 if (arg
->usb_present
== 1) {
113 // pthread_create(&reader_thread, NULL, &usb_receiver, &rarg);
114 pthread_create(&reader_thread
, NULL
, &uart_receiver
, &rarg
);
117 FILE *script_file
= NULL
;
118 char script_cmd_buf
[256];
120 if (arg
->script_cmds_file
)
122 script_file
= fopen(arg
->script_cmds_file
, "r");
125 printf("using 'scripting' commands file %s\n", arg
->script_cmds_file
);
129 read_history(".history");
132 // If there is a script file
135 if (!fgets(script_cmd_buf
, sizeof(script_cmd_buf
), script_file
))
143 nl
= strrchr(script_cmd_buf
, '\r');
145 nl
= strrchr(script_cmd_buf
, '\n');
148 if ((cmd
= (char*) malloc(strlen(script_cmd_buf
) + 1)) != NULL
)
150 memset(cmd
, 0, strlen(script_cmd_buf
));
151 strcpy(cmd
, script_cmd_buf
);
159 cmd
= readline(PROXPROMPT
);
163 while(cmd
[strlen(cmd
) - 1] == ' ')
164 cmd
[strlen(cmd
) - 1] = 0x00;
166 if (cmd
[0] != 0x00) {
167 if (strncmp(cmd
, "quit", 4) == 0) {
171 CommandReceived(cmd
);
181 write_history(".history");
183 if (arg
->usb_present
== 1) {
185 pthread_join(reader_thread
, NULL
);
199 int main(int argc
, char* argv
[]) {
203 printf("syntax: %s <port>\n\n",argv
[0]);
207 // Make sure to initialize
208 struct main_loop_arg marg
= {
210 .script_cmds_file
= NULL
212 pthread_t main_loop_t
;
216 if (!OpenProxmark(1)) {
217 fprintf(stderr,"PROXMARK3: NOT FOUND!\n");
218 marg.usb_present = 0;
221 marg.usb_present = 1;
225 sp
= uart_open(argv
[1]);
226 if (sp
== INVALID_SERIAL_PORT
) {
227 printf("ERROR: invalid serial port\n");
228 marg
.usb_present
= 0;
231 marg
.usb_present
= 1;
235 // If the user passed the filename of the 'script' to execute, get it
236 if (argc
> 2 && argv
[2]) {
237 marg
.script_cmds_file
= argv
[2];
240 pthread_create(&main_loop_t
, NULL
, &main_loop
, &marg
);
241 InitGraphics(argc
, argv
);
245 pthread_join(main_loop_t
, NULL
);
247 // if (marg.usb_present == 1) {