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