tcpedit.c 14 KB

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