summaryrefslogtreecommitdiffstats
path: root/sys/netinet/ip_output.c
diff options
context:
space:
mode:
authorandre <andre@FreeBSD.org>2004-01-08 11:13:40 +0000
committerandre <andre@FreeBSD.org>2004-01-08 11:13:40 +0000
commite694e9332ef1442bbd5603d06948d61dd88dedd0 (patch)
tree5db0b4bbee7cbdd34546c3445204cd27dcd9bb6c /sys/netinet/ip_output.c
parentde79d89d3757a7a271a891ba7f2281794dbd5e9e (diff)
downloadFreeBSD-src-e694e9332ef1442bbd5603d06948d61dd88dedd0.zip
FreeBSD-src-e694e9332ef1442bbd5603d06948d61dd88dedd0.tar.gz
Do not set the ip_id to zero when DF is set on packet and
restore the general pre-randomid behaviour. Setting the ip_id to zero causes several problems with packet reassembly when a device along the path removes the DF bit for some reason. Other BSD and Linux have found and fixed the same issues. PR: kern/60889 Tested by: Richard Wendland <richard@wendland.org.uk> Approved by: re (scottl)
Diffstat (limited to 'sys/netinet/ip_output.c')
-rw-r--r--sys/netinet/ip_output.c18
1 files changed, 6 insertions, 12 deletions
diff --git a/sys/netinet/ip_output.c b/sys/netinet/ip_output.c
index 0a11524..733df47 100644
--- a/sys/netinet/ip_output.c
+++ b/sys/netinet/ip_output.c
@@ -229,10 +229,10 @@ ip_output(struct mbuf *m0, struct mbuf *opt, struct route *ro,
/*
* Fill in IP header. If we are not allowing fragmentation,
- * then the ip_id field is meaningless, so send it as zero
- * to reduce information leakage. Otherwise, if we are not
- * randomizing ip_id, then don't bother to convert it to network
- * byte order -- it's just a nonce. Note that a 16-bit counter
+ * then the ip_id field is meaningless, but we don't set it
+ * to zero. Doing so causes various problems when devices along
+ * the path (routers, load balancers, firewalls, etc.) illegally
+ * disable DF on our packet. Note that a 16-bit counter
* will wrap around in less than 10 seconds at 100 Mbit/s on a
* medium with MTU 1500. See Steven M. Bellovin, "A Technique
* for Counting NATted Hosts", Proc. IMW'02, available at
@@ -241,17 +241,11 @@ ip_output(struct mbuf *m0, struct mbuf *opt, struct route *ro,
if ((flags & (IP_FORWARDING|IP_RAWOUTPUT)) == 0) {
ip->ip_v = IPVERSION;
ip->ip_hl = hlen >> 2;
- if ((ip->ip_off & IP_DF) == 0) {
- ip->ip_off = 0;
#ifdef RANDOM_IP_ID
- ip->ip_id = ip_randomid();
+ ip->ip_id = ip_randomid();
#else
- ip->ip_id = ip_id++;
+ ip->ip_id = htons(ip_id++);
#endif
- } else {
- ip->ip_off = IP_DF;
- ip->ip_id = 0;
- }
ipstat.ips_localout++;
} else {
hlen = ip->ip_hl << 2;
OpenPOWER on IntegriCloud