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