]> git.zerfleddert.de Git - proxmark3-svn/blob - client/proxmark3.c
fe3ba7c5f316094188c04f896d7134c77523112b
[proxmark3-svn] / client / proxmark3.c
1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2009 Michael Gernoth <michael at gernoth.net>
3 // Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
4 //
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
7 // the license.
8 //-----------------------------------------------------------------------------
9 // Main binary
10 //-----------------------------------------------------------------------------
11
12 #include <stdio.h>
13 #include <stdlib.h>
14 #include <string.h>
15 #include <pthread.h>
16 #include <unistd.h>
17 #include <readline/readline.h>
18 #include <readline/history.h>
19 #include "proxusb.h"
20 #include "proxmark3.h"
21 #include "proxgui.h"
22 #include "cmdmain.h"
23
24 struct usb_receiver_arg
25 {
26 int run;
27 };
28
29 struct main_loop_arg
30 {
31 int usb_present;
32 };
33
34 static void *usb_receiver(void *targ)
35 {
36 struct usb_receiver_arg *arg = (struct usb_receiver_arg*)targ;
37 UsbCommand cmdbuf;
38
39 while (arg->run) {
40 if (ReceiveCommandPoll(&cmdbuf)) {
41 for (int i = 0; i < strlen(PROXPROMPT); i++)
42 putchar(0x08);
43 UsbCommandReceived(&cmdbuf);
44 // there is a big bug )
45 if (cmdbuf.cmd > 0x0100 && cmdbuf.cmd < 0x0110) { // debug commands
46 rl_on_new_line_with_prompt();
47 rl_forced_update_display();
48 }
49 fflush(NULL);
50 }
51 }
52
53 pthread_exit(NULL);
54 return NULL;
55 }
56
57 static void *main_loop(void *targ)
58 {
59 struct main_loop_arg *arg = (struct main_loop_arg*)targ;
60 struct usb_receiver_arg rarg;
61 char *cmd = NULL;
62 pthread_t reader_thread;
63
64 if (arg->usb_present == 1) {
65 rarg.run=1;
66 pthread_create(&reader_thread, NULL, &usb_receiver, &rarg);
67 }
68
69 read_history(".history");
70 while(1) {
71 cmd = readline(PROXPROMPT);
72 if (cmd) {
73 while(cmd[strlen(cmd) - 1] == ' ')
74 cmd[strlen(cmd) - 1] = 0x00;
75
76 if (cmd[0] != 0x00) {
77 if (strncmp(cmd, "quit", 4) == 0) {
78 write_history(".history");
79 break;
80 }
81
82 CommandReceived(cmd);
83 add_history(cmd);
84 }
85 free(cmd);
86 } else {
87 printf("\n");
88 break;
89 }
90 }
91
92 if (arg->usb_present == 1) {
93 rarg.run = 0;
94 pthread_join(reader_thread, NULL);
95 }
96
97 ExitGraphics();
98 pthread_exit(NULL);
99 return NULL;
100 }
101
102 int main(int argc, char **argv)
103 {
104 struct main_loop_arg marg;
105 pthread_t main_loop_t;
106 usb_init();
107
108 if (!OpenProxmark(1)) {
109 fprintf(stderr,"PROXMARK3: NOT FOUND!\n");
110 marg.usb_present = 0;
111 offline = 1;
112 } else {
113 marg.usb_present = 1;
114 offline = 0;
115 }
116
117 pthread_create(&main_loop_t, NULL, &main_loop, &marg);
118 InitGraphics(argc, argv);
119
120 MainGraphics();
121
122 pthread_join(main_loop_t, NULL);
123
124 if (marg.usb_present == 1) {
125 CloseProxmark();
126 }
127 return 0;
128 }
Impressum, Datenschutz