* [PATCH 1/3] ipt_REJECT fixes
@ 2003-04-22 10:52 Patrick McHardy
2003-04-22 23:05 ` Harald Welte
0 siblings, 1 reply; 2+ messages in thread
From: Patrick McHardy @ 2003-04-22 10:52 UTC (permalink / raw)
To: Harald Welte; +Cc: Netfilter Development Mailinglist
[-- Attachment #1: Type: text/plain, Size: 150 bytes --]
This patch fixes routing of tcp-rsts and a memory leak in ipt_REJECT.
it also removes an unnecessary declaration and RTO_CONN.
Best regards,
Patrick
[-- Attachment #2: 01-reject-fixes.diff --]
[-- Type: text/plain, Size: 1791 bytes --]
# This is a BitKeeper generated patch for the following project:
# Project Name: Linux kernel tree
# This patch format is intended for GNU patch command version 2.5 or higher.
# This patch includes the following deltas:
# ChangeSet 1.1101 -> 1.1102
# net/ipv4/netfilter/ipt_REJECT.c 1.10 -> 1.11
#
# The following is the BitKeeper ChangeSet Log
# --------------------------------------------
# 03/04/21 kaber@trash.net 1.1102
# - fix tcp-rst routing
# - fix memory leak
# - remove unecessary "struct in_device" declaration
# - remove RTO_CONN
# --------------------------------------------
#
diff -Nru a/net/ipv4/netfilter/ipt_REJECT.c b/net/ipv4/netfilter/ipt_REJECT.c
--- a/net/ipv4/netfilter/ipt_REJECT.c Mon Apr 21 21:26:34 2003
+++ b/net/ipv4/netfilter/ipt_REJECT.c Mon Apr 21 21:26:34 2003
@@ -11,7 +11,6 @@
#include <net/icmp.h>
#include <net/ip.h>
#include <net/tcp.h>
-struct in_device;
#include <net/route.h>
#include <linux/netfilter_ipv4/ip_tables.h>
#include <linux/netfilter_ipv4/ipt_REJECT.h>
@@ -65,10 +64,9 @@
return;
/* Routing: if not headed for us, route won't like source */
- if (ip_route_output(&rt, oldskb->nh.iph->daddr,
- local ? oldskb->nh.iph->saddr : 0,
- RT_TOS(oldskb->nh.iph->tos) | RTO_CONN,
- 0) != 0)
+ if (ip_route_output(&rt, oldskb->nh.iph->saddr,
+ local ? oldskb->nh.iph->daddr : 0,
+ RT_TOS(oldskb->nh.iph->tos), 0) != 0)
return;
hh_len = (rt->u.dst.dev->hard_header_len + 15)&~15;
@@ -80,8 +78,10 @@
hh_len of incoming interface < hh_len of outgoing interface */
nskb = skb_copy_expand(oldskb, hh_len, skb_tailroom(oldskb),
GFP_ATOMIC);
- if (!nskb)
+ if (!nskb) {
+ dst_release(&rt->u.dst);
return;
+ }
dst_release(nskb->dst);
nskb->dst = &rt->u.dst;
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2003-04-22 23:05 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-04-22 10:52 [PATCH 1/3] ipt_REJECT fixes Patrick McHardy
2003-04-22 23:05 ` Harald Welte
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.