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