send_packets.c 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655
  1. /* $Id: send_packets.c 2110 2009-01-08 00:22:22Z aturner $ */
  2. /*
  3. * Copyright (c) 2001-2008 Aaron Turner.
  4. * All rights reserved.
  5. *
  6. * Redistribution and use in source and binary forms, with or without
  7. * modification, are permitted provided that the following conditions
  8. * are met:
  9. *
  10. * 1. Redistributions of source code must retain the above copyright
  11. * notice, this list of conditions and the following disclaimer.
  12. * 2. Redistributions in binary form must reproduce the above copyright
  13. * notice, this list of conditions and the following disclaimer in the
  14. * documentation and/or other materials provided with the distribution.
  15. * 3. Neither the names of the copyright owners nor the names of its
  16. * contributors may be used to endorse or promote products derived from
  17. * this software without specific prior written permission.
  18. *
  19. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
  20. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  21. * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  22. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
  23. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  24. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  25. * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  26. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
  27. * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  28. * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  29. * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  30. */
  31. #include "config.h"
  32. #include "defines.h"
  33. #include "common.h"
  34. #include <sys/time.h>
  35. #include <sys/types.h>
  36. #include <signal.h>
  37. #include <string.h>
  38. #include <netinet/in.h>
  39. #include <errno.h>
  40. #include <stdlib.h>
  41. #include <unistd.h>
  42. #include <fcntl.h>
  43. #include "tcpreplay.h"
  44. #ifdef TCPREPLAY
  45. #include "tcpreplay_opts.h"
  46. #ifdef TCPREPLAY_EDIT
  47. #include "tcpedit/tcpedit.h"
  48. extern tcpedit_t *tcpedit;
  49. #endif
  50. #endif /* TCPREPLAY */
  51. #include "send_packets.h"
  52. #include "sleep.h"
  53. extern tcpreplay_opt_t options;
  54. extern struct timeval begin, end;
  55. extern COUNTER bytes_sent, failed, pkts_sent;
  56. extern volatile int didsig;
  57. #ifdef DEBUG
  58. extern int debug;
  59. #endif
  60. static void do_sleep(struct timeval *time, struct timeval *last, int len,
  61. int accurate, sendpacket_t *sp, COUNTER counter, delta_t *ctx);
  62. static const u_char *get_next_packet(pcap_t *pcap, struct pcap_pkthdr *pkthdr,
  63. int file_idx, packet_cache_t **prev_packet);
  64. static u_int32_t get_user_count(sendpacket_t *sp, COUNTER counter);
  65. /**
  66. * the main loop function for tcpreplay. This is where we figure out
  67. * what to do with each packet
  68. */
  69. void
  70. send_packets(pcap_t *pcap, int cache_file_idx)
  71. {
  72. struct timeval last = { 0, 0 };
  73. COUNTER packetnum = 0;
  74. struct pcap_pkthdr pkthdr;
  75. const u_char *pktdata = NULL;
  76. sendpacket_t *sp = options.intf1;
  77. u_int32_t pktlen;
  78. packet_cache_t *cached_packet = NULL;
  79. packet_cache_t **prev_packet = NULL;
  80. #if defined TCPREPLAY && defined TCPREPLAY_EDIT
  81. struct pcap_pkthdr *pkthdr_ptr;
  82. #endif
  83. delta_t delta_ctx;
  84. init_delta_time(&delta_ctx);
  85. /* register signals */
  86. didsig = 0;
  87. if (options.speed.mode != SPEED_ONEATATIME) {
  88. (void)signal(SIGINT, catcher);
  89. } else {
  90. (void)signal(SIGINT, break_now);
  91. }
  92. if (options.enable_file_cache) {
  93. prev_packet = &cached_packet;
  94. } else {
  95. prev_packet = NULL;
  96. }
  97. /* MAIN LOOP
  98. * Keep sending while we have packets or until
  99. * we've sent enough packets
  100. */
  101. while ((pktdata = get_next_packet(pcap, &pkthdr, cache_file_idx, prev_packet)) != NULL) {
  102. /* die? */
  103. if (didsig)
  104. break_now(0);
  105. /* stop sending based on the limit -L? */
  106. if (options.limit_send > 0 && pkts_sent >= options.limit_send)
  107. return;
  108. packetnum++;
  109. #ifdef TCPREPLAY
  110. /* do we use the snaplen (caplen) or the "actual" packet len? */
  111. pktlen = HAVE_OPT(PKTLEN) ? pkthdr.len : pkthdr.caplen;
  112. #elif TCPBRIDGE
  113. pktlen = pkthdr.caplen;
  114. #else
  115. #error WTF??? We should not be here!
  116. #endif
  117. dbgx(2, "packet " COUNTER_SPEC " caplen %d", packetnum, pktlen);
  118. /* Dual nic processing */
  119. if (options.intf2 != NULL) {
  120. sp = (sendpacket_t *) cache_mode(options.cachedata, packetnum);
  121. /* sometimes we should not send the packet */
  122. if (sp == TCPR_DIR_NOSEND)
  123. continue;
  124. }
  125. /* do we need to print the packet via tcpdump? */
  126. #ifdef ENABLE_VERBOSE
  127. if (options.verbose)
  128. tcpdump_print(options.tcpdump, &pkthdr, pktdata);
  129. #endif
  130. #if defined TCPREPLAY && defined TCPREPLAY_EDIT
  131. pkthdr_ptr = &pkthdr;
  132. if (tcpedit_packet(tcpedit, &pkthdr_ptr, &pktdata, sp->cache_dir) == -1) {
  133. errx(-1, "Error editing packet #" COUNTER_SPEC ": %s", packetnum, tcpedit_geterr(tcpedit));
  134. }
  135. pktlen = HAVE_OPT(PKTLEN) ? pkthdr_ptr->len : pkthdr_ptr->caplen;
  136. #endif
  137. /*
  138. * we have to cast the ts, since OpenBSD sucks
  139. * had to be special and use bpf_timeval.
  140. * Only sleep if we're not in top speed mode (-t)
  141. */
  142. if (options.speed.mode != SPEED_TOPSPEED)
  143. do_sleep((struct timeval *)&pkthdr.ts, &last, pktlen, options.accurate, sp, packetnum, &delta_ctx);
  144. /* mark the time when we send the last packet */
  145. start_delta_time(&delta_ctx);
  146. dbgx(2, "Sending packet #" COUNTER_SPEC, packetnum);
  147. /* write packet out on network */
  148. if (sendpacket(sp, pktdata, pktlen) < (int)pktlen)
  149. warnx("Unable to send packet: %s", sendpacket_geterr(sp));
  150. /*
  151. * track the time of the "last packet sent". Again, because of OpenBSD
  152. * we have to do a mempcy rather then assignment.
  153. *
  154. * A number of 3rd party tools generate bad timestamps which go backwards
  155. * in time. Hence, don't update the "last" unless pkthdr.ts > last
  156. */
  157. if (timercmp(&last, &pkthdr.ts, <))
  158. memcpy(&last, &pkthdr.ts, sizeof(struct timeval));
  159. pkts_sent ++;
  160. bytes_sent += pktlen;
  161. } /* while */
  162. if (options.enable_file_cache) {
  163. options.file_cache[cache_file_idx].cached = TRUE;
  164. }
  165. }
  166. /**
  167. * Gets the next packet to be sent out. This will either read from the pcap file
  168. * or will retrieve the packet from the internal cache.
  169. *
  170. * The parameter prev_packet is used as the parent of the new entry in the cache list.
  171. * This should be NULL on the first call to this function for each file and
  172. * will be updated as new entries are added (or retrieved) from the cache list.
  173. */
  174. static const u_char *
  175. get_next_packet(pcap_t *pcap, struct pcap_pkthdr *pkthdr, int file_idx,
  176. packet_cache_t **prev_packet)
  177. {
  178. u_char *pktdata = NULL;
  179. u_int32_t pktlen;
  180. /* pcap may be null in cache mode! */
  181. /* packet_cache_t may be null in file read mode! */
  182. assert(pkthdr);
  183. /*
  184. * Check if we're caching files
  185. */
  186. if (options.enable_file_cache && (prev_packet != NULL)) {
  187. /*
  188. * Yes we are caching files - has this one been cached?
  189. */
  190. if (options.file_cache[file_idx].cached) {
  191. if (*prev_packet == NULL) {
  192. /*
  193. * Get the first packet in the cache list directly from the file
  194. */
  195. *prev_packet = options.file_cache[file_idx].packet_cache;
  196. } else {
  197. /*
  198. * Get the next packet in the cache list
  199. */
  200. *prev_packet = (*prev_packet)->next;
  201. }
  202. if (*prev_packet != NULL) {
  203. pktdata = (*prev_packet)->pktdata;
  204. memcpy(pkthdr, &((*prev_packet)->pkthdr), sizeof(struct pcap_pkthdr));
  205. }
  206. } else {
  207. /*
  208. * We should read the pcap file, and cache the results
  209. */
  210. pktdata = (u_char *)pcap_next(pcap, pkthdr);
  211. if (pktdata != NULL) {
  212. if (*prev_packet == NULL) {
  213. /*
  214. * Create the first packet in the list
  215. */
  216. *prev_packet = safe_malloc(sizeof(packet_cache_t));
  217. options.file_cache[file_idx].packet_cache = *prev_packet;
  218. } else {
  219. /*
  220. * Add a packet to the end of the list
  221. */
  222. (*prev_packet)->next = safe_malloc(sizeof(packet_cache_t));
  223. *prev_packet = (*prev_packet)->next;
  224. }
  225. if (*prev_packet != NULL) {
  226. (*prev_packet)->next = NULL;
  227. pktlen = pkthdr->len;
  228. (*prev_packet)->pktdata = safe_malloc(pktlen);
  229. memcpy((*prev_packet)->pktdata, pktdata, pktlen);
  230. memcpy(&((*prev_packet)->pkthdr), pkthdr, sizeof(struct pcap_pkthdr));
  231. }
  232. }
  233. }
  234. } else {
  235. /*
  236. * Read pcap file as normal
  237. */
  238. pktdata = (u_char *)pcap_next(pcap, pkthdr);
  239. }
  240. /* this get's casted to a const on the way out */
  241. return pktdata;
  242. }
  243. /**
  244. * determines based upon the cachedata which interface the given packet
  245. * should go out. Also rewrites any layer 2 data we might need to adjust.
  246. * Returns a void cased pointer to the options.intfX of the corresponding
  247. * interface.
  248. */
  249. void *
  250. cache_mode(char *cachedata, COUNTER packet_num)
  251. {
  252. void *sp = NULL;
  253. int result;
  254. if (packet_num > options.cache_packets)
  255. err(-1, "Exceeded number of packets in cache file.");
  256. result = check_cache(cachedata, packet_num);
  257. if (result == TCPR_DIR_NOSEND) {
  258. dbgx(2, "Cache: Not sending packet " COUNTER_SPEC ".", packet_num);
  259. return TCPR_DIR_NOSEND;
  260. }
  261. else if (result == TCPR_DIR_C2S) {
  262. dbgx(2, "Cache: Sending packet " COUNTER_SPEC " out primary interface.", packet_num);
  263. sp = options.intf1;
  264. }
  265. else if (result == TCPR_DIR_S2C) {
  266. dbgx(2, "Cache: Sending packet " COUNTER_SPEC " out secondary interface.", packet_num);
  267. sp = options.intf2;
  268. }
  269. else {
  270. err(-1, "check_cache() returned an error. Aborting...");
  271. }
  272. return sp;
  273. }
  274. /**
  275. * Given the timestamp on the current packet and the last packet sent,
  276. * calculate the appropriate amount of time to sleep and do so.
  277. */
  278. static void
  279. do_sleep(struct timeval *time, struct timeval *last, int len, int accurate,
  280. sendpacket_t *sp, COUNTER counter, delta_t *delta_ctx)
  281. {
  282. static struct timeval didsleep = { 0, 0 };
  283. static struct timeval start = { 0, 0 };
  284. #ifdef DEBUG
  285. static struct timeval totalsleep = { 0, 0 };
  286. #endif
  287. struct timespec adjuster = { 0, 0 };
  288. static struct timespec nap = { 0, 0 }, delta_time = {0, 0};
  289. struct timeval nap_for, now, sleep_until;
  290. struct timespec nap_this_time;
  291. static int32_t nsec_adjuster = -1, nsec_times = -1;
  292. float n;
  293. static u_int32_t send = 0; /* accellerator. # of packets to send w/o sleeping */
  294. u_int64_t ppnsec; /* packets per usec */
  295. static int first_time = 1; /* need to track the first time through for the pps accelerator */
  296. #ifdef TCPREPLAY
  297. adjuster.tv_nsec = options.sleep_accel * 1000;
  298. dbgx(4, "Adjuster: " TIMESPEC_FORMAT, adjuster.tv_sec, adjuster.tv_nsec);
  299. #else
  300. adjuster.tv_nsec = 0;
  301. #endif
  302. /* acclerator time? */
  303. if (send > 0) {
  304. send --;
  305. return;
  306. }
  307. /*
  308. * pps_multi accelerator. This uses the existing send accelerator above
  309. * and hence requires the funky math to get the expected timings.
  310. */
  311. if (options.speed.mode == SPEED_PACKETRATE && options.speed.pps_multi) {
  312. send = options.speed.pps_multi - 1;
  313. if (first_time) {
  314. first_time = 0;
  315. return;
  316. }
  317. }
  318. dbgx(4, "This packet time: " TIMEVAL_FORMAT, time->tv_sec, time->tv_usec);
  319. dbgx(4, "Last packet time: " TIMEVAL_FORMAT, last->tv_sec, last->tv_usec);
  320. if (gettimeofday(&now, NULL) < 0)
  321. errx(-1, "Error gettimeofday: %s", strerror(errno));
  322. dbgx(4, "Now time: " TIMEVAL_FORMAT, now.tv_sec, now.tv_usec);
  323. /* First time through for this file */
  324. if (pkts_sent == 0 || ((options.speed.mode != SPEED_MBPSRATE) && (counter == 0))) {
  325. start = now;
  326. timerclear(&sleep_until);
  327. timerclear(&didsleep);
  328. }
  329. else {
  330. timersub(&now, &start, &sleep_until);
  331. }
  332. /* If top speed, you shouldn't even be here */
  333. assert(options.speed.mode != SPEED_TOPSPEED);
  334. switch(options.speed.mode) {
  335. case SPEED_MULTIPLIER:
  336. /*
  337. * Replay packets a factor of the time they were originally sent.
  338. */
  339. if (timerisset(last)) {
  340. if (timercmp(time, last, <)) {
  341. /* Packet has gone back in time! Don't sleep and warn user */
  342. warnx("Packet #" COUNTER_SPEC " has gone back in time!", counter);
  343. timesclear(&nap);
  344. } else {
  345. /* time has increased or is the same, so handle normally */
  346. timersub(time, last, &nap_for);
  347. dbgx(3, "original packet delta time: " TIMEVAL_FORMAT, nap_for.tv_sec, nap_for.tv_usec);
  348. TIMEVAL_TO_TIMESPEC(&nap_for, &nap);
  349. dbgx(3, "original packet delta timv: " TIMESPEC_FORMAT, nap.tv_sec, nap.tv_nsec);
  350. timesdiv(&nap, options.speed.speed);
  351. dbgx(3, "original packet delta/div: " TIMESPEC_FORMAT, nap.tv_sec, nap.tv_nsec);
  352. }
  353. } else {
  354. /* Don't sleep if this is our first packet */
  355. timesclear(&nap);
  356. }
  357. break;
  358. case SPEED_MBPSRATE:
  359. /*
  360. * Ignore the time supplied by the capture file and send data at
  361. * a constant 'rate' (bytes per second).
  362. */
  363. if (pkts_sent != 0) {
  364. n = (float)len / (options.speed.speed * 1024 * 1024 / 8); /* convert Mbps to bps */
  365. nap.tv_sec = n;
  366. nap.tv_nsec = (n - nap.tv_sec) * 1000000000;
  367. dbgx(3, "packet size %d\t\tequals %f bps\t\tnap " TIMESPEC_FORMAT, len, n,
  368. nap.tv_sec, nap.tv_nsec);
  369. }
  370. else {
  371. /* don't sleep at all for the first packet */
  372. timesclear(&nap);
  373. }
  374. break;
  375. case SPEED_PACKETRATE:
  376. /* only need to calculate this the first time */
  377. if (! timesisset(&nap)) {
  378. /* run in packets/sec */
  379. ppnsec = 1000000000 / options.speed.speed * (options.speed.pps_multi > 0 ? options.speed.pps_multi : 1);
  380. NANOSEC_TO_TIMESPEC(ppnsec, &nap);
  381. dbgx(1, "sending %d packet(s) per %lu nsec", (options.speed.pps_multi > 0 ? options.speed.pps_multi : 1), nap.tv_nsec);
  382. }
  383. break;
  384. case SPEED_ONEATATIME:
  385. /* do we skip prompting for a key press? */
  386. if (send == 0) {
  387. send = get_user_count(sp, counter);
  388. }
  389. /* decrement our send counter */
  390. printf("Sending packet " COUNTER_SPEC " out: %s\n", counter,
  391. sp == options.intf1 ? options.intf1_name : options.intf2_name);
  392. send --;
  393. /* leave do_sleep() */
  394. return;
  395. break;
  396. default:
  397. errx(-1, "Unknown/supported speed mode: %d", options.speed.mode);
  398. break;
  399. }
  400. /*
  401. * since we apply the adjuster to the sleep time, we can't modify nap
  402. */
  403. nap_this_time.tv_sec = nap.tv_sec;
  404. nap_this_time.tv_nsec = nap.tv_nsec;
  405. dbgx(2, "nap_time before rounding: " TIMESPEC_FORMAT, nap_this_time.tv_sec, nap_this_time.tv_nsec);
  406. if (accurate != ACCURATE_ABS_TIME) {
  407. switch (options.speed.mode) {
  408. /* Mbps & Multipler are dynamic timings, so we round to the nearest usec */
  409. case SPEED_MBPSRATE:
  410. case SPEED_MULTIPLIER:
  411. ROUND_TIMESPEC_TO_MICROSEC(&nap_this_time);
  412. break;
  413. /* Packets/sec is static, so we weight packets for .1usec accuracy */
  414. case SPEED_PACKETRATE:
  415. if (nsec_adjuster < 0)
  416. nsec_adjuster = (nap_this_time.tv_nsec % 10000) / 1000;
  417. /* update in the range of 0-9 */
  418. nsec_times = (nsec_times + 1) % 10;
  419. if (nsec_times < nsec_adjuster) {
  420. /* sorta looks like a no-op, but gives us a nice round usec number */
  421. nap_this_time.tv_nsec = (nap_this_time.tv_nsec / 1000 * 1000) + 1000;
  422. } else {
  423. nap_this_time.tv_nsec -= (nap_this_time.tv_nsec % 1000);
  424. }
  425. dbgx(3, "(%d)\tnsec_times = %d\tnap adjust: %lu -> %lu", nsec_adjuster, nsec_times, nap.tv_nsec, nap_this_time.tv_nsec);
  426. break;
  427. default:
  428. errx(-1, "Unknown/supported speed mode: %d", options.speed.mode);
  429. }
  430. }
  431. dbgx(2, "nap_time before delta calc: " TIMESPEC_FORMAT, nap_this_time.tv_sec, nap_this_time.tv_nsec);
  432. get_delta_time(delta_ctx, &delta_time);
  433. dbgx(2, "delta: " TIMESPEC_FORMAT, delta_time.tv_sec, delta_time.tv_nsec);
  434. if (timesisset(&delta_time)) {
  435. if (timescmp(&nap_this_time, &delta_time, >)) {
  436. timessub(&nap_this_time, &delta_time, &nap_this_time);
  437. dbgx(3, "timesub: %lu %lu", delta_time.tv_sec, delta_time.tv_nsec);
  438. } else {
  439. timesclear(&nap_this_time);
  440. dbgx(3, "timesclear: " TIMESPEC_FORMAT, delta_time.tv_sec, delta_time.tv_nsec);
  441. }
  442. }
  443. /* apply the adjuster... */
  444. if (timesisset(&adjuster)) {
  445. if (timescmp(&nap_this_time, &adjuster, >)) {
  446. timessub(&nap_this_time, &adjuster, &nap_this_time);
  447. } else {
  448. timesclear(&nap_this_time);
  449. }
  450. }
  451. dbgx(2, "Sleeping: " TIMESPEC_FORMAT, nap_this_time.tv_sec, nap_this_time.tv_nsec);
  452. /* don't sleep if nap = {0, 0} */
  453. if (!timesisset(&nap_this_time))
  454. return;
  455. /*
  456. * Depending on the accurate method & packet rate computation method
  457. * We have multiple methods of sleeping, pick the right one...
  458. */
  459. switch (accurate) {
  460. #ifdef HAVE_SELECT
  461. case ACCURATE_SELECT:
  462. select_sleep(nap_this_time);
  463. break;
  464. #endif
  465. #ifdef HAVE_IOPERM
  466. case ACCURATE_IOPORT:
  467. ioport_sleep(nap_this_time);
  468. break;
  469. #endif
  470. #ifdef HAVE_RDTSC
  471. case ACCURATE_RDTSC:
  472. rdtsc_sleep(nap_this_time);
  473. break;
  474. #endif
  475. #ifdef HAVE_ABSOLUTE_TIME
  476. case ACCURATE_ABS_TIME:
  477. absolute_time_sleep(nap_this_time);
  478. break;
  479. #endif
  480. case ACCURATE_GTOD:
  481. gettimeofday_sleep(nap_this_time);
  482. break;
  483. case ACCURATE_NANOSLEEP:
  484. nanosleep_sleep(nap_this_time);
  485. break;
  486. /*
  487. timeradd(&didsleep, &nap_this_time, &didsleep);
  488. dbgx(4, "I will sleep " TIMEVAL_FORMAT, nap_this_time.tv_sec, nap_this_time.tv_usec);
  489. if (timercmp(&didsleep, &sleep_until, >)) {
  490. timersub(&didsleep, &sleep_until, &nap_this_time);
  491. TIMEVAL_TO_TIMESPEC(&nap_this_time, &sleep);
  492. dbgx(4, "Sleeping " TIMEVAL_FORMAT, nap_this_time.tv_sec, nap_this_time.tv_usec);
  493. #ifdef DEBUG
  494. timeradd(&totalsleep, &nap_this_time, &totalsleep);
  495. #endif
  496. if (nanosleep(&sleep, &ignore) == -1) {
  497. warnx("nanosleep error: %s", strerror(errno));
  498. }
  499. }
  500. break;
  501. */
  502. default:
  503. errx(-1, "Unknown timer mode %d", accurate);
  504. }
  505. #ifdef DEBUG
  506. dbgx(4, "Total sleep time: " TIMEVAL_FORMAT, totalsleep.tv_sec, totalsleep.tv_usec);
  507. #endif
  508. dbgx(2, "sleep delta: " TIMESPEC_FORMAT, delta_time.tv_sec, delta_time.tv_nsec);
  509. }
  510. /**
  511. * Ask the user how many packets they want to send.
  512. */
  513. static u_int32_t
  514. get_user_count(sendpacket_t *sp, COUNTER counter)
  515. {
  516. struct pollfd poller[1]; /* use poll to read from the keyboard */
  517. char input[EBUF_SIZE];
  518. u_int32_t send = 0;
  519. printf("**** Next packet #" COUNTER_SPEC " out %s. How many packets do you wish to send? ",
  520. counter, (sp == options.intf1 ? options.intf1_name : options.intf2_name));
  521. fflush(NULL);
  522. poller[0].fd = STDIN_FILENO;
  523. poller[0].events = POLLIN | POLLPRI | POLLNVAL;
  524. poller[0].revents = 0;
  525. if (fcntl(0, F_SETFL, fcntl(0, F_GETFL) & ~O_NONBLOCK))
  526. errx(-1, "Unable to clear non-blocking flag on stdin: %s", strerror(errno));
  527. /* wait for the input */
  528. if (poll(poller, 1, -1) < 0)
  529. errx(-1, "Error reading user input from stdin: %s", strerror(errno));
  530. /*
  531. * read to the end of the line or EBUF_SIZE,
  532. * Note, if people are stupid, and type in more text then EBUF_SIZE
  533. * then the next fgets() will pull in that data, which will have poor
  534. * results. fuck them.
  535. */
  536. if (fgets(input, sizeof(input), stdin) == NULL) {
  537. errx(-1, "Unable to process user input for fd %d: %s", fileno(stdin), strerror(errno));
  538. } else if (strlen(input) > 1) {
  539. send = strtoul(input, NULL, 0);
  540. }
  541. /* how many packets should we send? */
  542. if (send == 0) {
  543. dbg(1, "Input was less then 1 or non-numeric, assuming 1");
  544. /* assume send only one packet */
  545. send = 1;
  546. }
  547. return send;
  548. }
  549. /*
  550. Local Variables:
  551. mode:c
  552. indent-tabs-mode:nil
  553. c-basic-offset:4
  554. End:
  555. */