]>
Commit | Line | Data |
---|---|---|
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 "cmdmain.h" | |
12 | ||
13 | #include <pthread.h> | |
14 | #include <stdio.h> | |
15 | #include <stdlib.h> | |
16 | #include <unistd.h> | |
17 | #include <string.h> | |
18 | #include "cmdparser.h" | |
19 | #include "proxmark3.h" | |
20 | #include "usb_cmd.h" | |
21 | #include "ui.h" | |
22 | #include "cmdhf.h" | |
23 | #include "cmddata.h" | |
24 | #include "cmdhw.h" | |
25 | #include "cmdlf.h" | |
26 | #include "util.h" | |
27 | #include "util_posix.h" | |
28 | #include "cmdscript.h" | |
29 | #include "emv/cmdemv.h" // EMV | |
30 | #ifdef WITH_SMARTCARD | |
31 | #include "cmdsmartcard.h" | |
32 | #endif | |
33 | ||
34 | static int CmdHelp(const char *Cmd); | |
35 | static int CmdQuit(const char *Cmd); | |
36 | ||
37 | ||
38 | static command_t CommandTable[] = | |
39 | { | |
40 | {"help", CmdHelp, 1, "This help. Use '<command> help' for details of a particular command."}, | |
41 | {"data", CmdData, 1, "{ Plot window / data buffer manipulation... }"}, | |
42 | {"hf", CmdHF, 1, "{ High Frequency commands... }"}, | |
43 | {"hw", CmdHW, 1, "{ Hardware commands... }"}, | |
44 | {"lf", CmdLF, 1, "{ Low Frequency commands... }"}, | |
45 | #ifdef WITH_SMARTCARD | |
46 | {"emv", CmdEMV, 1, "{ EMV iso14443 and iso7816... }"}, | |
47 | {"sc", CmdSmartcard,1,"{ Smartcard commands... }"}, | |
48 | #else | |
49 | {"emv", CmdEMV, 1, "{ EMV iso14443 }"}, | |
50 | #endif | |
51 | {"script",CmdScript,1, "{ Scripting commands }"}, | |
52 | {"quit", CmdQuit, 1, "Exit program"}, | |
53 | {"exit", CmdQuit, 1, "Exit program"}, | |
54 | {NULL, NULL, 0, NULL} | |
55 | }; | |
56 | ||
57 | command_t* getTopLevelCommandTable() | |
58 | { | |
59 | return CommandTable; | |
60 | } | |
61 | ||
62 | static int CmdHelp(const char *Cmd) | |
63 | { | |
64 | CmdsHelp(CommandTable); | |
65 | return 0; | |
66 | } | |
67 | ||
68 | static int CmdQuit(const char *Cmd) | |
69 | { | |
70 | return 99; | |
71 | } | |
72 | ||
73 | //----------------------------------------------------------------------------- | |
74 | // Entry point into our code: called whenever the user types a command and | |
75 | // then presses Enter, which the full command line that they typed. | |
76 | //----------------------------------------------------------------------------- | |
77 | int CommandReceived(char *Cmd) { | |
78 | return CmdsParse(CommandTable, Cmd); | |
79 | } | |
80 |