PipeTests.cpp 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478
  1. /*
  2. * Copyright (c) 2017,2020 The Linux Foundation. All rights reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions are
  6. * met:
  7. * * Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * * Redistributions in binary form must reproduce the above
  10. * copyright notice, this list of conditions and the following
  11. * disclaimer in the documentation and/or other materials provided
  12. * with the distribution.
  13. * * Neither the name of The Linux Foundation nor the names of its
  14. * contributors may be used to endorse or promote products derived
  15. * from this software without specific prior written permission.
  16. *
  17. * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
  18. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  19. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
  20. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
  21. * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  22. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  23. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
  24. * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  25. * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
  26. * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
  27. * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  28. */
  29. #include <stdio.h>
  30. #include <stdlib.h>
  31. #include <unistd.h>
  32. #include <string.h>
  33. #include <stdint.h>
  34. #include "PipeTestFixture.h"
  35. #include "Constants.h"
  36. #include "TestsUtils.h"
  37. #include "linux/msm_ipa.h"
  38. /////////////////////////////////////////////////////////////////////////////////
  39. /////////////////////////////////////////////////////////////////////////////////
  40. /////////////////////////////////////////////////////////////////////////////////
  41. class PipeTestRawTransfer: public PipeTestFixture {
  42. public:
  43. /////////////////////////////////////////////////////////////////////////////////
  44. PipeTestRawTransfer() {
  45. m_name = "PipeTestRawTransfer";
  46. m_description = "This test will be using the Pipe raw transfer ability";
  47. }
  48. /////////////////////////////////////////////////////////////////////////////////
  49. bool Run() {
  50. bool bTestResult = true;
  51. Byte pIpPacket[] = { 0x01, 0x02, 0x03, 0x04 }; //This packet will be sent(It can be replaced by a real IP packet).
  52. Byte pIpPacketReceive[sizeof(pIpPacket)] = { 0 }; //This buffer will be used in order to store the received packet.
  53. //Send the raw IP packet(which is a 4 arbitrary bytes) without header addition by the Pipe
  54. LOG_MSG_DEBUG(
  55. "Sending packet into the USB pipe(%d bytes)\n", sizeof(pIpPacket));
  56. int nBytesSent = m_UsbToIpaPipe.Send(pIpPacket, sizeof(pIpPacket));
  57. if (sizeof(pIpPacket) != nBytesSent) {
  58. return false;
  59. }
  60. //Receive the raw IP packet(which is a 4 arbitrary bytes) without header removal by the Pipe
  61. LOG_MSG_DEBUG(
  62. "Reading packet from the USB pipe(%d bytes should be there)\n", sizeof(pIpPacketReceive));
  63. int nBytesReceived = m_IpaToUsbPipe.Receive(pIpPacketReceive,
  64. sizeof(pIpPacketReceive));
  65. if (sizeof(pIpPacketReceive) != nBytesReceived) {
  66. return false;
  67. }
  68. for (int i = 0; i < nBytesReceived; i++) {
  69. LOG_MSG_DEBUG("0x%02x\n", pIpPacketReceive[i]);
  70. }
  71. //Check that the sent IP packet is equal to the received IP packet.
  72. LOG_MSG_DEBUG("Checking sent.vs.received packet\n");
  73. bTestResult &= !memcmp(pIpPacket, pIpPacketReceive, sizeof(pIpPacket));
  74. return bTestResult;
  75. }
  76. /////////////////////////////////////////////////////////////////////////////////
  77. };
  78. /////////////////////////////////////////////////////////////////////////////////
  79. /////////////////////////////////////////////////////////////////////////////////
  80. /////////////////////////////////////////////////////////////////////////////////
  81. //This test will be using the Pipe Add-Header transfer ability(and not header insertion
  82. class PipeTestAddHeader: public PipeTestFixture {
  83. public:
  84. /////////////////////////////////////////////////////////////////////////////////
  85. PipeTestAddHeader() {
  86. m_name = "PipeTestAddHeader";
  87. m_description = "Add header to USB pipe and receive it without removing the header";
  88. }
  89. /////////////////////////////////////////////////////////////////////////////////
  90. bool Run() {
  91. Byte pIpPacketSend[4] = { 0x01, 0x02, 0x03, 0x04 };
  92. int nReceivedPacketSize = sizeof(pIpPacketSend)
  93. + m_IpaToUsbPipe.GetHeaderLengthAdd();
  94. Byte *pPacketReceive = new Byte[nReceivedPacketSize];
  95. LOG_MSG_DEBUG("Sending packet into the USB pipe(%d bytes - no header size)\n", sizeof(pIpPacketSend));
  96. int nRetValSend = m_UsbToIpaPipe.AddHeaderAndSend(pIpPacketSend,
  97. sizeof(pIpPacketSend));
  98. LOG_MSG_DEBUG("Result of AddHeaderAndSend = %d\n", nRetValSend);
  99. LOG_MSG_DEBUG("Reading packet from the USB pipe(%d bytes - including header)\n", nReceivedPacketSize);
  100. int nRetValReceive = m_IpaToUsbPipe.Receive(pPacketReceive,
  101. nReceivedPacketSize);
  102. LOG_MSG_DEBUG("Result of Receive = %d\n", nRetValReceive);
  103. if (nReceivedPacketSize != nRetValReceive) {
  104. delete[] pPacketReceive;
  105. LOG_MSG_ERROR(
  106. "Size of received packet is not as expected - %d\n", nRetValReceive);
  107. return false;
  108. }
  109. bool bHeaderCmp = !memcmp(pPacketReceive, Pipe::m_pUsbHeader,
  110. m_IpaToUsbPipe.GetHeaderLengthAdd());
  111. LOG_MSG_DEBUG("bHeaderCmp - %s\n", bHeaderCmp ? "True" : "False");
  112. bool bIpCmp = !memcmp(pPacketReceive + m_IpaToUsbPipe.GetHeaderLengthAdd(),
  113. pIpPacketSend, sizeof(pIpPacketSend));
  114. LOG_MSG_DEBUG("bIpCmp - %s\n", bIpCmp ? "True" : "False");
  115. delete[] pPacketReceive;
  116. return bHeaderCmp && bIpCmp;
  117. }
  118. /////////////////////////////////////////////////////////////////////////////////
  119. };
  120. /////////////////////////////////////////////////////////////////////////////////
  121. /////////////////////////////////////////////////////////////////////////////////
  122. /////////////////////////////////////////////////////////////////////////////////
  123. //This test will be using the Pipe Remove-Header transfer ability(and header addition)
  124. class PipeTestAddAndRemoveHeader: public PipeTestFixture {
  125. public:
  126. /////////////////////////////////////////////////////////////////////////////////
  127. PipeTestAddAndRemoveHeader() {
  128. m_name = "PipeTestAddAndRemoveHeader";
  129. m_description = "This test will be using the Pipe Remove-Header transfer ability(and header addition)";
  130. }
  131. /////////////////////////////////////////////////////////////////////////////////
  132. bool Run() {
  133. Byte pIpPacketSend[4] = { 0x01, 0x02, 0x03, 0x04 };
  134. int nToBeReceivedPacketSize = sizeof(pIpPacketSend)
  135. + m_IpaToUsbPipe.GetHeaderLengthAdd();
  136. Byte *pPacketReceive = new Byte[nToBeReceivedPacketSize];
  137. LOG_MSG_DEBUG("Sending packet into the USB pipe(%d bytes - no header size)\n", sizeof(pIpPacketSend));
  138. int nBytesSent = m_UsbToIpaPipe.AddHeaderAndSend(pIpPacketSend,
  139. sizeof(pIpPacketSend));
  140. LOG_MSG_DEBUG("nBytesSent of AddHeaderAndSend = %d\n", nBytesSent);
  141. LOG_MSG_DEBUG("Reading packet from the USB pipe(%d bytes - including header)\n", nToBeReceivedPacketSize);
  142. int nBytesReceived = m_IpaToUsbPipe.Receive(pPacketReceive,
  143. nToBeReceivedPacketSize);
  144. LOG_MSG_DEBUG("nBytesReceived = %d\n", nBytesReceived);
  145. if (nToBeReceivedPacketSize != nBytesReceived) {
  146. delete[] pPacketReceive;
  147. LOG_MSG_ERROR("Size of received packet is not as expected - %d\n", nBytesReceived);
  148. return false;
  149. }
  150. bool bHeaderCmp = !memcmp(pPacketReceive, Pipe::m_pUsbHeader,
  151. m_IpaToUsbPipe.GetHeaderLengthAdd());
  152. LOG_MSG_DEBUG("bHeaderCmp - %s\n", bHeaderCmp ? "True" : "False");
  153. bool bIpCmp = !memcmp(pPacketReceive + m_IpaToUsbPipe.GetHeaderLengthAdd(),
  154. pIpPacketSend, sizeof(pIpPacketSend));
  155. LOG_MSG_DEBUG("bIpCmp - %s\n", bIpCmp ? "True" : "False");
  156. delete[] pPacketReceive;
  157. return bHeaderCmp && bIpCmp;
  158. }
  159. /////////////////////////////////////////////////////////////////////////////////
  160. };
  161. /////////////////////////////////////////////////////////////////////////////////
  162. /////////////////////////////////////////////////////////////////////////////////
  163. /////////////////////////////////////////////////////////////////////////////////
  164. //This test will try to send big chuck of data and check if the Data FIFO is working correct
  165. class PipeTestDataFifoOverflow: public PipeTestFixture {
  166. public:
  167. /////////////////////////////////////////////////////////////////////////////////
  168. PipeTestDataFifoOverflow() {
  169. m_name = "PipeTestDataFifoOverflow";
  170. m_description = "Send many big packets over the IPA. there will be toggle of send/receive";
  171. m_runInRegression = false; // Test is very long thus makes a problem in regression testing
  172. }
  173. /////////////////////////////////////////////////////////////////////////////////
  174. bool Run() {
  175. bool bTestResult = true;
  176. int nPacketByteSize;
  177. int nTotalDataSent = 0;
  178. int nTestsMaxDataSend = 3 * 0x6400;
  179. int nIterationNumber = 0;
  180. Byte *pIpPacket;
  181. Byte *pIpPacketReceive;
  182. srand(123); //set some constant seed value in order to be able to reproduce problems.
  183. //send and receive many packets(nIterations)
  184. while (nTotalDataSent < nTestsMaxDataSend) {
  185. //get random values for this packet.
  186. nPacketByteSize = (rand() % 400) + 200;
  187. pIpPacket = new Byte[nPacketByteSize];
  188. for (int j = 0; j < nPacketByteSize; j++) {
  189. pIpPacket[j] = rand() % 0x100;
  190. }
  191. //Send the raw IP packet(which is a 4 arbitrary bytes) without header addition by the Pipe
  192. LOG_MSG_DEBUG(
  193. "Iteration number %d(0x%08x/0x%08x data):\n", nIterationNumber++, nTotalDataSent, nTestsMaxDataSend);
  194. LOG_MSG_DEBUG(
  195. "Sending packet into the USB pipe(%d bytes)\n", nPacketByteSize);
  196. int nBytesSent = m_UsbToIpaPipe.Send(pIpPacket, nPacketByteSize);
  197. if (nPacketByteSize != nBytesSent) {
  198. delete[] pIpPacket;
  199. LOG_MSG_ERROR("Could not send the whole packet - nTotalDataSent = 0x%08x\n", nTotalDataSent);
  200. return false;
  201. }
  202. //Receive the raw IP packet(which is a 4 arbitrary bytes) without header removal by the Pipe
  203. pIpPacketReceive = new Byte[nPacketByteSize];
  204. LOG_MSG_DEBUG("Reading packet from the USB pipe(%d bytes should be there)\n", nPacketByteSize);
  205. int nBytesReceived = m_IpaToUsbPipe.Receive(pIpPacketReceive,
  206. nPacketByteSize);
  207. if (nPacketByteSize != nBytesReceived) {
  208. delete[] pIpPacket;
  209. delete[] pIpPacketReceive;
  210. LOG_MSG_ERROR("Could not read the whole packet - nTotalDataSent = 0x%08x\n", nTotalDataSent);
  211. return false;
  212. }
  213. for (int j = 0; j < nBytesReceived; j++) {
  214. LOG_MSG_DEBUG("0x%02x\n", pIpPacketReceive[j]);
  215. }
  216. //Check that the sent IP packet is equal to the received IP packet.
  217. LOG_MSG_DEBUG("Checking sent.vs.received packet\n");
  218. bTestResult &= !memcmp(pIpPacket, pIpPacketReceive,
  219. nPacketByteSize);
  220. if (true != bTestResult) {
  221. delete[] pIpPacketReceive;
  222. delete[] pIpPacket;
  223. LOG_MSG_ERROR("Send != Received - nTotalDataSent = 0x%08x\n", nTotalDataSent);
  224. return false;
  225. }
  226. nTotalDataSent += nPacketByteSize;
  227. delete[] pIpPacket;
  228. delete[] pIpPacketReceive;
  229. }
  230. LOG_MSG_DEBUG("Great success - nTotalDataSent = 0x%08x\n", nTotalDataSent);
  231. return true;
  232. }
  233. /////////////////////////////////////////////////////////////////////////////////
  234. };
  235. /////////////////////////////////////////////////////////////////////////////////
  236. /////////////////////////////////////////////////////////////////////////////////
  237. /////////////////////////////////////////////////////////////////////////////////
  238. //This test will try to many little chuck of data and check if the Descriptor FIFO is working correct
  239. class PipeTestDescriptorFifoOverflow: public PipeTestFixture {
  240. public:
  241. /////////////////////////////////////////////////////////////////////////////////
  242. PipeTestDescriptorFifoOverflow() {
  243. m_name = "PipeTestDescriptorFifoOverflow";
  244. m_description = "Send many small packets over the IPA. there will be toggle of send/receive";
  245. m_runInRegression = false; // Test is very long thus makes a problem in regression testing
  246. }
  247. /////////////////////////////////////////////////////////////////////////////////
  248. bool Run() {
  249. bool bTestResult = true;
  250. int nPacketByteSize;
  251. int nTotalPacketSent = 0;
  252. int nTestsMaxDescriptors = 3 * 0x1000;
  253. int nIterationNumber = 0;
  254. Byte *pIpPacket;
  255. Byte *pIpPacketReceive;
  256. srand(123); //set some constant seed value in order to be able to reproduce problems.
  257. //send and receive many packets(nIterations)
  258. while (nTotalPacketSent < nTestsMaxDescriptors) {
  259. //get random values for this packet.
  260. nPacketByteSize = (rand() % 10) + 1;
  261. pIpPacket = new Byte[nPacketByteSize];
  262. for (int j = 0; j < nPacketByteSize; j++) {
  263. pIpPacket[j] = rand() % 0x100;
  264. }
  265. //Send the raw IP packet(which is a 4 arbitrary bytes) without header addition by the Pipe
  266. LOG_MSG_DEBUG("Iteration number %d(0x%08x/0x%08x packets):\n", nIterationNumber++, nTotalPacketSent, nTestsMaxDescriptors);
  267. LOG_MSG_DEBUG("Sending packet into the USB pipe(%d bytes)\n", nPacketByteSize);
  268. int nBytesSent = m_UsbToIpaPipe.Send(pIpPacket, nPacketByteSize);
  269. if (nPacketByteSize != nBytesSent) {
  270. delete[] pIpPacket;
  271. LOG_MSG_ERROR("Could not send the whole packet - nTotalPacketSent = 0x%08x\n", nTotalPacketSent);
  272. return false;
  273. }
  274. //Receive the raw IP packet(which is a 4 arbitrary bytes) without header removal by the Pipe
  275. pIpPacketReceive = new Byte[nPacketByteSize];
  276. LOG_MSG_DEBUG("Reading packet from the USB pipe(%d bytes should be there)\n", nPacketByteSize);
  277. int nBytesReceived = m_IpaToUsbPipe.Receive(pIpPacketReceive,
  278. nPacketByteSize);
  279. if (nPacketByteSize != nBytesReceived) {
  280. delete[] pIpPacketReceive;
  281. LOG_MSG_ERROR("Could not read the whole packet - nTotalPacketSent = 0x%08x\n", nTotalPacketSent);
  282. return false;
  283. }
  284. for (int j = 0; j < nBytesReceived; j++) {
  285. LOG_MSG_DEBUG("0x%02x\n", pIpPacketReceive[j]);
  286. }
  287. //Check that the sent IP packet is equal to the received IP packet.
  288. LOG_MSG_DEBUG("Checking sent.vs.received packet\n");
  289. bTestResult &= !memcmp(pIpPacket, pIpPacketReceive,
  290. nPacketByteSize);
  291. if (true != bTestResult) {
  292. delete[] pIpPacketReceive;
  293. delete[] pIpPacket;
  294. LOG_MSG_ERROR("Send != Received - nTotalPacketSent = 0x%08x\n", nTotalPacketSent);
  295. return false;
  296. }
  297. nTotalPacketSent++;
  298. delete[] pIpPacket;
  299. delete[] pIpPacketReceive;
  300. }
  301. LOG_MSG_DEBUG("Great success - nTotalPacketSent = 0x%08x\n", nTotalPacketSent);
  302. return true;
  303. }
  304. /////////////////////////////////////////////////////////////////////////////////
  305. };
  306. /////////////////////////////////////////////////////////////////////////////////
  307. /////////////////////////////////////////////////////////////////////////////////
  308. /////////////////////////////////////////////////////////////////////////////////
  309. #define HOLB_TEST_PACKETS_MAX_NUM 50
  310. class PipeTestHolb: public PipeTestFixture {
  311. public:
  312. PipeTestHolb() {
  313. m_name = "PipeTestHolb";
  314. m_description = "This test will check the HOLB function";
  315. }
  316. bool Run() {
  317. int nPacketsToSend = HOLB_TEST_PACKETS_MAX_NUM;
  318. int nBytesReceived;
  319. int nBytesSentInLastPacket;
  320. int i;
  321. Byte pIpPacket[] = { 0x01, 0x02, 0x03, 0x04 }; //This packet will be sent(It can be replaced by a real IP packet).
  322. Byte pIpPacketReceive[sizeof(pIpPacket) * HOLB_TEST_PACKETS_MAX_NUM] = { 0 }; //This buffer will be used in order to store the received packet.
  323. m_IpaToUsbPipe.DisableHolb();
  324. //Send the IP packets
  325. LOG_MSG_DEBUG("Sending %d packets of %d bytes into the USB pipe\n",
  326. nPacketsToSend, sizeof(pIpPacket));
  327. for (i = 0; i < nPacketsToSend; i++) {
  328. nBytesSentInLastPacket = m_UsbToIpaPipe.Send(pIpPacket, sizeof(pIpPacket));
  329. if (sizeof(pIpPacket) != nBytesSentInLastPacket) {
  330. LOG_MSG_ERROR("Failed sending the packet %d to m_UsbToIpaPipe", i);
  331. return false;
  332. }
  333. }
  334. //Receive all the raw IP packets (which are a 4 arbitrary bytes)
  335. LOG_MSG_DEBUG(
  336. "Reading packets from the USB pipe (%dx%d bytes should be there)\n",
  337. sizeof(pIpPacket), nPacketsToSend);
  338. for (i = 0; i < nPacketsToSend; i++) {
  339. nBytesReceived = m_IpaToUsbPipe.Receive(pIpPacketReceive, sizeof(pIpPacketReceive));
  340. if ((int)sizeof(pIpPacket) != nBytesReceived) {
  341. LOG_MSG_ERROR("Failed with HOLB disabled! Packet #%d: Expected %d Bytes, got %d Bytes",
  342. i, sizeof(pIpPacket), nBytesReceived);
  343. return false;
  344. }
  345. }
  346. // Enable HOLB
  347. m_IpaToUsbPipe.EnableHolb(0);
  348. //Send the IP packets
  349. LOG_MSG_DEBUG("Sending %d packets of %d bytes into the USB pipe\n",
  350. nPacketsToSend, sizeof(pIpPacket));
  351. for (i = 0; i < nPacketsToSend; i++) {
  352. nBytesSentInLastPacket = m_UsbToIpaPipe.Send(pIpPacket, sizeof(pIpPacket));
  353. if (sizeof(pIpPacket) != nBytesSentInLastPacket) {
  354. LOG_MSG_ERROR("Failed sending the packet %d to m_UsbToIpaPipe", i);
  355. return false;
  356. }
  357. }
  358. // Receive the raw IP packets (which are a 4 arbitrary bytes)
  359. // that fit into the FIFO before the HOLB started dropping
  360. // and fail to receive the rest
  361. LOG_MSG_DEBUG(
  362. "Reading packets from the USB pipe(%dx%d bytes should be there)\n",
  363. sizeof(pIpPacket), nPacketsToSend);
  364. for (i = 0; i < nPacketsToSend; i++) {
  365. int nBytesReceived = m_IpaToUsbPipe.Receive(pIpPacketReceive,
  366. sizeof(pIpPacketReceive));
  367. if ((int)sizeof(pIpPacket) != nBytesReceived) {
  368. if (i == 0) {
  369. LOG_MSG_ERROR("First packet failed to receive ! Expected %d Bytes, got %d Bytes",
  370. sizeof(pIpPacket), nBytesReceived);
  371. return false;
  372. } else
  373. // Failed to receive a packet, but not the first one.
  374. // This is the desired result.
  375. return true;
  376. }
  377. }
  378. LOG_MSG_ERROR("All packets were received successfully, which means the HOLB didn't work.");
  379. return false;
  380. }
  381. };
  382. /////////////////////////////////////////////////////////////////////////////////
  383. /////////////////////////////////////////////////////////////////////////////////
  384. /////////////////////////////////////////////////////////////////////////////////
  385. //Those tests should be run with configuration number 1 which has one input pipe and
  386. //one output pipe.
  387. //Please look at the Fixture for more configurations update.
  388. static PipeTestRawTransfer pipeTestRawTransfer;
  389. static PipeTestAddHeader pipeTestAddHeader;
  390. static PipeTestAddAndRemoveHeader pipeTestAddAndRemoveHeader;
  391. static PipeTestHolb pipeTestHolb;
  392. //DO NOT UNCOMMENT THOSE LINES UNLESS YOU KNOW WHAT YOU ARE DOING!!!
  393. //those test takes 4ever and should be use for specific usecase!
  394. //static PipeTestDataFifoOverflow pipeTestDataFifoOverflow;
  395. //static PipeTestDescriptorFifoOverflow pipeTestDescriptorFifoOverflow;
  396. /////////////////////////////////////////////////////////////////////////////////
  397. // EOF ////
  398. /////////////////////////////////////////////////////////////////////////////////