@@ -51,70 +51,7 @@
#include "compat_xtables.h"
#include "xt_TARPIT.h"
-static void tarpit_tcp(struct sk_buff *oldskb, unsigned int hook,
- unsigned int mode)
-{
- struct tcphdr _otcph, *oth, *tcph;
- unsigned int addr_type = RTN_UNSPEC;
- struct sk_buff *nskb;
- const struct iphdr *oldhdr;
- struct iphdr *niph;
- uint16_t tmp, payload;
-
- /* A truncated TCP header is not going to be useful */
- if (oldskb->len < ip_hdrlen(oldskb) + sizeof(struct tcphdr))
- return;
-
- oth = skb_header_pointer(oldskb, ip_hdrlen(oldskb),
- sizeof(_otcph), &_otcph);
- if (oth == NULL)
- return;
-
- /* Check checksum. */
- if (nf_ip_checksum(oldskb, hook, ip_hdrlen(oldskb), IPPROTO_TCP))
- return;
-
- /*
- * Copy skb (even if skb is about to be dropped, we cannot just
- * clone it because there may be other things, such as tcpdump,
- * interested in it)
- */
- nskb = skb_copy_expand(oldskb, LL_MAX_HEADER,
- skb_tailroom(oldskb), GFP_ATOMIC);
- if (nskb == NULL)
- return;
-
- /* This packet will not be the same as the other: clear nf fields */
- nf_reset(nskb);
- skb_nfmark(nskb) = 0;
- skb_init_secmark(nskb);
-
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 18)
- skb_shinfo(nskb)->gso_size = 0;
- skb_shinfo(nskb)->gso_segs = 0;
- skb_shinfo(nskb)->gso_type = 0;
-#endif
-
- oldhdr = ip_hdr(oldskb);
- tcph = (struct tcphdr *)(skb_network_header(nskb) + ip_hdrlen(nskb));
-
- /* Swap source and dest */
- niph = ip_hdr(nskb);
- niph->daddr = xchg(&niph->saddr, niph->daddr);
- tmp = tcph->source;
- tcph->source = tcph->dest;
- tcph->dest = tmp;
-
- /* Calculate payload size?? */
- payload = nskb->len - ip_hdrlen(nskb) - sizeof(struct tcphdr);
-
- /* Truncate to length (no data) */
- tcph->doff = sizeof(struct tcphdr) / 4;
- skb_trim(nskb, ip_hdrlen(nskb) + sizeof(struct tcphdr));
- niph->tot_len = htons(nskb->len);
- tcph->urg_ptr = 0;
- /* Reset flags */
- ((u_int8_t *)tcph)[13] = 0;
+static void tarpit_generic(struct tcphdr *oth, struct tcphdr *tcph, uint16_t payload, unsigned int mode) {
if (mode == XTTARPIT_TARPIT) {
/* No replies for RST, FIN or !SYN,!ACK */
@@ -194,6 +131,74 @@ static void tarpit_tcp(struct sk_buff *oldskb, unsigned int hook,
tcph->seq = oth->ack_seq;
tcph->ack_seq = oth->seq;
}
+}
+
+static void tarpit_tcp(struct sk_buff *oldskb, unsigned int hook,
+ unsigned int mode)
+{
+ struct tcphdr _otcph, *oth, *tcph;
+ unsigned int addr_type = RTN_UNSPEC;
+ struct sk_buff *nskb;
+ const struct iphdr *oldhdr;
+ struct iphdr *niph;
+ uint16_t tmp, payload;
+
+ /* A truncated TCP header is not going to be useful */
+ if (oldskb->len < ip_hdrlen(oldskb) + sizeof(struct tcphdr))
+ return;
+
+ oth = skb_header_pointer(oldskb, ip_hdrlen(oldskb),
+ sizeof(_otcph), &_otcph);
+ if (oth == NULL)
+ return;
+
+ /* Check checksum. */
+ if (nf_ip_checksum(oldskb, hook, ip_hdrlen(oldskb), IPPROTO_TCP))
+ return;
+
+ /*
+ * Copy skb (even if skb is about to be dropped, we cannot just
+ * clone it because there may be other things, such as tcpdump,
+ * interested in it)
+ */
+ nskb = skb_copy_expand(oldskb, LL_MAX_HEADER,
+ skb_tailroom(oldskb), GFP_ATOMIC);
+ if (nskb == NULL)
+ return;
+
+ /* This packet will not be the same as the other: clear nf fields */
+ nf_reset(nskb);
+ skb_nfmark(nskb) = 0;
+ skb_init_secmark(nskb);
+
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 18)
+ skb_shinfo(nskb)->gso_size = 0;
+ skb_shinfo(nskb)->gso_segs = 0;
+ skb_shinfo(nskb)->gso_type = 0;
+#endif
+
+ oldhdr = ip_hdr(oldskb);
+ tcph = (struct tcphdr *)(skb_network_header(nskb) + ip_hdrlen(nskb));
+
+ /* Swap source and dest */
+ niph = ip_hdr(nskb);
+ niph->daddr = xchg(&niph->saddr, niph->daddr);
+ tmp = tcph->source;
+ tcph->source = tcph->dest;
+ tcph->dest = tmp;
+
+ /* Calculate payload size?? */
+ payload = nskb->len - ip_hdrlen(nskb) - sizeof(struct tcphdr);
+
+ /* Truncate to length (no data) */
+ tcph->doff = sizeof(struct tcphdr) / 4;
+ skb_trim(nskb, ip_hdrlen(nskb) + sizeof(struct tcphdr));
+ niph->tot_len = htons(nskb->len);
+ tcph->urg_ptr = 0;
+ /* Reset flags */
+ ((u_int8_t *)tcph)[13] = 0;
+
+ tarpit_generic(oth, tcph, payload, mode);
/* Adjust TCP checksum */
tcph->check = 0;
Moves TCP header manipulation into a separate function to allow code-sharing for IPv6 support. Signed-off-by: Josh Hunt <johunt@akamai.com> --- extensions/xt_TARPIT.c | 133 +++++++++++++++++++++++++----------------------- 1 files changed, 69 insertions(+), 64 deletions(-)