summaryrefslogtreecommitdiff
path: root/sys/net/pfvar.h
diff options
context:
space:
mode:
authorHenning Brauer <henning@cvs.openbsd.org>2013-06-26 09:12:41 +0000
committerHenning Brauer <henning@cvs.openbsd.org>2013-06-26 09:12:41 +0000
commit2092a5a508fea02619356ab86e8fac0b9d17f62c (patch)
treef80658ce533adb3cde6fbcae84d133ac88ef775e /sys/net/pfvar.h
parentfeaa5c3eb6db1089559e6ecef2894b368b933037 (diff)
put the cksum diff back, of course with the bug fixed where we could
under some circumstances repair broken checksums on the way. ok ryan naddy mikeb . redo most of the protocol (tcp/udp/...) checksum handling -assume we have hardware checksum offloading. stop mucking with the checksum in most of the stack -stop checksum mucking in pf, just set a "needs checksumming" flag if needed -in all output pathes, very late, if we figure out the outbound interface doesn't have hw cksum offloading, do the cksum in software. this especially makes the bridge path behave like a regular output path -little special casing for bridge still required until the broadcast path loses its disgusting shortcut hacks, but at least it's in one place now and not all over the stack in6_proto_cksum_out mostly written by krw@ started at k2k11 in iceland more than 1.5 years ago - yes it took that long, this stuff is everything but easy. this happens to fix the infamous pf rdr bug that made us turn off proto cksum offloading on almost all interface drivers.
Diffstat (limited to 'sys/net/pfvar.h')
-rw-r--r--sys/net/pfvar.h17
1 files changed, 12 insertions, 5 deletions
diff --git a/sys/net/pfvar.h b/sys/net/pfvar.h
index c84634b1001..3d73bf591d7 100644
--- a/sys/net/pfvar.h
+++ b/sys/net/pfvar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pfvar.h,v 1.383 2013/06/04 19:03:12 henning Exp $ */
+/* $OpenBSD: pfvar.h,v 1.384 2013/06/26 09:12:39 henning Exp $ */
/*
* Copyright (c) 2001 Daniel Hartmeier
@@ -1274,8 +1274,13 @@ struct pf_pdesc {
u_int8_t didx; /* key index for destination */
u_int8_t destchg; /* flag set when destination changed */
u_int8_t pflog; /* flags for packet logging */
+ u_int8_t csum_status; /* proto cksum ok/bad/unchecked */
+#define PF_CSUM_UNKNOWN 0
+#define PF_CSUM_BAD 1
+#define PF_CSUM_OK 2
};
+
/* flags for RDR options */
#define PF_DPORT_RANGE 0x01 /* Dest port uses range */
#define PF_RPORT_RANGE 0x02 /* RDR'ed port uses range */
@@ -1772,8 +1777,6 @@ extern void pf_state_export(struct pfsync_state *,
struct pf_state *);
extern void pf_print_state(struct pf_state *);
extern void pf_print_flags(u_int8_t);
-extern u_int16_t pf_cksum_fixup(u_int16_t, u_int16_t, u_int16_t,
- u_int8_t);
extern struct ifnet *sync_ifp;
extern struct pf_rule pf_default_rule;
@@ -1797,7 +1800,9 @@ void pf_addr_inc(struct pf_addr *, sa_family_t);
void *pf_pull_hdr(struct mbuf *, int, void *, int, u_short *, u_short *,
sa_family_t);
-void pf_change_a(void *, u_int16_t *, u_int32_t, u_int8_t);
+void pf_change_a(struct pf_pdesc *, void *, u_int32_t);
+int pf_check_proto_cksum(struct pf_pdesc *, int, int, u_int8_t,
+ sa_family_t);
int pflog_packet(struct pf_pdesc *, u_int8_t, struct pf_rule *,
struct pf_rule *, struct pf_ruleset *);
void pf_send_deferred_syn(struct pf_state *);
@@ -1834,7 +1839,7 @@ struct pf_state_key *pf_alloc_state_key(int);
void pf_pkt_addr_changed(struct mbuf *);
int pf_state_key_attach(struct pf_state_key *, struct pf_state *, int);
int pf_translate(struct pf_pdesc *, struct pf_addr *, u_int16_t,
- struct pf_addr *, u_int16_t, u_int16_t, int);
+ struct pf_addr *, u_int16_t, u_int16_t, int, struct mbuf *);
int pf_translate_af(struct pf_pdesc *);
void pf_route(struct mbuf **, struct pf_rule *, int,
struct ifnet *, struct pf_state *);
@@ -1981,6 +1986,8 @@ int pf_map_addr(sa_family_t, struct pf_rule *,
int pf_postprocess_addr(struct pf_state *);
+void pf_cksum(struct pf_pdesc *, struct mbuf *);
+
#endif /* _KERNEL */