bridge.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374
  1. /* $Id: bridge.c 1540 2006-07-29 06:17:04Z aturner $ */
  2. /*
  3. * Copyright (c) 2001-2005 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 <signal.h>
  36. #include <string.h>
  37. #include <netinet/in.h>
  38. #include <time.h>
  39. #include <errno.h>
  40. #include <stdlib.h>
  41. #include "tcpbridge.h"
  42. #include "bridge.h"
  43. #include "send_packets.h"
  44. #include "tcpedit/tcpedit.h"
  45. extern tcpbridge_opt_t options;
  46. extern struct timeval begin, end;
  47. extern COUNTER bytes_sent, failed, pkts_sent;
  48. extern volatile int didsig;
  49. #ifdef DEBUG
  50. extern int debug;
  51. #endif
  52. static int live_callback(struct live_data_t *,
  53. struct pcap_pkthdr *, const u_char *);
  54. /*
  55. * First, prep our RB Tree which tracks where each (source)
  56. * MAC really lives so we don't create really nasty network
  57. * storms.
  58. */
  59. static struct macsrc_t *new_node(void);
  60. RB_HEAD(macsrc_tree, macsrc_t) macsrc_root;
  61. static int
  62. rbmacsrc_comp(struct macsrc_t *a, struct macsrc_t *b)
  63. {
  64. return (memcmp(a->key, b->key, ETHER_ADDR_LEN));
  65. }
  66. RB_PROTOTYPE(macsrc_tree, macsrc_t, node, rbmacsrc_comp)
  67. RB_GENERATE(macsrc_tree, macsrc_t, node, rbmacsrc_comp)
  68. void
  69. rbinit(void)
  70. {
  71. RB_INIT(&macsrc_root);
  72. }
  73. struct macsrc_t *
  74. new_node(void)
  75. {
  76. struct macsrc_t *node;
  77. node = (struct macsrc_t *)safe_malloc(sizeof(struct macsrc_t));
  78. memset(node, '\0', sizeof(struct macsrc_t));
  79. return (node);
  80. }
  81. /*
  82. * main loop for bridging mode or unidir
  83. */
  84. void
  85. do_bridge(pcap_t * pcap1, pcap_t * pcap2)
  86. {
  87. struct pollfd polls[2]; /* one for left & right pcap */
  88. int pollresult = 0;
  89. u_char source1 = PCAP_INT1;
  90. u_char source2 = PCAP_INT2;
  91. struct live_data_t livedata;
  92. int pollcount = 1; /* default to unidir mode */
  93. assert(pcap1); /* must be set */
  94. /* define polls */
  95. polls[PCAP_INT1].fd = pcap_fileno(pcap1);
  96. polls[PCAP_INT1].events = POLLIN | POLLPRI;
  97. polls[PCAP_INT1].revents = 0;
  98. if (! options.unidir) {
  99. assert(pcap2);
  100. polls[PCAP_INT2].fd = pcap_fileno(pcap2);
  101. polls[PCAP_INT2].events = POLLIN | POLLPRI;
  102. polls[PCAP_INT2].revents = 0;
  103. pollcount = 2;
  104. }
  105. /* register signals */
  106. didsig = 0;
  107. (void)signal(SIGINT, catcher);
  108. /*
  109. * loop until ctrl-C or we've sent enough packets
  110. * note that if -L wasn't specified, limit_send is
  111. * set to 0 so this will loop infinately
  112. */
  113. while ((options.limit_send == 0) || (options.limit_send != pkts_sent)) {
  114. if (didsig) {
  115. packet_stats(&begin, &end, bytes_sent, pkts_sent, failed);
  116. exit(1);
  117. }
  118. dbgx(1, "limit_send: " COUNTER_SPEC " \t pkts_sent: " COUNTER_SPEC,
  119. options.limit_send, pkts_sent);
  120. /* poll for a packet on the two interfaces */
  121. pollresult = poll(polls, pollcount, options.poll_timeout);
  122. /* poll has returned, process the result */
  123. if (pollresult > 0) {
  124. /* success, got one or more packets */
  125. if (polls[PCAP_INT1].revents > 0) {
  126. dbg(2, "Processing first interface");
  127. livedata.source = source1;
  128. livedata.pcap = pcap1;
  129. pcap_dispatch(pcap1, -1, (pcap_handler) live_callback,
  130. (u_char *) & livedata);
  131. }
  132. /* check the other interface?? */
  133. if (! options.unidir && polls[PCAP_INT2].revents > 0) {
  134. dbg(2, "Processing second interface");
  135. livedata.source = source2;
  136. livedata.pcap = pcap2;
  137. pcap_dispatch(pcap2, -1, (pcap_handler) live_callback,
  138. (u_char *) & livedata);
  139. }
  140. }
  141. else if (pollresult == 0) {
  142. dbg(3, "poll timeout exceeded...");
  143. /* do something here? */
  144. }
  145. else {
  146. /* poll error, probably a Ctrl-C */
  147. warnx("poll() error: %s", strerror(errno));
  148. }
  149. /* reset the result codes */
  150. polls[PCAP_INT1].revents = 0;
  151. if (! options.unidir)
  152. polls[PCAP_INT2].revents = 0;
  153. /* go back to the top of the loop */
  154. }
  155. } /* do_bridge() */
  156. /*
  157. * This is the callback we use with pcap_dispatch to process
  158. * each packet recieved by libpcap on the two interfaces.
  159. */
  160. static int
  161. live_callback(struct live_data_t *livedata, struct pcap_pkthdr *pkthdr,
  162. const u_char * nextpkt)
  163. {
  164. ipv4_hdr_t *ip_hdr = NULL;
  165. sendpacket_t *sp = NULL;
  166. static u_char *pktdata = NULL; /* full packet buffer */
  167. #ifdef FORCE_ALIGN
  168. u_char *ipbuff = NULL; /* IP header and above buffer */
  169. #endif
  170. static int first_time = 1;
  171. int newl2len, cache_mode;
  172. static unsigned long packetnum = 0;
  173. struct macsrc_t *node, finder; /* rb tree nodes */
  174. #ifdef DEBUG
  175. u_char dstmac[ETHER_ADDR_LEN];
  176. #endif
  177. packetnum++;
  178. dbgx(2, "packet %d caplen %d", packetnum, pkthdr->caplen);
  179. /* only malloc the first time */
  180. if (first_time) {
  181. /* create packet buffers */
  182. pktdata = (u_char *)safe_malloc(MAXPACKET);
  183. #ifdef FORCE_ALIGN
  184. ipbuff = (u_char *)safe_malloc(MAXPACKET);
  185. #endif
  186. first_time = 0;
  187. } else {
  188. /* zero out the old packet info */
  189. memset(pktdata, '\0', MAXPACKET);
  190. #ifdef FORCE_ALIGN
  191. memset(ipbuff, '\0', MAXPACKET);
  192. #endif
  193. }
  194. #ifdef HAVE_TCPDUMP
  195. /* decode packet? */
  196. if (options.verbose)
  197. tcpdump_print(options.tcpdump, pkthdr, nextpkt);
  198. #endif
  199. /* lookup our source MAC in the tree */
  200. memcpy(&finder.key, &pktdata[ETHER_ADDR_LEN], ETHER_ADDR_LEN);
  201. #ifdef DEBUG
  202. memcpy(&dstmac, pktdata, ETHER_ADDR_LEN);
  203. dbgx(1, "Source MAC: " MAC_FORMAT "\tDestin MAC: " MAC_FORMAT,
  204. MAC_STR(finder.key), MAC_STR(dstmac));
  205. #endif
  206. /* first, is this a packet sent locally? If so, ignore it */
  207. if ((memcmp(sendpacket_get_hwaddr(options.sp1), &finder.key,
  208. ETHER_ADDR_LEN)) == 0) {
  209. dbgx(1, "Packet matches the MAC of %s, skipping.", options.intf1);
  210. return (1);
  211. }
  212. else if ((memcmp(sendpacket_get_hwaddr(options.sp2), &finder.key,
  213. ETHER_ADDR_LEN)) == 0) {
  214. dbgx(1, "Packet matches the MAC of %s, skipping.", options.intf2);
  215. return (1);
  216. }
  217. node = RB_FIND(macsrc_tree, &macsrc_root, &finder);
  218. /* if we can't find the node, build a new one */
  219. if (node == NULL) {
  220. dbg(1, "Unable to find MAC in the tree");
  221. node = new_node();
  222. node->source = livedata->source;
  223. memcpy(&node->key, &finder.key, ETHER_ADDR_LEN);
  224. RB_INSERT(macsrc_tree, &macsrc_root, node);
  225. } /* otherwise compare sources */
  226. else if (node->source != livedata->source) {
  227. dbg(1,
  228. "Found the MAC and we had a source missmatch... skipping packet");
  229. /*
  230. * IMPORTANT!!!
  231. * Never send a packet out the same interface we sourced it on!
  232. */
  233. return (1);
  234. }
  235. /* what is our cache mode? */
  236. cache_mode = livedata->source == PCAP_INT1 ? CACHE_PRIMARY : CACHE_SECONDARY;
  237. /* Rewrite any Layer 2 data and copy the data to our local buffer */
  238. if ((newl2len = rewrite_l2(livedata->pcap, &pkthdr, pktdata, cache_mode))
  239. == 0) {
  240. warnx("Error rewriting layer 2 data... skipping packet %d", packetnum);
  241. return (1);
  242. }
  243. /*
  244. * send packets out the OTHER interface
  245. * and update the dst mac if necessary
  246. */
  247. if (node->source == PCAP_INT1) {
  248. dbgx(2, "Packet source was %s... sending out on %s", options.intf1,
  249. options.intf2);
  250. sp = options.sp2;
  251. }
  252. else if (node->source == PCAP_INT2) {
  253. dbgx(2, "Packet source was %s... sending out on %s", options.intf2,
  254. options.intf1);
  255. sp = options.sp1;
  256. } else {
  257. errx(1, "wtf? our node->source != PCAP_INT1 and != PCAP_INT2: %c",
  258. node->source);
  259. }
  260. if (get_l2protocol(nextpkt, pkthdr->caplen, livedata->linktype)
  261. == ETHERTYPE_IP) {
  262. dbg(3, "Packet is IP");
  263. #ifdef FORCE_ALIGN
  264. /*
  265. * copy layer 3 and up to our temp packet buffer
  266. * for now on, we have to edit the packetbuff because
  267. * just before we send the packet, we copy the packetbuff
  268. * back onto the pkt.data + newl2len buffer
  269. * we do all this work to prevent byte alignment issues
  270. */
  271. ip_hdr = (ipv4_hdr_t *) ipbuff;
  272. memcpy(ip_hdr, (&pktdata[newl2len]), pkthdr->caplen - newl2len);
  273. #else
  274. /*
  275. * on non-strict byte align systems, don't need to memcpy(),
  276. * just point to 14 bytes into the existing buffer
  277. */
  278. ip_hdr = (ipv4_hdr_t *) (&pktdata[newl2len]);
  279. #endif
  280. /* look for include or exclude CIDR match */
  281. if (options.xX.cidr != NULL) {
  282. if (!process_xX_by_cidr(options.xX.mode, options.xX.cidr, ip_hdr)) {
  283. return (1);
  284. }
  285. }
  286. }
  287. else {
  288. dbg(3, "Packet is not IP");
  289. /* non-IP packets have a NULL ip_hdr struct */
  290. ip_hdr = NULL;
  291. }
  292. #ifdef STRICT_ALIGN
  293. /*
  294. * put back the layer 3 and above back in the pkt.data buffer
  295. * we can't edit the packet at layer 3 or above beyond this point
  296. */
  297. memcpy(&pktdata[newl2len], ip_hdr, pkthdr->caplen - newl2len);
  298. #endif
  299. /*
  300. * write packet out on the network
  301. */
  302. if (sendpacket(sp, pktdata, pkthdr->caplen) < pkthdr->caplen) {
  303. errx(1, "Unable to send packet out %s: %s", sp->device, sendpacket_geterr(sp));
  304. }
  305. bytes_sent += pkthdr->caplen;
  306. pkts_sent++;
  307. dbgx(1, "Sent packet " COUNTER_SPEC, pkts_sent);
  308. return (1);
  309. } /* live_callback() */
  310. /*
  311. Local Variables:
  312. mode:c
  313. indent-tabs-mode:nil
  314. c-basic-offset:4
  315. End:
  316. */