Traffic3.c 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. /*====================================================================*
  2. * Copyright (c) 2018-19 Qualcomm Technologies, Inc.
  3. * All Rights Reserved.
  4. * Confidential and Proprietary - Qualcomm Technologies, Inc.
  5. *--------------------------------------------------------------------*/
  6. /*====================================================================*
  7. *
  8. * signed Traffic3 (struct plc * plc);
  9. *
  10. * generate data traffic between two devices using MME
  11. * VS_TRAFFIC_GENERATOR
  12. *
  13. * Contributor(s):
  14. * Nisha K(nishk@qti.qualcomm.com)
  15. *--------------------------------------------------------------------*/
  16. #ifndef TRAFFIC3_SOURCE
  17. #define TRAFFIC3_SOURCE
  18. #include <memory.h>
  19. #include <errno.h>
  20. #include "../tools/memory.h"
  21. #include "../tools/number.h"
  22. #include "../tools/error.h"
  23. #include "../tools/flags.h"
  24. #include "../plc/plc.h"
  25. signed Traffic3 (struct plc * plc, uint8_t trafficgen_rate)
  26. {
  27. struct channel * channel = (struct channel *) (plc->channel);
  28. struct message * message = (struct message *) (plc->message);
  29. #ifndef __GNUC__
  30. #pragma pack (push,1)
  31. #endif
  32. struct __packed vs_traffic_generator_request
  33. {
  34. struct ethernet_hdr ethernet;
  35. struct qualcomm_hdr qualcomm;
  36. uint8_t DMAC[6];
  37. uint8_t DURATION;
  38. uint8_t TRAFFICGEN_RATE;
  39. }
  40. * request = (struct vs_traffic_generator_request *) (message);
  41. struct __packed vs_traffic_generator_confirm
  42. {
  43. struct ethernet_hdr ethernet;
  44. struct qualcomm_hdr qualcomm;
  45. uint8_t MSTATUS;
  46. }
  47. * confirm = (struct vs_traffic_generator_confirm *) (message);
  48. #ifndef __GNUC__
  49. #pragma pack (pop)
  50. #endif
  51. memset (message, 0, sizeof (* message));
  52. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  53. QualcommHeader (& request->qualcomm, 0, (VS_TRAFFIC_GENERATOR | MMTYPE_REQ));
  54. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  55. memcpy (request->DMAC, plc->RDA, ETHER_ADDR_LEN);
  56. request->DURATION = plc->timer;
  57. request->TRAFFICGEN_RATE = trafficgen_rate;
  58. if (SendMME (plc) <= 0)
  59. {
  60. error (0, errno, CHANNEL_CANTSEND);
  61. return (-1);
  62. }
  63. if (ReadMME (plc, 0, (VS_TRAFFIC_GENERATOR | MMTYPE_CNF)) <= 0)
  64. {
  65. error (0, errno, CHANNEL_CANTREAD);
  66. return (-1);
  67. }
  68. if (confirm->MSTATUS)
  69. {
  70. Failure (plc, PLC_WONTDOIT);
  71. return (-1);
  72. }
  73. memcpy (plc->MAC, confirm->ethernet.OSA, 6);
  74. sleep (plc->timer);
  75. memset (message, 0, sizeof (* message));
  76. EthernetHeader (& request->ethernet, plc->RDA, channel->host, channel->type);
  77. QualcommHeader (& request->qualcomm, 0, (VS_TRAFFIC_GENERATOR | MMTYPE_REQ));
  78. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  79. memcpy (request->DMAC, plc->MAC, ETHER_ADDR_LEN);
  80. request->DURATION = plc->timer;
  81. request->TRAFFICGEN_RATE = trafficgen_rate;
  82. if (SendMME (plc) <= 0)
  83. {
  84. error (0, errno, CHANNEL_CANTSEND);
  85. return (-1);
  86. }
  87. if (ReadMME (plc, 0, (VS_TRAFFIC_GENERATOR | MMTYPE_CNF)) <= 0)
  88. {
  89. error (0, errno, CHANNEL_CANTREAD);
  90. return (-1);
  91. }
  92. if (confirm->MSTATUS)
  93. {
  94. Failure (plc, PLC_WONTDOIT);
  95. return (-1);
  96. }
  97. sleep (plc->timer);
  98. return (0);
  99. }
  100. #endif
  101. /*====================================================================*
  102. *
  103. * signed Traffic3_unidi (struct plc * plc);
  104. *
  105. * generate data traffic between two devices using MME in only one direction
  106. * VS_TRAFFIC_GENERATOR
  107. *
  108. * Contributor(s):
  109. * Ananya Barat(abarat@qti.qualcomm.com)
  110. *--------------------------------------------------------------------*/
  111. signed Traffic3_unidi (struct plc * plc, uint8_t trafficgen_rate)
  112. {
  113. struct channel * channel = (struct channel *) (plc->channel);
  114. struct message * message = (struct message *) (plc->message);
  115. #ifndef __GNUC__
  116. #pragma pack (push,1)
  117. #endif
  118. struct __packed vs_traffic_generator_request
  119. {
  120. struct ethernet_hdr ethernet;
  121. struct qualcomm_hdr qualcomm;
  122. uint8_t DMAC[6];
  123. uint8_t DURATION;
  124. uint8_t TRAFFICGEN_RATE;
  125. }
  126. * request = (struct vs_traffic_generator_request *) (message);
  127. struct __packed vs_traffic_generator_confirm
  128. {
  129. struct ethernet_hdr ethernet;
  130. struct qualcomm_hdr qualcomm;
  131. uint8_t MSTATUS;
  132. }
  133. * confirm = (struct vs_traffic_generator_confirm *) (message);
  134. #ifndef __GNUC__
  135. #pragma pack (pop)
  136. #endif
  137. memset (message, 0, sizeof (* message));
  138. EthernetHeader (& request->ethernet, plc->RDA,channel->host , channel->type);
  139. QualcommHeader (& request->qualcomm, 0, (VS_TRAFFIC_GENERATOR | MMTYPE_REQ));
  140. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  141. memcpy (request->DMAC, channel->peer, ETHER_ADDR_LEN);
  142. request->DURATION = plc->timer;
  143. request->TRAFFICGEN_RATE = trafficgen_rate;
  144. if (SendMME (plc) <= 0)
  145. {
  146. error (0, errno, CHANNEL_CANTSEND);
  147. return (-1);
  148. }
  149. if (ReadMME (plc, 0, (VS_TRAFFIC_GENERATOR | MMTYPE_CNF)) <= 0)
  150. {
  151. error (0, errno, CHANNEL_CANTREAD);
  152. return (-1);
  153. }
  154. if (confirm->MSTATUS)
  155. {
  156. Failure (plc, PLC_WONTDOIT);
  157. return (-1);
  158. }
  159. sleep (plc->timer);
  160. return (0);
  161. }