Failure.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * void Failure (struct plc * plc, char const *format, ...)
  11. *
  12. * error.h
  13. *
  14. * Inform the user that an operation failed; print the channel name,
  15. * source device, error message and user defined message on stderr
  16. * unless the PLC_SILENCE flags is set;
  17. *
  18. * This function is similar to Confirm () except that the message
  19. * status or result code and description is output when the code
  20. * is non-zero; overtime, result codes have replaced status codes
  21. * and so we look in different places for codes in some MMEs;
  22. *
  23. * the status and result code fields appear at different offsets
  24. * in different messages; consequently, check the MMTYPE to find
  25. * field;
  26. *
  27. * Contributor(s);
  28. * Charles Maier <cmaier@qca.qualcomm.com>
  29. *
  30. *--------------------------------------------------------------------*/
  31. #ifndef FAILURE_SOURCE
  32. #define FAILURE_SOURCE
  33. #include <stdio.h>
  34. #include <stdarg.h>
  35. #include <stdlib.h>
  36. #include "../plc/plc.h"
  37. #include "../tools/error.h"
  38. #include "../tools/flags.h"
  39. #include "../tools/memory.h"
  40. #include "../mme/mme.h"
  41. #ifdef __GNUC__
  42. __attribute__ ((format (printf, 2, 3)))
  43. #endif
  44. void Failure (struct plc * plc, char const * format, ...)
  45. {
  46. if (_allclr (plc->flags, PLC_SILENCE))
  47. {
  48. char address [ETHER_ADDR_LEN * 3];
  49. struct channel * channel = (struct channel *) (plc->channel);
  50. struct message * message = (struct message *) (plc->message);
  51. struct __packed header_confirm
  52. {
  53. ethernet_hdr ethernet;
  54. qualcomm_hdr qualcomm;
  55. uint8_t MSTATUS;
  56. }
  57. * header = (struct header_confirm *) (message);
  58. hexdecode (header->ethernet.OSA, sizeof (header->ethernet.OSA), address, sizeof (address));
  59. fprintf (stderr, "%s %s ", channel->ifname, address);
  60. switch (LE16TOH (header->qualcomm.MMTYPE))
  61. {
  62. case VS_CONN_ADD | MMTYPE_CNF:
  63. case VS_CONN_MOD | MMTYPE_CNF:
  64. case VS_CONN_REL | MMTYPE_CNF:
  65. case VS_CONN_INFO | MMTYPE_CNF:
  66. {
  67. struct __packed header_confirm
  68. {
  69. struct ethernet_hdr ethernet;
  70. struct qualcomm_hdr qualcomm;
  71. uint32_t REQUEST;
  72. uint8_t MSTATUS;
  73. }
  74. * header = (struct header_confirm *) (message);
  75. if (header->MSTATUS)
  76. {
  77. fprintf (stderr, "%s (0x%02X): ", MMECode (header->qualcomm.MMTYPE, header->MSTATUS), header->MSTATUS);
  78. }
  79. }
  80. break;
  81. case VS_SELFTEST_RESULTS | MMTYPE_CNF:
  82. case VS_FORWARD_CONFIG | MMTYPE_CNF:
  83. {
  84. struct __packed header_confirm
  85. {
  86. struct ethernet_hdr ethernet;
  87. struct qualcomm_hdr qualcomm;
  88. uint8_t MVERSION;
  89. uint8_t RESULTCODE;
  90. }
  91. * header = (struct header_confirm *) (message);
  92. if (header->RESULTCODE)
  93. {
  94. fprintf (stderr, "%s (0x%02X): ", MMECode (header->qualcomm.MMTYPE, header->RESULTCODE), header->RESULTCODE);
  95. }
  96. }
  97. break;
  98. case VS_DEBUG_INFO | MMTYPE_CNF:
  99. {
  100. struct __packed header_confirm
  101. {
  102. struct ethernet_hdr ethernet;
  103. struct homeplug_fmi homeplug;
  104. uint8_t OUI [3];
  105. uint8_t MSTATUS;
  106. }
  107. * header = (struct header_confirm *) (message);
  108. if (header->MSTATUS)
  109. {
  110. fprintf (stderr, "%s (0x%02X): ", MMECode (header->homeplug.MMTYPE, header->MSTATUS), header->MSTATUS);
  111. }
  112. }
  113. break;
  114. case VS_ACCESS_LEVEL_CONTROL | MMTYPE_CNF:
  115. {
  116. struct __packed header_confirm
  117. {
  118. struct ethernet_hdr ethernet;
  119. struct qualcomm_hdr qualcomm;
  120. uint16_t RESERVED;
  121. uint16_t MRESPONSE;
  122. }
  123. * header = (struct header_confirm *) (message);
  124. if (header->MRESPONSE)
  125. {
  126. fprintf (stderr, "%s (0x%02X): ", MMECode (header->qualcomm.MMTYPE, (uint8_t) (header->MRESPONSE)), header->MRESPONSE);
  127. }
  128. }
  129. break;
  130. default:
  131. if (header->MSTATUS)
  132. {
  133. fprintf (stderr, "%s (0x%02X): ", MMECode (header->qualcomm.MMTYPE, header->MSTATUS), header->MSTATUS);
  134. }
  135. break;
  136. }
  137. if ((format) && (* format))
  138. {
  139. va_list arglist;
  140. va_start (arglist, format);
  141. vfprintf (stderr, format, arglist);
  142. va_end (arglist);
  143. }
  144. fprintf (stderr, "\n");
  145. }
  146. if (_anyset (plc->flags, PLC_BAILOUT))
  147. {
  148. if (_allclr (plc->flags, PLC_SILENCE))
  149. {
  150. error (1, 0, "Bailing Out!");
  151. }
  152. exit (1);
  153. }
  154. return;
  155. }
  156. #endif