ttysend.c 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * ttysend.c
  11. *
  12. * Contributor(s):
  13. * Nathaniel Houghton <nhoughto@qca.qualcomm.com>
  14. *
  15. *--------------------------------------------------------------------*/
  16. /*====================================================================*
  17. * system header files;
  18. *--------------------------------------------------------------------*/
  19. #include <sys/time.h>
  20. #include <sys/types.h>
  21. #include <fcntl.h>
  22. #include <limits.h>
  23. #include <stdio.h>
  24. #include <stdlib.h>
  25. #include <string.h>
  26. #include <unistd.h>
  27. #include <termios.h>
  28. /*====================================================================*
  29. * custom header files;
  30. *--------------------------------------------------------------------*/
  31. #include "../tools/error.h"
  32. #include "../tools/files.h"
  33. #include "../tools/putoptv.h"
  34. #include "../tools/getoptv.h"
  35. #include "../tools/number.h"
  36. #include "../serial/serial.h"
  37. /*====================================================================*
  38. * custom source files;
  39. *--------------------------------------------------------------------*/
  40. #ifndef MAKEFILE
  41. #include "../tools/getoptv.c"
  42. #include "../tools/putoptv.c"
  43. #include "../tools/version.c"
  44. #include "../tools/uintspec.c"
  45. #include "../tools/todigit.c"
  46. #include "../tools/error.c"
  47. #endif
  48. #ifndef MAKEFILE
  49. #include "../serial/baudrate.c"
  50. #endif
  51. /*====================================================================*
  52. * program constants;
  53. *--------------------------------------------------------------------*/
  54. #define SERIAL_PORT "/dev/ttyS0"
  55. void ttysend (int ifd, int ofd, size_t time, size_t chunk_size)
  56. {
  57. char * buf;
  58. char * p;
  59. ssize_t r;
  60. ssize_t w;
  61. struct timeval tv_start,
  62. tv_now,
  63. tv_result;
  64. buf = malloc (chunk_size);
  65. if (buf == NULL)
  66. {
  67. error (1, errno, "could not allocate memory");
  68. }
  69. if (ifd == - 1)
  70. {
  71. unsigned i;
  72. for (i = 0; i < chunk_size; ++ i)
  73. {
  74. buf [i] = i % 256;
  75. }
  76. }
  77. if (gettimeofday (& tv_start, NULL) == - 1)
  78. {
  79. error (1, errno, "could not get time");
  80. }
  81. do
  82. {
  83. if (ifd == - 1)
  84. {
  85. r = chunk_size;
  86. }
  87. else
  88. {
  89. r = read (ifd, buf, chunk_size);
  90. if (r == - 1)
  91. {
  92. error (1, errno, "could not read");
  93. }
  94. if (r == 0)
  95. {
  96. free (buf);
  97. return;
  98. }
  99. }
  100. p = buf;
  101. while (r)
  102. {
  103. w = write (ofd, p, r);
  104. if (w == - 1)
  105. {
  106. error (1, errno, "could not write");
  107. }
  108. p += w;
  109. r -= w;
  110. }
  111. if (gettimeofday (& tv_now, NULL) == - 1)
  112. {
  113. error (1, errno, "could not get time");
  114. }
  115. timersub (& tv_now, & tv_start, & tv_result);
  116. }
  117. while (tv_result.tv_sec < (signed) (time));
  118. free (buf);
  119. }
  120. int main (int argc, char const * argv [])
  121. {
  122. static char const * optv [] =
  123. {
  124. "f:l:s:t:qv",
  125. "",
  126. "Serial Line Rate Tester",
  127. "f f\tsend file (f)",
  128. "l f\tserial port is (f) [" SERIAL_PORT "]",
  129. "s n\tport speed [ 115200 ]",
  130. "t n\ttransmit for (n) seconds [ 15 ]",
  131. "q\tquiet mode",
  132. "v\tverbose mode",
  133. (char const *) (0)
  134. };
  135. int fd;
  136. signed c;
  137. optind = 1;
  138. char const * line = SERIAL_PORT;
  139. struct _file_ file =
  140. {
  141. - 1,
  142. NULL
  143. };
  144. speed_t speed = B115200;
  145. size_t time = 15;
  146. size_t chunk_size = 256;
  147. struct termios termios;
  148. while (~ (c = getoptv (argc, argv, optv)))
  149. {
  150. switch ((char) (c))
  151. {
  152. case 'f':
  153. file.name = optarg;
  154. if (! strcmp (file.name, "-")) file.file = STDIN_FILENO;
  155. else
  156. {
  157. file.file = open (file.name, O_BINARY | O_RDONLY);
  158. if (file.file == - 1)
  159. {
  160. error (1, errno, "could not open %s", file.name);
  161. }
  162. }
  163. break;
  164. case 'l':
  165. line = optarg;
  166. break;
  167. case 's':
  168. if (baudrate (uintspec (optarg, 0, UINT_MAX), & speed))
  169. {
  170. error (1, 0, "could not set baud rate");
  171. }
  172. break;
  173. case 't':
  174. time = uintspec (optarg, 0, SIZE_MAX);
  175. break;
  176. default:
  177. break;
  178. }
  179. }
  180. argc -= optind;
  181. argv += optind;
  182. fd = open (line, O_RDWR | O_NONBLOCK | O_NOCTTY);
  183. if (fd == - 1)
  184. {
  185. error (1, errno, "could not open %s", line);
  186. }
  187. if (fcntl(fd, F_SETFL, 0) == -1)
  188. {
  189. error (1, errno, "failed to set tty flags");
  190. }
  191. if (tcgetattr (fd, & termios) == - 1)
  192. {
  193. error (1, errno, "could not get tty attributes");
  194. }
  195. cfmakeraw (& termios);
  196. termios.c_cflag = CS8 | CREAD | CLOCAL;
  197. if (cfsetspeed (& termios, speed) == - 1)
  198. {
  199. error (1, errno, "could not set tty speed");
  200. }
  201. if (tcsetattr (fd, TCSANOW, & termios) == - 1)
  202. {
  203. error (1, errno, "could not set tty attributes");
  204. }
  205. ttysend (file.file, fd, time, chunk_size);
  206. close (fd);
  207. return (0);
  208. }