ReadRules.c 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed ReadRules (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * Read and Display the classifier rules read from a PLC device.
  15. *
  16. * Contributor(s):
  17. * Nathan Houghton <nhoughto@qca.qualcomm.com>
  18. * Charles Maier <cmaier@qca.qualcomm.com>
  19. *
  20. *--------------------------------------------------------------------*/
  21. #ifndef READRULES_SOURCE
  22. #define READRULES_SOURCE
  23. #include <limits.h>
  24. #include <stdio.h>
  25. #include "../plc/plc.h"
  26. #include "../plc/rules.h"
  27. #include "../tools/error.h"
  28. signed ReadRules (struct plc * plc)
  29. {
  30. struct channel * channel = (struct channel *) (plc->channel);
  31. struct message * message = (struct message *) (plc->message);
  32. #ifndef __GNUC__
  33. #pragma pack (push,1)
  34. #endif
  35. struct __packed vs_classification_request
  36. {
  37. struct ethernet_hdr ethernet;
  38. struct qualcomm_hdr qualcomm;
  39. uint8_t MCONTROL;
  40. uint8_t RSVD;
  41. uint8_t OFFSET;
  42. uint8_t COUNT;
  43. }
  44. * request = (struct vs_classification_request *) (message);
  45. struct __packed vs_classification_confirm
  46. {
  47. struct ethernet_hdr ethernet;
  48. struct qualcomm_hdr qualcomm;
  49. uint8_t MSTATUS;
  50. uint8_t TOTAL_CLASSIFIERS;
  51. uint8_t OFFSET;
  52. uint8_t COUNT;
  53. struct __packed MMEReadRule
  54. {
  55. uint8_t MACTION;
  56. uint8_t MOPERAND;
  57. uint8_t NUM_CLASSIFIERS;
  58. struct MMEClassifier CLASSIFIER [3];
  59. struct cspec cspec;
  60. }
  61. RULESET [60];
  62. }
  63. * confirm = (struct vs_classification_confirm *) (message);
  64. #ifndef __GNUC__
  65. #pragma pack (pop)
  66. #endif
  67. unsigned index = 0;
  68. unsigned total = UINT_MAX;
  69. Request (plc, "Read Classifier Rules");
  70. while (index < total)
  71. {
  72. struct MMEReadRule * rule;
  73. memset (message, 0, sizeof (* message));
  74. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  75. QualcommHeader (& request->qualcomm, 0, (VS_CLASSIFICATION | MMTYPE_REQ));
  76. plc->packetsize = ETHER_MIN_LEN - ETHER_CRC_LEN;
  77. request->MCONTROL = CONTROL_READ;
  78. request->OFFSET = index;
  79. request->COUNT = SIZEOF (confirm->RULESET);
  80. if (SendMME (plc) <= 0)
  81. {
  82. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  83. return (-1);
  84. }
  85. if (ReadMME (plc, 0, (VS_CLASSIFICATION | MMTYPE_CNF)) <= 0)
  86. {
  87. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  88. return (-1);
  89. }
  90. if (confirm->MSTATUS)
  91. {
  92. Failure (plc, PLC_WONTDOIT);
  93. return (-1);
  94. }
  95. total = confirm->TOTAL_CLASSIFIERS;
  96. index += confirm->COUNT;
  97. rule = confirm->RULESET;
  98. while (confirm->COUNT--)
  99. {
  100. int count;
  101. int rule_len;
  102. const char * p1;
  103. const char * p2;
  104. struct cspec * cspec;
  105. if (rule->NUM_CLASSIFIERS > RULE_MAX_CLASSIFIERS)
  106. {
  107. error (1, 0, "too many classifiers in rule (%d, expecting <= %d)", rule->NUM_CLASSIFIERS, RULE_MAX_CLASSIFIERS);
  108. }
  109. rule_len = sizeof (* rule) - (RULE_MAX_CLASSIFIERS - rule->NUM_CLASSIFIERS) * sizeof (struct MMEClassifier) - sizeof (struct cspec);
  110. if (rule->MACTION == ACTION_AUTOCONNECT || rule->MACTION == ACTION_TAGTX || rule->MACTION == ACTION_TAGRX)
  111. {
  112. cspec = (struct cspec *) ((uint8_t *) rule + rule_len);
  113. rule_len += sizeof (struct cspec);
  114. }
  115. if (rule->MACTION == ACTION_TAGTX)
  116. {
  117. printf ("-T 0x%08X -V %d ", ntohl (cspec->VLAN_TAG), cspec->CSPEC_VERSION);
  118. }
  119. p1 = reword (rule->MACTION, actions, CLASSIFIER_ACTIONS);
  120. if (p1 == NULL)
  121. {
  122. error (1, 0, "invalid classifier action");
  123. }
  124. p2 = reword (rule->MOPERAND, operands, CLASSIFIER_OPERANDS);
  125. if (p2 == NULL)
  126. {
  127. error (1, 0, "invalid classifier operand");
  128. }
  129. printf ("%s", p1);
  130. printf (" %s ", p2);
  131. /* need to dump out the actual conditions here */
  132. for (count = 0; count < rule->NUM_CLASSIFIERS; ++ count)
  133. {
  134. struct MMEClassifier * classifier = & rule->CLASSIFIER [count];
  135. PrintRule (classifier->CR_PID, classifier->CR_OPERAND, classifier->CR_VALUE);
  136. putchar (' ');
  137. }
  138. printf ("add temp\n");
  139. rule = (struct MMEReadRule *) ((uint8_t *) (rule) + rule_len);
  140. }
  141. }
  142. return (0);
  143. }
  144. #endif