tcpedit.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491
  1. /* $Id: tcpedit.c 2211 2009-02-18 02:48:04Z aturner $ */
  2. /*
  3. * Copyright (c) 2001-2007 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 <ctype.h>
  34. #include <fcntl.h>
  35. #include <stdio.h>
  36. #include <stdlib.h>
  37. #include <string.h>
  38. #include <sys/types.h>
  39. #include <unistd.h>
  40. #include <stdarg.h>
  41. #include "tcpedit-int.h"
  42. #include "tcpedit_stub.h"
  43. #include "portmap.h"
  44. #include "common.h"
  45. #include "edit_packet.h"
  46. #include "parse_args.h"
  47. #include "plugins/dlt_plugins.h"
  48. #include "lib/sll.h"
  49. #include "dlt.h"
  50. tOptDesc *const tcpedit_tcpedit_optDesc_p;
  51. /**
  52. * \brief Edit the given packet
  53. *
  54. * Processs a given packet and edit the pkthdr/pktdata structures
  55. * according to the rules in tcpedit
  56. * Returns: TCPEDIT_ERROR on error
  57. * TCPEDIT_SOFT_ERROR on remove packet
  58. * 0 on no change
  59. * 1 on change
  60. */
  61. int
  62. tcpedit_packet(tcpedit_t *tcpedit, struct pcap_pkthdr **pkthdr,
  63. u_char **pktdata, tcpr_dir_t direction)
  64. {
  65. ipv4_hdr_t *ip_hdr = NULL;
  66. arp_hdr_t *arp_hdr = NULL;
  67. int l2len = 0, l2proto, retval = 0, dst_dlt, src_dlt, pktlen, lendiff;
  68. int needtorecalc = 0; /* did the packet change? if so, checksum */
  69. u_char *packet = *pktdata;
  70. assert(tcpedit);
  71. assert(pkthdr);
  72. assert(*pkthdr);
  73. assert(pktdata);
  74. assert(packet);
  75. assert(tcpedit->validated);
  76. tcpedit->runtime.packetnum++;
  77. dbgx(3, "packet " COUNTER_SPEC " caplen %d",
  78. tcpedit->runtime.packetnum, (*pkthdr)->caplen);
  79. /*
  80. * remove the Ethernet FCS (checksum)?
  81. * note that this feature requires the end user to be smart and
  82. * only set this flag IFF the pcap has the FCS. If not, then they
  83. * just removed 2 bytes of ACTUAL PACKET DATA. Sucks to be them.
  84. */
  85. if (tcpedit->efcs > 0) {
  86. (*pkthdr)->caplen -= 4;
  87. (*pkthdr)->len -= 4;
  88. }
  89. src_dlt = tcpedit_dlt_src(tcpedit->dlt_ctx);
  90. /* not everything has a L3 header, so check for errors. returns proto in network byte order */
  91. if ((l2proto = tcpedit_dlt_proto(tcpedit->dlt_ctx, src_dlt, packet, (*pkthdr)->caplen)) < 0) {
  92. dbg(2, "Packet has no L3+ header");
  93. } else {
  94. dbgx(2, "Layer 3 protocol type is: 0x%04x", ntohs(l2proto));
  95. }
  96. /* rewrite Layer 2 */
  97. if ((pktlen = tcpedit_dlt_process(tcpedit->dlt_ctx, pktdata, (*pkthdr)->caplen, direction)) == TCPEDIT_ERROR)
  98. errx(-1, "%s", tcpedit_geterr(tcpedit));
  99. /* unable to edit packet, most likely 802.11 management or data QoS frame */
  100. if (pktlen == TCPEDIT_SOFT_ERROR) {
  101. dbgx(3, "%s", tcpedit_geterr(tcpedit));
  102. return TCPEDIT_SOFT_ERROR;
  103. }
  104. /* update our packet lengths (real/captured) based on L2 length changes */
  105. lendiff = pktlen - (*pkthdr)->caplen;
  106. (*pkthdr)->caplen += lendiff;
  107. (*pkthdr)->len += lendiff;
  108. dst_dlt = tcpedit_dlt_dst(tcpedit->dlt_ctx);
  109. l2len = tcpedit_dlt_l2len(tcpedit->dlt_ctx, dst_dlt, packet, (*pkthdr)->caplen);
  110. dbgx(2, "dst_dlt = %04x\tsrc_dlt = %04x\tproto = %04x\tl2len = %d", dst_dlt, src_dlt, ntohs(l2proto), l2len);
  111. /* does packet have an IP header? if so set our pointer to it */
  112. if (l2proto == htons(ETHERTYPE_IP)) {
  113. ip_hdr = (ipv4_hdr_t *)tcpedit_dlt_l3data(tcpedit->dlt_ctx, src_dlt, packet, (*pkthdr)->caplen);
  114. if (ip_hdr == NULL) {
  115. return TCPEDIT_ERROR;
  116. }
  117. dbgx(3, "Packet has an IPv4 header: %p...", ip_hdr);
  118. } else {
  119. dbgx(3, "Packet isn't IPv4: 0x%04x", l2proto);
  120. /* non-IP packets have a NULL ip_hdr struct */
  121. ip_hdr = NULL;
  122. }
  123. /* The following edits only apply for IPv4 */
  124. if (ip_hdr != NULL) {
  125. /* set TOS ? */
  126. if (tcpedit->tos > -1)
  127. ip_hdr->ip_tos = tcpedit->tos;
  128. /* rewrite the TTL */
  129. needtorecalc += rewrite_ipv4_ttl(tcpedit, ip_hdr);
  130. /* rewrite TCP/UDP ports */
  131. if (tcpedit->portmap != NULL) {
  132. if ((retval = rewrite_ports(tcpedit, &ip_hdr)) < 0)
  133. return TCPEDIT_ERROR;
  134. needtorecalc += retval;
  135. }
  136. }
  137. /* (Un)truncate or MTU truncate packet? */
  138. if (tcpedit->fixlen || tcpedit->mtu_truncate) {
  139. if ((retval = untrunc_packet(tcpedit, *pkthdr, packet, ip_hdr)) < 0)
  140. return TCPEDIT_ERROR;
  141. needtorecalc += retval;
  142. }
  143. /* rewrite IP addresses in IPv4 or ARP */
  144. if (tcpedit->rewrite_ip) {
  145. /* IP packets */
  146. if (ip_hdr != NULL) {
  147. if ((retval = rewrite_ipv4l3(tcpedit, ip_hdr, direction)) < 0)
  148. return TCPEDIT_ERROR;
  149. needtorecalc += retval;
  150. }
  151. /* ARP packets */
  152. else if (l2proto == htons(ETHERTYPE_ARP)) {
  153. arp_hdr = (arp_hdr_t *)&(packet[l2len]);
  154. /* unlike, rewrite_ipl3, we don't care if the packet changed
  155. * because we never need to recalc the checksums for an ARP
  156. * packet. So ignore the return value
  157. */
  158. if (rewrite_iparp(tcpedit, arp_hdr, direction) < 0)
  159. return TCPEDIT_ERROR;
  160. }
  161. }
  162. /* do we need to spoof the src/dst IP address in IPv4 or ARP? */
  163. if (tcpedit->seed) {
  164. /* IPv4 Packets */
  165. if (ip_hdr != NULL) {
  166. if ((retval = randomize_ipv4(tcpedit, *pkthdr, packet,
  167. ip_hdr)) < 0)
  168. return TCPEDIT_ERROR;
  169. needtorecalc += retval;
  170. /* ARP packets */
  171. } else if (l2proto == htons(ETHERTYPE_ARP)) {
  172. if (direction == TCPR_DIR_C2S) {
  173. if (randomize_iparp(tcpedit, *pkthdr, packet,
  174. tcpedit->runtime.dlt1) < 0)
  175. return TCPEDIT_ERROR;
  176. } else {
  177. if (randomize_iparp(tcpedit, *pkthdr, packet,
  178. tcpedit->runtime.dlt2) < 0)
  179. return TCPEDIT_ERROR;
  180. }
  181. }
  182. }
  183. /* do we need to fix checksums? -- must always do this last! */
  184. if ((tcpedit->fixcsum || needtorecalc) && (ip_hdr != NULL)) {
  185. retval = fix_checksums(tcpedit, *pkthdr, ip_hdr);
  186. if (retval < 0) {
  187. return TCPEDIT_ERROR;
  188. } else if (retval == TCPEDIT_WARN) {
  189. warnx("%s", tcpedit_getwarn(tcpedit));
  190. }
  191. }
  192. tcpedit_dlt_merge_l3data(tcpedit->dlt_ctx, dst_dlt, packet, (*pkthdr)->caplen, (u_char *)ip_hdr);
  193. tcpedit->runtime.total_bytes += (*pkthdr)->caplen;
  194. tcpedit->runtime.pkts_edited ++;
  195. return retval;
  196. }
  197. /**
  198. * initializes the tcpedit library. returns 0 on success, -1 on error.
  199. */
  200. int
  201. tcpedit_init(tcpedit_t **tcpedit_ex, int dlt)
  202. {
  203. tcpedit_t *tcpedit;
  204. *tcpedit_ex = safe_malloc(sizeof(tcpedit_t));
  205. tcpedit = *tcpedit_ex;
  206. if ((tcpedit->dlt_ctx = tcpedit_dlt_init(tcpedit, dlt)) == NULL)
  207. return TCPEDIT_ERROR;
  208. tcpedit->mtu = DEFAULT_MTU; /* assume 802.3 Ethernet */
  209. tcpedit->tos = -1; /* disabled by default */
  210. memset(&(tcpedit->runtime), 0, sizeof(tcpedit_runtime_t));
  211. tcpedit->runtime.dlt1 = dlt;
  212. tcpedit->runtime.dlt2 = dlt;
  213. dbgx(1, "Input file (1) datalink type is %s\n",
  214. pcap_datalink_val_to_name(dlt));
  215. #ifdef FORCE_ALIGN
  216. tcpedit->runtime.l3buff = (u_char *)safe_malloc(MAXPACKET);
  217. #endif
  218. return TCPEDIT_OK;
  219. }
  220. /**
  221. * return the output DLT type
  222. */
  223. int
  224. tcpedit_get_output_dlt(tcpedit_t *tcpedit)
  225. {
  226. assert(tcpedit);
  227. return tcpedit_dlt_output_dlt(tcpedit->dlt_ctx);
  228. }
  229. /**
  230. * \brief tcpedit option validator. Call after tcpedit_init()
  231. *
  232. * Validates that given the current state of tcpedit that the given
  233. * pcap source and destination (based on DLT) can be properly rewritten
  234. * return 0 on sucess
  235. * return -1 on error
  236. * DO NOT USE!
  237. */
  238. int
  239. tcpedit_validate(tcpedit_t *tcpedit)
  240. {
  241. assert(tcpedit);
  242. tcpedit->validated = 1;
  243. /* we used to do a bunch of things here, but not anymore...
  244. * maybe I should find something to do or just get ride of it
  245. */
  246. return 0;
  247. }
  248. /**
  249. * return the error string when a tcpedit() function returns
  250. * TCPEDIT_ERROR
  251. */
  252. char *
  253. tcpedit_geterr(tcpedit_t *tcpedit)
  254. {
  255. assert(tcpedit);
  256. return tcpedit->runtime.errstr;
  257. }
  258. /**
  259. * \brief Internal function to set the tcpedit error string
  260. *
  261. * Used to set the error string when there is an error, result is retrieved
  262. * using tcpedit_geterr(). You shouldn't ever actually call this, but use
  263. * tcpedit_seterr() which is a macro wrapping this instead.
  264. */
  265. void
  266. __tcpedit_seterr(tcpedit_t *tcpedit, const char *func, const int line, const char *file, const char *fmt, ...)
  267. {
  268. va_list ap;
  269. char errormsg[TCPEDIT_ERRSTR_LEN];
  270. assert(tcpedit);
  271. va_start(ap, fmt);
  272. if (fmt != NULL) {
  273. (void)vsnprintf(errormsg,
  274. (TCPEDIT_ERRSTR_LEN - 1), fmt, ap);
  275. }
  276. va_end(ap);
  277. snprintf(tcpedit->runtime.errstr, (TCPEDIT_ERRSTR_LEN -1), "From %s:%s() line %d:\n%s",
  278. file, func, line, errormsg);
  279. }
  280. /**
  281. * return the warning string when a tcpedit() function returns
  282. * TCPEDIT_WARN
  283. */
  284. char *
  285. tcpedit_getwarn(tcpedit_t *tcpedit)
  286. {
  287. assert(tcpedit);
  288. return tcpedit->runtime.warnstr;
  289. }
  290. /**
  291. * used to set the warning string when there is an warning
  292. */
  293. void
  294. tcpedit_setwarn(tcpedit_t *tcpedit, const char *fmt, ...)
  295. {
  296. va_list ap;
  297. assert(tcpedit);
  298. va_start(ap, fmt);
  299. if (fmt != NULL)
  300. (void)vsnprintf(tcpedit->runtime.warnstr, (TCPEDIT_ERRSTR_LEN - 1), fmt, ap);
  301. va_end(ap);
  302. }
  303. /**
  304. * \brief Checks the given error code and does the right thing
  305. *
  306. * Generic function which checks the TCPEDIT_* error code
  307. * and always returns OK or ERROR. For warnings, prints the
  308. * warning message and returns OK. For any other value, fails with
  309. * an assert.
  310. *
  311. * prefix is a string prepended to the error/warning
  312. */
  313. int
  314. tcpedit_checkerror(tcpedit_t *tcpedit, const int rcode, const char *prefix) {
  315. assert(tcpedit);
  316. switch (rcode) {
  317. case TCPEDIT_OK:
  318. case TCPEDIT_ERROR:
  319. return rcode;
  320. break;
  321. case TCPEDIT_SOFT_ERROR:
  322. if (prefix != NULL) {
  323. fprintf(stderr, "Error %s: %s\n", prefix, tcpedit_geterr(tcpedit));
  324. } else {
  325. fprintf(stderr, "Error: %s\n", tcpedit_geterr(tcpedit));
  326. }
  327. break;
  328. case TCPEDIT_WARN:
  329. if (prefix != NULL) {
  330. fprintf(stderr, "Warning %s: %s\n", prefix, tcpedit_getwarn(tcpedit));
  331. } else {
  332. fprintf(stderr, "Warning: %s\n", tcpedit_getwarn(tcpedit));
  333. }
  334. return TCPEDIT_OK;
  335. break;
  336. default:
  337. assert(0 == 1); /* this should never happen! */
  338. break;
  339. }
  340. return TCPEDIT_ERROR;
  341. }
  342. /**
  343. * \brief Cleans up after ourselves. Return 0 on success.
  344. *
  345. * Clean up after ourselves, but does not actually free the ptr.
  346. */
  347. int
  348. tcpedit_close(tcpedit_t *tcpedit)
  349. {
  350. assert(tcpedit);
  351. dbgx(1, "tcpedit processed " COUNTER_SPEC " bytes in " COUNTER_SPEC
  352. " packets.\n", tcpedit->runtime.total_bytes,
  353. tcpedit->runtime.pkts_edited);
  354. /* free buffer if required */
  355. #ifdef FORCE_ALIGN
  356. safe_free(tcpedit->runtime.l3buff);
  357. #endif
  358. return 0;
  359. }
  360. /**
  361. * Return a ptr to the Layer 3 data. Returns TCPEDIT_ERROR on error
  362. */
  363. const u_char *
  364. tcpedit_l3data(tcpedit_t *tcpedit, tcpedit_coder_t code, u_char *packet, const int pktlen)
  365. {
  366. u_char *result = NULL;
  367. if (code == BEFORE_PROCESS) {
  368. result = tcpedit_dlt_l3data(tcpedit->dlt_ctx, tcpedit->dlt_ctx->decoder->dlt, packet, pktlen);
  369. } else {
  370. result = tcpedit_dlt_l3data(tcpedit->dlt_ctx, tcpedit->dlt_ctx->encoder->dlt, packet, pktlen);
  371. }
  372. return result;
  373. }
  374. /**
  375. * return the length of the layer 2 header. Returns TCPEDIT_ERROR on error
  376. */
  377. int
  378. tcpedit_l2len(tcpedit_t *tcpedit, tcpedit_coder_t code, u_char *packet, const int pktlen)
  379. {
  380. int result = 0;
  381. if (code == BEFORE_PROCESS) {
  382. result = tcpedit_dlt_l2len(tcpedit->dlt_ctx, tcpedit->dlt_ctx->decoder->dlt, packet, pktlen);
  383. } else {
  384. result = tcpedit_dlt_l2len(tcpedit->dlt_ctx, tcpedit->dlt_ctx->encoder->dlt, packet, pktlen);
  385. }
  386. return result;
  387. }
  388. /**
  389. * Returns the layer 3 type, often encoded as the layer2.proto field
  390. */
  391. int
  392. tcpedit_l3proto(tcpedit_t *tcpedit, tcpedit_coder_t code, const u_char *packet, const int pktlen)
  393. {
  394. int result = 0;
  395. if (code == BEFORE_PROCESS) {
  396. result = tcpedit_dlt_proto(tcpedit->dlt_ctx, tcpedit->dlt_ctx->decoder->dlt, packet, pktlen);
  397. } else {
  398. result = tcpedit_dlt_proto(tcpedit->dlt_ctx, tcpedit->dlt_ctx->encoder->dlt, packet, pktlen);
  399. }
  400. return ntohs(result);
  401. }
  402. /*
  403. u_char *
  404. tcpedit_srcmac(tcpedit_t *tcpedit, tcpedit_coder_t code, u_char *packet, const int pktlen)
  405. {
  406. }
  407. u_char *
  408. tcpedit_dstmac(tcpedit_t *tcpedit, tcpedit_coder_t code, u_char *packet, const int pktlen)
  409. {
  410. }
  411. int
  412. tcpedit_maclen(tcpedit_t *tcpedit, tcpedit_coder_t code)
  413. {
  414. }
  415. */