MakeRule.c 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed MakeRule (struct plc * plc, struct rule * rule);
  11. *
  12. * plc.h
  13. *
  14. * This plugin for program plcrule adds or removes a temporary
  15. * or permanent network classification rule to a device using a
  16. * VS_CLASSIFICATION message;
  17. *
  18. * Contributor(s):
  19. * Charles Maier <cmaier@qca.qualcomm.com>
  20. *
  21. *--------------------------------------------------------------------*/
  22. #ifndef MAKERULE_SOURCE
  23. #define MAKERULE_SOURCE
  24. #include "../tools/error.h"
  25. #include "../plc/rules.h"
  26. #include "../plc/plc.h"
  27. signed MakeRule (struct plc * plc, struct MMERule * rule)
  28. {
  29. struct channel * channel = (struct channel *) (plc->channel);
  30. struct message * message = (struct message *) (plc->message);
  31. #ifndef __GNUC__
  32. #pragma pack (push,1)
  33. #endif
  34. struct __packed vs_classification_request
  35. {
  36. struct ethernet_hdr ethernet;
  37. struct qualcomm_hdr qualcomm;
  38. struct MMERule rule;
  39. }
  40. * request = (struct vs_classification_request *) (message);
  41. struct __packed vs_classification_confirm
  42. {
  43. struct ethernet_hdr ethernet;
  44. struct qualcomm_hdr qualcomm;
  45. uint8_t MSTATUS;
  46. }
  47. * confirm = (struct vs_classification_confirm *) (message);
  48. #ifndef __GNUC__
  49. #pragma pack (pop)
  50. #endif
  51. Request (plc, "Set MakeRules Rules");
  52. memset (message, 0, sizeof (* message));
  53. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  54. QualcommHeader (& request->qualcomm, 0, (VS_CLASSIFICATION | MMTYPE_REQ));
  55. plc->packetsize = sizeof (struct vs_classification_request);
  56. memcpy (& request->rule, rule, sizeof (request->rule));
  57. if (SendMME (plc) <= 0)
  58. {
  59. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  60. return (-1);
  61. }
  62. if (ReadMME (plc, 0, (VS_CLASSIFICATION | MMTYPE_CNF)) <= 0)
  63. {
  64. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  65. return (-1);
  66. }
  67. if (confirm->MSTATUS)
  68. {
  69. Failure (plc, PLC_WONTDOIT);
  70. return (-1);
  71. }
  72. Confirm (plc, "Setting ...");
  73. return (0);
  74. }
  75. #endif