manu
5ff6d3d572
Duplicate nested if statement in PIM code (from the OpenBSD tree)
2005-01-15 06:50:47 +00:00
drochner
aeae2d9c94
compile tcp_debug.c only if the TCP_DEBUG option is set,
...
and remove the "#ifdef TCP_DEBUG" around everything
2005-01-13 19:09:40 +00:00
heas
fe4b3cd078
In tcp_respond(), clear the m_pkthdr.csum_flags that was inherited from the
...
received packet so that the checksum is not performed twice. Also,
tcp_respond() does not fill-in the m_pkthdr.csum_data, so a h/w checksum may
have the wrong offset.
OK from Jason Thorpe.
2005-01-03 19:47:30 +00:00
yamt
ffebedd625
factor out receive side tcp/udp checksum handling code so that they
...
can be used by eg. packet filters.
reviewed by Christos Zoulas on tech-net@.
(slightly tweaked since then to make tcp and udp similar.)
2004-12-21 05:51:31 +00:00
christos
77e7bdb8aa
yamt's changes seem to fix all the checksumming issues. Turn the loopback
...
checksums back off so we can make sure that everything works.
2004-12-19 06:42:24 +00:00
yamt
ea04ddb694
udp6_input: correct loopback test.
2004-12-18 15:31:26 +00:00
yamt
6e353db6e4
tcp_input: add missing loopback checksum omission code for ipv6.
2004-12-18 07:30:17 +00:00
christos
60fb5c0ece
Turn checksumming on loopback back on until we fix the bugs in it.
...
Connect over tcp on the loopback is broken:
4729 amq 0.000007 CALL connect(4,0x804f2a0,0x1c)
4729 amq 75.007420 RET connect -1 errno 60 Connection timed out
2004-12-17 22:54:52 +00:00
thorpej
7994b6f95e
Don't perform checksums on loopback interfaces. They can be reenabled with
...
the net.inet.*.do_loopback_cksum sysctl.
Approved by: groo
2004-12-15 04:25:19 +00:00
yamt
e745dd4766
remove TCPOPT_MD5SIGNATURE because no one in our tree uses it
...
and it's duplicated with TCPOPT_SIGNATURE.
i preferred TCPOPT_SIGNATURE because it's used by FreeBSD and OpenBSD.
2004-12-07 14:24:04 +00:00
peter
396b87b8c2
Convert lo(4) to a clonable device.
...
This also removes the loif array and changes all code to use the new
lo0ifp pointer which points to the lo0 ifnet structure.
Approved by christos.
2004-12-04 16:10:25 +00:00
christos
1ad35fcc9a
PR/25749: Peter Postma: missing splx() in kernel.
2004-11-13 19:17:50 +00:00
thorpej
402ff2cf29
Slight simplification to IFA_STATS handling.
2004-10-06 05:42:24 +00:00
darrenr
0543239818
Add a comment to document what setting "srcrt" is really on about in ipintr()
2004-10-06 01:34:11 +00:00
yamt
2c46ccce37
move netinet/ip_lookup.h -> dist/ipf/netinet/ip_lookup.h.
2004-10-05 04:56:41 +00:00
yamt
8484dd9eed
move ipf headers and add a comment.
2004-10-05 04:55:48 +00:00
jdolecek
46134b3da6
move ip_htable.h from sys/netinet/ to sys/dist/ipf/netinet/, it's ipfilter file
2004-10-02 07:59:14 +00:00
christos
722688d056
These are ipfilter files, although they don't have the same copyright.
...
Thanks jaromir.
2004-10-02 07:51:11 +00:00
christos
5976437e5f
Move ipf to sys/dist/ipf; Note that I followed the pattern used for pf.
...
I think though that the files.ipfilter and Makefile glue should go to
the dist directory, not like it is done now.
2004-10-01 15:24:45 +00:00
christos
1b492809a0
PR/27082: Sean Boudreau: redundant assignment or NULL dereference in
...
in_pcbconnect()
2004-09-29 21:30:00 +00:00
christos
d790aa42d0
PR/27081: Sean Boudreau: ip_input() bad csum count not incremented on sw csum
2004-09-29 21:28:34 +00:00
christos
7059bc7962
PR/21902: Sean Boudreau: arplookup() incrementing arpstat.as_allocfail
...
erroneously.
2004-09-29 21:26:52 +00:00
yamt
0ea22c32fa
fix ipqent pool corruption problems. make tcp reass code use
...
its own pool of ipqent rather than sharing it with ip reass code.
PR/24782.
2004-09-15 09:21:22 +00:00
yamt
d676f9e5b0
fr_check_wrapper: as ipf modifies application data as well when
...
doing application proxy, it's needed to ensure that the whole packet
is writable here.
2004-09-06 10:46:02 +00:00
yamt
d73bcfeb33
fr_check_wrapper, fr_check_wrapper6:
...
ensure that mbufs are writable beforehand as ipf assumes.
PR/26773 and PR/26850.
2004-09-06 10:00:43 +00:00
darrenr
9ec77d6329
Do not allow packets flagged with "out-of-window" (oow) to match "keep state"
...
rules and try to prevent such rules ("keep state with oow") from being loaded
into the kernel.
Pr: kern/26581
2004-09-06 09:55:13 +00:00
manu
85111f912e
IPv4 PIM support, based on submission from Pavlin Radoslavov on tech-net@ :
...
two new files I forgot to add on the first cvs commit.
2004-09-04 23:32:29 +00:00
manu
6e3c639957
IPv4 PIM support, based on a submission from Pavlin Radoslavov posted on
...
tech-net@
2004-09-04 23:29:44 +00:00
darrenr
02c34673a3
add a per-socket counter for dropped UDP packets when the internal buffers
...
are full.
2004-09-03 18:14:09 +00:00
smb
57643d12c5
Don't try and add a state session if the packet has already been checked
...
and marked as out of window - trying to do the add will result in a failure
and the packet being blocked, incorrectly.
Committed By: darrenr
Tested By: smb
2004-09-03 04:18:09 +00:00
chs
34187f4589
fix m_pulldown() usage, it's different from m_pullup().
...
fixes PRs 26666 and 26701.
2004-08-22 21:38:21 +00:00
itojun
682ddb0274
initialize max_keylen for ip_encap.c earlier
2004-08-17 07:05:34 +00:00
yamt
28b17ac69e
in_control: fix address leaks on error, which causes a panic
...
("no domain for AF 0") on if_detach.
- SIOCAIFADDR, SIOCSIFADDR: free an address on error.
- SIOCSIFNETMASK, SIOCSIFDSTADDR: reject operations for an interface which
has no AF_INET addresses.
partly from OpenBSD and FreeBSD.
reviewed by Christos Zoulas on tech-net@.
2004-08-08 09:52:41 +00:00
christos
f3a2c3728b
remove the avail = 0; assignment which is superfluous. pointed out by enami.
2004-08-04 03:55:06 +00:00
christos
5ab21dfa5d
PR/26471: Arto Selonen: ipfilter 4.1.3 crashes the system every few hours
...
Remove extraneous m = NULL assignment that will cause a NULL dereference
later.
2004-08-03 16:16:30 +00:00
cube
19861ea4fe
Remove a common (icmpstat).
2004-08-03 13:58:59 +00:00
yamt
48d156e320
call PFIL_NEWIF hooks at a correct place.
...
(on SIOCAIFADDR rather than SIOCGIFALIAS.)
from Peter Postma, PR/26402.
ok'ed by itojun.
2004-07-26 13:43:14 +00:00
martti
7ff15b917f
Upgraded IPFilter to 4.1.3
2004-07-23 05:39:03 +00:00
martti
9e82a8bf0d
Import IPFilter 4.1.3
2004-07-23 05:33:55 +00:00
yamt
4374881880
fix typos. PFIL_HOOK -> PFIL_HOOKS
2004-07-18 11:37:38 +00:00
itojun
5807e550e5
typo. Bruno Rohee
2004-07-09 09:15:02 +00:00
christos
d397fc692a
Bring in flags from 4.1.2 to make things compile.
2004-07-08 02:52:02 +00:00
mycroft
cc559c8583
Fix SIOCSIFNETMASK -- it needs to use in_ifscrub() and in_ifinit() to update
...
the interface route and various internal state. Also, it should use an ifreq,
not an if_aliasreq. Addresses PR 9604. (Nothing in our source tree uses
SIOCSIFNETMASK, though. Perhaps it should be deprecated.)
2004-07-07 01:39:00 +00:00
minoura
c3ed038115
Remove broken code for now: getsockopt(s, IPPROTO_IP, IP_IPSEC_POLICY,...).
...
It returned EINVAL, now returns ENOPROTOOPT.
Ok'd by itojun.
2004-07-06 04:30:27 +00:00
heas
192b371d42
Adjust description for net.inet.udp.checksum; it does not controll checking,
...
only computing.
2004-07-02 18:19:51 +00:00
christos
01a2047486
PR/25999: Jeff Rizzo: ipf: ipnat is corrupting "bimap" translations in 2.0_BETA and -current
2004-06-29 22:44:59 +00:00
itojun
2aef0b1784
correct TCP-MD5 support. Jeff Rizzo
2004-06-26 03:29:15 +00:00
itojun
db45a6f189
icmp_reflect: check if m_pkthdr.rcvif is non-NULL before touching it.
...
icmp_reflect could be called from the output path, so m_pkthdr.rcvif may not
be set. (found by panic when PF is configured "block return all")
2004-06-25 15:43:00 +00:00
itojun
59302fc979
be careful touching m_pkthdr.rcvif, it could be NULL if the packet was
...
generated from local node and icmp_error calls icmp_reflect.
2004-06-25 15:24:41 +00:00
itojun
047170b1cc
prepare PF-related hooks. reviewed by matt, perry, christos
2004-06-22 12:50:41 +00:00