]> git.zerfleddert.de Git - proxmark3-svn/blame - client/cmdmain.c
Merge branch 'graphwork2' into graphwork
[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>
15#include "cmdparser.h"
902cb3c0 16#include "proxmark3.h"
7fe9b0b7 17#include "data.h"
18#include "usb_cmd.h"
19#include "ui.h"
20#include "cmdhf.h"
21#include "cmddata.h"
22#include "cmdhw.h"
23#include "cmdlf.h"
24#include "cmdmain.h"
9440213d 25#include "util.h"
1d59cd8d 26#include "cmdscript.h"
fe81b478 27#include "cmdcrc.h"
7fe9b0b7 28
e772353f 29
7fe9b0b7 30unsigned int current_command = CMD_UNKNOWN;
7fe9b0b7 31
32static int CmdHelp(const char *Cmd);
33static int CmdQuit(const char *Cmd);
f46c3663 34static int CmdRev(const char *Cmd);
cf9aa77d 35
fd368d18 36//For storing command that are received from the device
cf9aa77d 37#define CMD_BUFFER_SIZE 50
fd368d18 38static UsbCommand cmdBuffer[CMD_BUFFER_SIZE];
39//Points to the next empty position to write to
40static int cmd_head;//Starts as 0
41//Points to the position of the last unread command
42static int cmd_tail;//Starts as 0
43
7fe9b0b7 44static command_t CommandTable[] =
45{
57c69556 46 {"help", CmdHelp, 1, "This help. Use '<command> help' for details of a particular command."},
37239a7c 47 {"data", CmdData, 1, "{ Plot window / data buffer manipulation... }"},
fe81b478 48 {"hf", CmdHF, 1, "{ High Frequency commands... }"},
37239a7c 49 {"hw", CmdHW, 1, "{ Hardware commands... }"},
fe81b478 50 {"lf", CmdLF, 1, "{ Low Frequency commands... }"},
f46c3663 51 {"reveng",CmdRev, 1, "Crc calculations from the software reveng1-30"},
52 {"script",CmdScript,1, "{ Scripting commands }"},
57c69556
MHS
53 {"quit", CmdQuit, 1, "Exit program"},
54 {"exit", CmdQuit, 1, "Exit program"},
7fe9b0b7 55 {NULL, NULL, 0, NULL}
56};
57
57c69556
MHS
58command_t* getTopLevelCommandTable()
59{
60 return CommandTable;
61}
7fe9b0b7 62int CmdHelp(const char *Cmd)
63{
64 CmdsHelp(CommandTable);
65 return 0;
66}
67
68int CmdQuit(const char *Cmd)
69{
2487dfeb 70 return 99;
7fe9b0b7 71}
f46c3663 72
73int CmdRev(const char *Cmd)
74{
75 CmdCrc(Cmd);
76 return 0;
77}
d2219cae 78
42daa759 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 */
85void 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 */
95void 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
42daa759 108}
67b7d6fa 109
110
42daa759 111/**
112 * @brief getCommand gets a command from an internal circular buffer.
113 * @param response location to write command
114 * @return 1 if response was returned, 0 if nothing has been received
115 */
116int getCommand(UsbCommand* response)
117{
118 //If head == tail, there's nothing to read, or if we just got initialized
119 if(cmd_head == cmd_tail){
120 return 0;
121 }
122 //Pick out the next unread command
123 UsbCommand* last_unread = &cmdBuffer[cmd_tail];
124 memcpy(response, last_unread, sizeof(UsbCommand));
125 //Increment tail - this is a circular buffer, so modulo buffer size
126 cmd_tail = (cmd_tail +1 ) % CMD_BUFFER_SIZE;
127
128 return 1;
42daa759 129}
130
67b7d6fa 131
fd368d18 132/**
133 * Waits for a certain response type. This method waits for a maximum of
134 * ms_timeout milliseconds for a specified response command.
135 *@brief WaitForResponseTimeout
136 * @param cmd command to wait for
137 * @param response struct to copy received command into.
138 * @param ms_timeout
139 * @return true if command was returned, otherwise false
140 */
902cb3c0 141bool WaitForResponseTimeout(uint32_t cmd, UsbCommand* response, size_t ms_timeout) {
fd368d18 142
bfb01844 143 UsbCommand resp;
b915fda3 144
67b7d6fa 145 if (response == NULL) {
bfb01844 146 response = &resp;
67b7d6fa 147 }
fd368d18 148
bfb01844 149 // Wait until the command is received
150 for(size_t dm_seconds=0; dm_seconds < ms_timeout/10; dm_seconds++) {
9484ff3d 151 while(getCommand(response)) {
bfb01844 152 if(response->cmd == cmd){
153 return true;
154 }
155 }
67b7d6fa 156 msleep(10); // XXX ugh
157 if (dm_seconds == 200) { // Two seconds elapsed
bfb01844 158 PrintAndLog("Waiting for a response from the proxmark...");
159 PrintAndLog("Don't forget to cancel its operation first by pressing on the button");
67b7d6fa 160 }
fd368d18 161 }
67b7d6fa 162 return false;
534983d7 163}
164
67b7d6fa 165
902cb3c0 166bool WaitForResponse(uint32_t cmd, UsbCommand* response) {
167 return WaitForResponseTimeout(cmd,response,-1);
7fe9b0b7 168}
169
67b7d6fa 170
7fe9b0b7 171//-----------------------------------------------------------------------------
172// Entry point into our code: called whenever the user types a command and
173// then presses Enter, which the full command line that they typed.
174//-----------------------------------------------------------------------------
2487dfeb 175int CommandReceived(char *Cmd) {
176 return CmdsParse(CommandTable, Cmd);
7fe9b0b7 177}
178
67b7d6fa 179
7fe9b0b7 180//-----------------------------------------------------------------------------
181// Entry point into our code: called whenever we received a packet over USB
182// that we weren't necessarily expecting, for example a debug print.
183//-----------------------------------------------------------------------------
184void UsbCommandReceived(UsbCommand *UC)
185{
9484ff3d 186 switch(UC->cmd) {
187 // First check if we are handling a debug message
188 case CMD_DEBUG_PRINT_STRING: {
d0168f2f 189 char s[USB_CMD_DATA_SIZE+1];
190 memset(s, 0x00, sizeof(s));
9484ff3d 191 size_t len = MIN(UC->arg[0],USB_CMD_DATA_SIZE);
192 memcpy(s,UC->d.asBytes,len);
d0168f2f 193 PrintAndLog("#db# %s", s);
9484ff3d 194 return;
195 } break;
196
197 case CMD_DEBUG_PRINT_INTEGERS: {
198 PrintAndLog("#db# %08x, %08x, %08x \r\n", UC->arg[0], UC->arg[1], UC->arg[2]);
199 return;
200 } break;
201
202 case CMD_DOWNLOADED_RAW_ADC_SAMPLES_125K: {
9484ff3d 203 memcpy(sample_buf+(UC->arg[0]),UC->d.asBytes,UC->arg[1]);
67b7d6fa 204 return;
9484ff3d 205 } break;
902cb3c0 206
3fe4ff4f 207 default:
67b7d6fa 208 storeCommand(UC);
9484ff3d 209 break;
210 }
fd368d18 211
fd368d18 212}
213
Impressum, Datenschutz