]> git.zerfleddert.de Git - proxmark3-svn/blob - client/cmdmain.c
Fix reveng
[proxmark3-svn] / client / cmdmain.c
1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
3 //
4 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
5 // at your option, any later version. See the LICENSE.txt file for the text of
6 // the license.
7 //-----------------------------------------------------------------------------
8 // Main command parser entry point
9 //-----------------------------------------------------------------------------
10
11 #include <stdio.h>
12 #include <stdlib.h>
13 #include <unistd.h>
14 #include <string.h>
15 #include "sleep.h"
16 #include "cmdparser.h"
17 #include "proxmark3.h"
18 #include "data.h"
19 #include "usb_cmd.h"
20 #include "ui.h"
21 #include "cmdhf.h"
22 #include "cmddata.h"
23 #include "cmdhw.h"
24 #include "cmdlf.h"
25 #include "cmdmain.h"
26 #include "util.h"
27 #include "cmdscript.h"
28 #include "cmdcrc.h"
29
30
31 unsigned int current_command = CMD_UNKNOWN;
32
33 static int CmdHelp(const char *Cmd);
34 static int CmdQuit(const char *Cmd);
35 static int CmdRev(const char *Cmd);
36
37 //For storing command that are received from the device
38 static UsbCommand cmdBuffer[CMD_BUFFER_SIZE];
39 //Points to the next empty position to write to
40 static int cmd_head;//Starts as 0
41 //Points to the position of the last unread command
42 static int cmd_tail;//Starts as 0
43
44 static command_t CommandTable[] =
45 {
46 {"help", CmdHelp, 1, "This help. Use '<command> help' for details of a particular command."},
47 {"data", CmdData, 1, "{ Plot window / data buffer manipulation... }"},
48 {"hf", CmdHF, 1, "{ High Frequency commands... }"},
49 {"hw", CmdHW, 1, "{ Hardware commands... }"},
50 {"lf", CmdLF, 1, "{ Low Frequency commands... }"},
51 {"reveng",CmdRev, 1, "Crc calculations from the software reveng1-30"},
52 {"script",CmdScript,1, "{ Scripting commands }"},
53 {"quit", CmdQuit, 1, "Exit program"},
54 {"exit", CmdQuit, 1, "Exit program"},
55 {NULL, NULL, 0, NULL}
56 };
57
58 command_t* getTopLevelCommandTable()
59 {
60 return CommandTable;
61 }
62 int CmdHelp(const char *Cmd)
63 {
64 CmdsHelp(CommandTable);
65 return 0;
66 }
67
68 int CmdQuit(const char *Cmd)
69 {
70 exit(0);
71 return 0;
72 }
73
74 int CmdRev(const char *Cmd)
75 {
76 CmdCrc(Cmd);
77 return 0;
78 }
79 /**
80 * @brief This method should be called when sending a new command to the pm3. In case any old
81 * responses from previous commands are stored in the buffer, a call to this method should clear them.
82 * A better method could have been to have explicit command-ACKS, so we can know which ACK goes to which
83 * operation. Right now we'll just have to live with this.
84 */
85 void clearCommandBuffer()
86 {
87 //This is a very simple operation
88 cmd_tail = cmd_head;
89 }
90
91 /**
92 * @brief storeCommand stores a USB command in a circular buffer
93 * @param UC
94 */
95 void storeCommand(UsbCommand *command)
96 {
97 if( ( cmd_head+1) % CMD_BUFFER_SIZE == cmd_tail)
98 {
99 //If these two are equal, we're about to overwrite in the
100 // circular buffer.
101 PrintAndLog("WARNING: Command buffer about to overwrite command! This needs to be fixed!");
102 }
103 //Store the command at the 'head' location
104 UsbCommand* destination = &cmdBuffer[cmd_head];
105 memcpy(destination, command, sizeof(UsbCommand));
106
107 cmd_head = (cmd_head +1) % CMD_BUFFER_SIZE; //increment head and wrap
108
109 }
110 /**
111 * @brief getCommand gets a command from an internal circular buffer.
112 * @param response location to write command
113 * @return 1 if response was returned, 0 if nothing has been received
114 */
115 int getCommand(UsbCommand* response)
116 {
117 //If head == tail, there's nothing to read, or if we just got initialized
118 if(cmd_head == cmd_tail){
119 return 0;
120 }
121 //Pick out the next unread command
122 UsbCommand* last_unread = &cmdBuffer[cmd_tail];
123 memcpy(response, last_unread, sizeof(UsbCommand));
124 //Increment tail - this is a circular buffer, so modulo buffer size
125 cmd_tail = (cmd_tail +1 ) % CMD_BUFFER_SIZE;
126
127 return 1;
128
129 }
130
131 /**
132 * Waits for a certain response type. This method waits for a maximum of
133 * ms_timeout milliseconds for a specified response command.
134 *@brief WaitForResponseTimeout
135 * @param cmd command to wait for
136 * @param response struct to copy received command into.
137 * @param ms_timeout
138 * @return true if command was returned, otherwise false
139 */
140 bool WaitForResponseTimeout(uint32_t cmd, UsbCommand* response, size_t ms_timeout) {
141
142 UsbCommand resp;
143
144 if (response == NULL)
145 response = &resp;
146
147
148 // Wait until the command is received
149 for(size_t dm_seconds=0; dm_seconds < ms_timeout/10; dm_seconds++) {
150
151 while(getCommand(response)) {
152 if(response->cmd == cmd){
153 return true;
154 }
155 }
156 msleep(10); // XXX ugh
157 if (dm_seconds == 200) { // Two seconds elapsed
158 PrintAndLog("Waiting for a response from the proxmark...");
159 PrintAndLog("Don't forget to cancel its operation first by pressing on the button");
160 }
161 }
162 return false;
163 }
164
165 bool WaitForResponse(uint32_t cmd, UsbCommand* response) {
166 return WaitForResponseTimeout(cmd,response,-1);
167 }
168
169 //-----------------------------------------------------------------------------
170 // Entry point into our code: called whenever the user types a command and
171 // then presses Enter, which the full command line that they typed.
172 //-----------------------------------------------------------------------------
173 void CommandReceived(char *Cmd) {
174 CmdsParse(CommandTable, Cmd);
175 }
176
177 //-----------------------------------------------------------------------------
178 // Entry point into our code: called whenever we received a packet over USB
179 // that we weren't necessarily expecting, for example a debug print.
180 //-----------------------------------------------------------------------------
181 void UsbCommandReceived(UsbCommand *UC)
182 {
183 switch(UC->cmd) {
184 // First check if we are handling a debug message
185 case CMD_DEBUG_PRINT_STRING: {
186 char s[USB_CMD_DATA_SIZE+1] = {0x00};
187 size_t len = MIN(UC->arg[0],USB_CMD_DATA_SIZE);
188 memcpy(s,UC->d.asBytes,len);
189 PrintAndLog("#db# %s ", s);
190 return;
191 } break;
192
193 case CMD_DEBUG_PRINT_INTEGERS: {
194 PrintAndLog("#db# %08x, %08x, %08x \r\n", UC->arg[0], UC->arg[1], UC->arg[2]);
195 return;
196 } break;
197
198 case CMD_DOWNLOADED_RAW_ADC_SAMPLES_125K: {
199 memcpy(sample_buf+(UC->arg[0]),UC->d.asBytes,UC->arg[1]);
200 } break;
201
202 default:
203 break;
204 }
205
206 storeCommand(UC);
207 }
208
Impressum, Datenschutz