123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669 |
- #include <unistd.h>
- #include <stdlib.h>
- #include <stdint.h>
- #include <limits.h>
- #include "../tools/getoptv.h"
- #include "../tools/putoptv.h"
- #include "../tools/memory.h"
- #include "../tools/number.h"
- #include "../tools/symbol.h"
- #include "../tools/types.h"
- #include "../tools/flags.h"
- #include "../tools/files.h"
- #include "../tools/error.h"
- #include "../ether/channel.h"
- #include "../key/HPAVKey.h"
- #include "../key/keys.h"
- #include "../ram/sdram.h"
- #include "../pib/pib.h"
- #include "../nvm/nvm.h"
- #include "../plc/plc.h"
- #ifndef MAKEFILE
- #include "../plc/Attributes1.c"
- #include "../plc/chipset.c"
- #include "../plc/NVRAMInfo.c"
- #include "../plc/SDRAMInfo.c"
- #include "../plc/Devices.c"
- #include "../plc/Confirm.c"
- #include "../plc/Display.c"
- #include "../plc/FlashNVM.c"
- #include "../plc/FactoryDefaults.c"
- #include "../plc/HostActionResponse.c"
- #include "../plc/Identity1.c"
- #include "../plc/NetInfo2.c"
- #include "../plc/PushButton.c"
- #include "../plc/SetNMK.c"
- #include "../plc/Request.c"
- #include "../plc/Failure.c"
- #include "../plc/PLCSelect.c"
- #include "../plc/ReadFirmware1.c"
- #include "../plc/ReadMME.c"
- #include "../plc/ReadMFG.c"
- #include "../plc/ReadParameters1.c"
- #include "../plc/RemoteHosts.c"
- #include "../plc/ResetDevice.c"
- #include "../plc/SendMME.c"
- #include "../plc/StationRole.c"
- #include "../plc/VersionInfo1.c"
- #include "../plc/WriteNVM.c"
- #include "../plc/WritePIB.c"
- #include "../plc/WaitForReset.c"
- #include "../plc/WaitForStart.c"
- #include "../plc/WatchdogReport.c"
- #include "../plc/StartFirmware1.c"
- #endif
- #ifndef MAKEFILE
- #include "../tools/error.c"
- #include "../tools/getoptv.c"
- #include "../tools/putoptv.c"
- #include "../tools/synonym.c"
- #include "../tools/uintspec.c"
- #include "../tools/version.c"
- #include "../tools/hexdump.c"
- #include "../tools/hexencode.c"
- #include "../tools/hexdecode.c"
- #include "../tools/hexstring.c"
- #include "../tools/hexout.c"
- #include "../tools/todigit.c"
- #include "../tools/checkfilename.c"
- #include "../tools/checksum32.c"
- #include "../tools/fdchecksum32.c"
- #include "../tools/strfbits.c"
- #include "../tools/typename.c"
- #endif
- #ifndef MAKEFILE
- #include "../ether/openchannel.c"
- #include "../ether/closechannel.c"
- #include "../ether/readpacket.c"
- #include "../ether/sendpacket.c"
- #include "../ether/channel.c"
- #endif
- #ifndef MAKEFILE
- #include "../ram/nvram.c"
- #include "../ram/sdramfile.c"
- #include "../ram/sdrampeek.c"
- #endif
- #ifndef MAKEFILE
- #include "../nvm/nvmfile1.c"
- #endif
- #ifndef MAKEFILE
- #include "../pib/pibfile1.c"
- #include "../pib/pibpeek1.c"
- #endif
- #ifndef MAKEFILE
- #include "../mme/EthernetHeader.c"
- #include "../mme/QualcommHeader.c"
- #include "../mme/QualcommHeader1.c"
- #include "../mme/UnwantedMessage.c"
- #include "../mme/MMECode.c"
- #endif
- #ifndef MAKEFILE
- #include "../key/keys.c"
- #endif
- #define AMPTOOL_WAIT 0
- #define AMPTOOL_LOOP 1
- static const struct _term_ modules [] =
- {
- {
- "nvm",
- "1"
- },
- {
- "pib",
- "2"
- },
- {
- "both",
- "3"
- }
- };
- static const struct _term_ buttons [] =
- {
- {
- "join",
- "1"
- },
- {
- "leave",
- "2"
- },
- {
- "status",
- "3"
- }
- };
- static void manager (struct plc * plc, signed count, signed pause)
- {
- while (count--)
- {
- if (_anyset (plc->flags, PLC_VERSION))
- {
- VersionInfo1 (plc);
- }
- if (_anyset (plc->flags, PLC_ATTRIBUTES))
- {
- Attributes1 (plc);
- }
- if (_anyset (plc->flags, PLC_WATCHDOG_REPORT))
- {
- WatchdogReport (plc);
- }
- if (_anyset (plc->flags, PLC_NVRAM_INFO))
- {
- NVRAMInfo (plc);
- }
- if (_anyset (plc->flags, PLC_SDRAM_INFO))
- {
- SDRAMInfo (plc);
- }
- if (_anyset (plc->flags, PLC_READ_IDENTITY))
- {
- Identity1 (plc);
- }
- if (_anyset (plc->flags, PLC_REMOTEHOSTS))
- {
- RemoteHosts (plc);
- }
- if (_anyset (plc->flags, PLC_NETWORK))
- {
- NetInfo2 (plc);
- }
- if (_anyset (plc->flags, PLC_WRITE_MAC))
- {
- WriteNVM (plc);
- }
- if (_anyset (plc->flags, PLC_READ_MAC))
- {
- ReadFirmware1 (plc);
- }
- if (_anyset (plc->flags, PLC_WRITE_PIB))
- {
- WritePIB (plc);
- }
- if (_anyset (plc->flags, PLC_READ_PIB))
- {
- ReadParameters1 (plc);
- }
- if (_anyset (plc->flags, PLC_HOST_ACTION))
- {
- HostActionResponse (plc);
- }
- if (_anyset (plc->flags, PLC_PUSH_BUTTON))
- {
- PushButton (plc);
- }
- if (_anyset (plc->flags, (PLC_SETLOCALKEY | PLC_SETREMOTEKEY)))
- {
- SetNMK (plc);
- }
- if (_anyset (plc->flags, PLC_FACTORY_DEFAULTS))
- {
- FactoryDefaults (plc);
- }
- if (_anyset (plc->flags, PLC_FLASH_DEVICE))
- {
- FlashNVM (plc);
- }
- if (_anyset (plc->flags, PLC_RESET_DEVICE))
- {
- ResetDevice (plc);
- }
- sleep (pause);
- }
- return;
- }
- int main (int argc, char const * argv [])
- {
- extern struct channel channel;
- extern struct _term_ const daks [];
- extern struct _term_ const nmks [];
- static char const * optv [] =
- {
- "abB:C:d:D:efFgHi:IJ:K:l:mMn:N:p:P:QqrsRt:Tvw:x",
- "device [device] [...]",
- "Qualcomm Atheros AR7x00 Powerline Device Manager",
- "a\tread Device Attributes using VS_OP_ATTRIBUTES",
- "b\tread device enumeration ID table using VS_EM_ID_TABLE",
- "B n\tperform pushbutton action (n) using MS_PB_ENC [1|2|3|'join'|'leave'|'status']",
- "C n\tflash NVRAM with module (n) using VS_MOD_NVM [1|2|3|'nvm'|'pib'|'both']",
- "C n\tflash NVRAM with module (n) using VS_MOD_NVM",
- "d f\tdump and clear watchdog report to file (f) using VS_WD_RPT",
- "D x\tDevice Access Key (DAK) is (x) [" DAK1 "]",
- "e\tredirect stderr to stdout",
- "f\tread NVRAM Configuration using VS_GET_NVM",
- "F[F]\tflash [force] NVRAM with PIB and firmware using VS_MOD_NVM",
- "H\tstop host action requests messages with VS_HOST_ACTION.IND",
- #if defined (WINPCAP) || defined (LIBPCAP)
- "i n\thost interface is (n) [" LITERAL (CHANNEL_ETHNUMBER) "]",
- #else
- "i s\thost interface is (s) [" LITERAL (CHANNEL_ETHDEVICE) "]",
- #endif
- "I\tread device identity using VS_RD_MOD",
- "J x\tset NMK on remote device (x) via local device using VS_SET_KEY (see -K)",
- "K x\tNetwork Membership Key (NMK) is (x) [" NMK1 "]",
- "l n\tloop (n) times [" LITERAL (AMPTOOL_LOOP) "]",
- "m\tread network membership information using VS_NW_INFO",
- "M\tset NMK on local device using VS_SET_KEY (see -K)",
- "n f\tread NVM from SDRAM to file (f) using VS_RD_MOD",
- "N f\twrite NVM file (f) to SDRAM using VS_WR_MOD",
- "p f\tread PIB from SDRAM to file (f) using VS_RD_MOD",
- "P f\twrite PIB file (f) to SDRAM using VS_WR_MOD",
- "q\tquiet mode",
- "Q\tquick flash (return immediately)",
- "r\tread hardware and firmware revision using VS_SW_VER",
- "R\treset device using VS_RS_DEV",
- "s\tread SDRAM Configuration using VS_RD_CBLOCK",
- "t n\tread timeout is (n) milliseconds [" LITERAL (CHANNEL_TIMEOUT) "]",
- "T\trestore factory defaults using VS_FAC_DEFAULTS",
- "v\tverbose mode",
- "w n\tpause (n) seconds [" LITERAL (AMPTOOL_WAIT) "]",
- "x\texit on error",
- (char const *) (0)
- };
- #include "../plc/plc.c"
- signed loop = AMPTOOL_LOOP;
- signed wait = AMPTOOL_WAIT;
- signed c;
- if (getenv (PLCDEVICE))
- {
- #if defined (WINPCAP) || defined (LIBPCAP)
- channel.ifindex = atoi (getenv (PLCDEVICE));
- #else
- channel.ifname = strdup (getenv (PLCDEVICE));
- #endif
- }
- optind = 1;
- while ((c = getoptv (argc, argv, optv)) != -1)
- {
- switch (c)
- {
- case 'a':
- _setbits (plc.flags, PLC_ATTRIBUTES);
- break;
- case 'B':
- _setbits (plc.flags, PLC_PUSH_BUTTON);
- plc.pushbutton = (unsigned)(uintspec (synonym (optarg, buttons, SIZEOF (buttons)), 0, UCHAR_MAX));
- break;
- case 'b':
- _setbits (plc.flags, PLC_REMOTEHOSTS);
- break;
- case 'C':
- _setbits (plc.flags, PLC_FLASH_DEVICE);
- plc.module = (unsigned)(uintspec (synonym (optarg, modules, SIZEOF (modules)), 0, UCHAR_MAX));
- break;
- case 'd':
- _setbits (plc.flags, PLC_WATCHDOG_REPORT);
- if (!checkfilename (optarg))
- {
- error (1, EINVAL, "%s", optarg);
- }
- if ((plc.rpt.file = open (plc.rpt.name = optarg, O_BINARY|O_CREAT|O_RDWR|O_TRUNC, FILE_FILEMODE)) == -1)
- {
- error (1, errno, "%s", plc.rpt.name);
- }
- #ifndef WIN32
- chown (optarg, getuid (), getgid ());
- #endif
- plc.readaction = 3;
- break;
- case 'D':
- if (!hexencode (plc.DAK, sizeof (plc.DAK), synonym (optarg, daks, SIZEOF (daks))))
- {
- error (1, errno, PLC_BAD_DAK, optarg);
- }
- break;
- case 'e':
- dup2 (STDOUT_FILENO, STDERR_FILENO);
- break;
- case 'f':
- _setbits (plc.flags, PLC_NVRAM_INFO);
- break;
- case 'F':
- _setbits (plc.module, (VS_MODULE_MAC | VS_MODULE_PIB));
- if (_anyset (plc.flags, PLC_FLASH_DEVICE))
- {
- _setbits (plc.module, VS_MODULE_FORCE);
- }
- _setbits (plc.flags, PLC_FLASH_DEVICE);
- break;
- case 'H':
- _setbits (plc.flags, PLC_HOST_ACTION);
- break;
- case 'I':
- _setbits (plc.flags, PLC_READ_IDENTITY);
- break;
- case 'i':
- #if defined (WINPCAP) || defined (LIBPCAP)
- channel.ifindex = atoi (optarg);
- #else
- channel.ifname = optarg;
- #endif
- break;
- case 'J':
- if (!hexencode (plc.RDA, sizeof (plc.RDA), (char const *)(optarg)))
- {
- error (1, errno, PLC_BAD_MAC, optarg);
- }
- _setbits (plc.flags, PLC_SETREMOTEKEY);
- break;
- case 'K':
- if (!hexencode (plc.NMK, sizeof (plc.NMK), synonym (optarg, nmks, SIZEOF (nmks))))
- {
- error (1, errno, PLC_BAD_NMK, optarg);
- }
- break;
- case 'M':
- _setbits (plc.flags, PLC_SETLOCALKEY);
- break;
- case 'l':
- loop = (unsigned)(uintspec (optarg, 0, UINT_MAX));
- break;
- case 'm':
- _setbits (plc.flags, PLC_NETWORK);
- break;
- case 'N':
- if (!checkfilename (optarg))
- {
- error (1, EINVAL, "%s", optarg);
- }
- if ((plc.NVM.file = open (plc.NVM.name = optarg, O_BINARY|O_RDONLY)) == -1)
- {
- error (1, errno, "%s", plc.NVM.name);
- }
- if (nvmfile1 (&plc.NVM))
- {
- error (1, errno, "Bad firmware file: %s", plc.NVM.name);
- }
- _setbits (plc.flags, PLC_WRITE_MAC);
- break;
- case 'n':
- if (!checkfilename (optarg))
- {
- error (1, EINVAL, "%s", optarg);
- }
- if ((plc.nvm.file = open (plc.nvm.name = optarg, O_BINARY|O_CREAT|O_RDWR|O_TRUNC, FILE_FILEMODE)) == -1)
- {
- error (1, errno, "%s", plc.nvm.name);
- }
- #ifndef WIN32
- chown (optarg, getuid (), getgid ());
- #endif
- _setbits (plc.flags, PLC_READ_MAC);
- break;
- case 'P':
- if (!checkfilename (optarg))
- {
- error (1, EINVAL, "%s", optarg);
- }
- if ((plc.PIB.file = open (plc.PIB.name = optarg, O_BINARY|O_RDONLY)) == -1)
- {
- error (1, errno, "%s", plc.PIB.name);
- }
- if (pibfile1 (&plc.PIB))
- {
- error (1, errno, "Bad parameter file: %s", plc.PIB.name);
- }
- _setbits (plc.flags, PLC_WRITE_PIB);
- break;
- case 'p':
- if (!checkfilename (optarg))
- {
- error (1, EINVAL, "%s", optarg);
- }
- if ((plc.pib.file = open (plc.pib.name = optarg, O_BINARY|O_CREAT|O_RDWR|O_TRUNC, FILE_FILEMODE)) == -1)
- {
- error (1, errno, "%s", plc.pib.name);
- }
- #ifndef WIN32
- chown (optarg, getuid (), getgid ());
- #endif
- _setbits (plc.flags, PLC_READ_PIB);
- break;
- case 'Q':
- _setbits (plc.flags, PLC_QUICK_FLASH);
- break;
- case 'q':
- _setbits (channel.flags, CHANNEL_SILENCE);
- _setbits (plc.flags, PLC_SILENCE);
- break;
- case 'R':
- _setbits (plc.flags, PLC_RESET_DEVICE);
- break;
- case 'r':
- _setbits (plc.flags, PLC_VERSION);
- break;
- case 's':
- _setbits (plc.flags, PLC_SDRAM_INFO);
- break;
- case 't':
- channel.timeout = (signed)(uintspec (optarg, 0, UINT_MAX));
- break;
- case 'T':
- _setbits (plc.flags, PLC_FACTORY_DEFAULTS);
- break;
- case 'v':
- _setbits (channel.flags, CHANNEL_VERBOSE);
- _setbits (plc.flags, PLC_VERBOSE);
- break;
- case 'V':
- _setbits (plc.flags, PLC_SNIFFER);
- plc.action = (uint8_t)(uintspec (optarg, 0, UCHAR_MAX));
- break;
- case 'w':
- wait = (unsigned)(uintspec (optarg, 0, 3600));
- break;
- case 'x':
- _setbits (plc.flags, PLC_BAILOUT);
- break;
- default:
- break;
- }
- }
- argc -= optind;
- argv += optind;
- if (argc != 1)
- {
- if (plc.nvm.file != -1)
- {
- error (1, ECANCELED, PLC_NODEVICE);
- }
- if (plc.pib.file != -1)
- {
- error (1, ECANCELED, PLC_NODEVICE);
- }
- if (plc.rpt.file != -1)
- {
- error (1, ECANCELED, PLC_NODEVICE);
- }
- }
- openchannel (&channel);
- if (!(plc.message = malloc (sizeof (* plc.message))))
- {
- error (1, errno, PLC_NOMEMORY);
- }
- if (!argc)
- {
- manager (&plc, loop, wait);
- }
- while ((argc) && (* argv))
- {
- if (!hexencode (channel.peer, sizeof (channel.peer), synonym (* argv, devices, SIZEOF (devices))))
- {
- error (1, errno, PLC_BAD_MAC, * argv);
- }
- manager (&plc, loop, wait);
- argc--;
- argv++;
- }
- free (plc.message);
- closechannel (&channel);
- exit (0);
- }
|