FactoryReset.c 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed FactoryReset (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * This plug-in for program plc restores factory defaults using
  15. * a VS_FAC_DEFAULTS message;
  16. *
  17. * Contributor(s):
  18. * Nathaniel Houghton <nhoughto@qca.qualcomm.com>
  19. * Charles Maier <cmaier@qca.qualcomm.com>
  20. *
  21. *--------------------------------------------------------------------*/
  22. #ifndef FACTORYRESET_SOURCE
  23. #define FACTORYRESET_SOURCE
  24. #include <stdint.h>
  25. #include <memory.h>
  26. #include "../plc/plc.h"
  27. #include "../tools/memory.h"
  28. #include "../tools/error.h"
  29. signed FactoryReset (struct plc * plc)
  30. {
  31. struct channel * channel = (struct channel *) (plc->channel);
  32. struct message * message = (struct message *) (plc->message);
  33. #ifndef __GNUC__
  34. #pragma pack (push,1)
  35. #endif
  36. struct __packed vs_fac_defaults_request
  37. {
  38. struct ethernet_hdr ethernet;
  39. struct qualcomm_hdr qualcomm;
  40. }
  41. * request = (struct vs_fac_defaults_request *) (message);
  42. struct __packed vs_fac_defaults_confirm
  43. {
  44. struct ethernet_hdr ethernet;
  45. struct qualcomm_hdr qualcomm;
  46. uint8_t MSTATUS;
  47. }
  48. * confirm = (struct vs_fac_defaults_confirm *) (message);
  49. #ifndef __GNUC__
  50. #pragma pack (pop)
  51. #endif
  52. memset (message, 0, sizeof (* message));
  53. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  54. QualcommHeader (& request->qualcomm, 0, (VS_FAC_DEFAULTS | MMTYPE_REQ));
  55. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  56. if (SendMME (plc) <= 0)
  57. {
  58. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  59. return (-1);
  60. }
  61. while (ReadMME (plc, 0, (VS_FAC_DEFAULTS | MMTYPE_CNF)) > 0)
  62. {
  63. if (confirm->MSTATUS)
  64. {
  65. Failure (plc, PLC_WONTDOIT);
  66. continue;
  67. }
  68. }
  69. return (0);
  70. }
  71. #endif