WatchdogReport.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed WatchdogReport (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * Read the watchdog report using VS_WD_RPT and write it to a file
  15. * in binary format; this file can be sent to Atheros Support for
  16. * analysis;
  17. *
  18. * The VS_WD_RPT message returns an indication, not a confirmation
  19. * message;
  20. *
  21. * Contributor(s):
  22. * Charles Maier <cmaier@qca.qualcomm.com>
  23. *
  24. *--------------------------------------------------------------------*/
  25. #ifndef WATCHDOGREPORT_SOURCE
  26. #define WATCHDOGREPORT_SOURCE
  27. #include <stdint.h>
  28. #include <unistd.h>
  29. #include <memory.h>
  30. #include "../plc/plc.h"
  31. #include "../tools/error.h"
  32. #include "../tools/flags.h"
  33. #include "../tools/files.h"
  34. #include "../tools/memory.h"
  35. #include "../tools/format.h"
  36. signed WatchdogReport (struct plc * plc)
  37. {
  38. struct channel * channel = (struct channel *) (plc->channel);
  39. struct message * message = (struct message *) (plc->message);
  40. #ifndef __GNUC__
  41. #pragma pack (push,1)
  42. #endif
  43. struct __packed vs_wd_rpt_request
  44. {
  45. struct ethernet_hdr ethernet;
  46. struct qualcomm_hdr qualcomm;
  47. uint16_t SESSIONID;
  48. uint8_t CLR;
  49. }
  50. * request = (struct vs_wd_rpt_request *) (message);
  51. struct __packed vs_wd_rpt_ind
  52. {
  53. struct ethernet_hdr ethernet;
  54. struct qualcomm_hdr qualcomm;
  55. uint8_t MSTATUS;
  56. uint16_t SESSIONID;
  57. uint8_t NUMPARTS;
  58. uint8_t CURPART;
  59. uint16_t RDATALENGTH;
  60. uint8_t RDATAOFFSET;
  61. uint8_t RDATA [1];
  62. }
  63. * indicate = (struct vs_wd_rpt_ind *) (message);
  64. #ifndef __GNUC__
  65. #pragma pack (pop)
  66. #endif
  67. Request (plc, "Read Watchdog Report");
  68. memset (message, 0, sizeof (* message));
  69. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  70. QualcommHeader (& request->qualcomm, 0, (VS_WD_RPT | MMTYPE_REQ));
  71. request->SESSIONID = HTOLE32 (plc->cookie);
  72. request->CLR = plc->readaction;
  73. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  74. if (SendMME (plc) <= 0)
  75. {
  76. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  77. return (-1);
  78. }
  79. do
  80. {
  81. if (ReadMME (plc, 0, (VS_WD_RPT | MMTYPE_IND)) <= 0)
  82. {
  83. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  84. return (-1);
  85. }
  86. if (indicate->MSTATUS)
  87. {
  88. Failure (plc, PLC_WONTDOIT);
  89. return (-1);
  90. }
  91. if (write (plc->rpt.file, indicate->RDATA + indicate->RDATAOFFSET, LE16TOH (indicate->RDATALENGTH)) != LE16TOH (indicate->RDATALENGTH))
  92. {
  93. Failure (plc, FILE_CANTSAVE, plc->rpt.name);
  94. return (-1);
  95. }
  96. }
  97. while (indicate->CURPART < indicate->NUMPARTS);
  98. Confirm (plc, "Read %s", plc->rpt.name);
  99. return (0);
  100. }
  101. #endif