summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorAlexander Bluhm <bluhm@cvs.openbsd.org>2011-09-17 16:01:56 +0000
committerAlexander Bluhm <bluhm@cvs.openbsd.org>2011-09-17 16:01:56 +0000
commitdfa32f9b21965c62a7f2804e94b059ea661997dc (patch)
tree820ce4394932ac4e66bfde600569cff9e3fee91e /sys
parent22e725eda5ca4436c36a53fbca3ea39031870e6a (diff)
The pd->ip_sum and pd->proto_sum fields are not needed. Replace
the one occurrence in pf_test_state_icmp() that uses pd2.ip_sum by a local variable. Remove ip_sum and proto_sum from struct pf_pdesc. ok claudio henning
Diffstat (limited to 'sys')
-rw-r--r--sys/net/pf.c31
-rw-r--r--sys/net/pfvar.h5
2 files changed, 15 insertions, 21 deletions
diff --git a/sys/net/pf.c b/sys/net/pf.c
index af1fa62b8f4..bd2dc0ec8b5 100644
--- a/sys/net/pf.c
+++ b/sys/net/pf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pf.c,v 1.773 2011/09/17 11:34:49 henning Exp $ */
+/* $OpenBSD: pf.c,v 1.774 2011/09/17 16:01:55 bluhm Exp $ */
/*
* Copyright (c) 2001 Daniel Hartmeier
@@ -4242,6 +4242,7 @@ pf_test_state_icmp(struct pf_state **state, int direction, struct pfi_kif *kif,
int fragoff2, extoff2;
u_int32_t jumbolen;
#endif /* INET6 */
+ u_int16_t *ipsum2;
int ipoff2;
int off2;
@@ -4277,7 +4278,7 @@ pf_test_state_icmp(struct pf_state **state, int direction, struct pfi_kif *kif,
pd2.proto = h2.ip_p;
pd2.src = (struct pf_addr *)&h2.ip_src;
pd2.dst = (struct pf_addr *)&h2.ip_dst;
- pd2.ip_sum = &h2.ip_sum;
+ ipsum2 = &h2.ip_sum;
break;
#endif /* INET */
#ifdef INET6
@@ -4299,7 +4300,7 @@ pf_test_state_icmp(struct pf_state **state, int direction, struct pfi_kif *kif,
pd2.src = (struct pf_addr *)&h2_6.ip6_src;
pd2.dst = (struct pf_addr *)&h2_6.ip6_dst;
- pd2.ip_sum = NULL;
+ ipsum2 = NULL;
break;
#endif /* INET6 */
}
@@ -4397,7 +4398,7 @@ pf_test_state_icmp(struct pf_state **state, int direction, struct pfi_kif *kif,
pf_change_icmp(pd2.src, &th.th_sport,
daddr, &nk->addr[pd2.sidx],
nk->port[pd2.sidx], NULL,
- pd2.ip_sum, icmpsum, 0, pd2.af);
+ ipsum2, icmpsum, 0, pd2.af);
if (PF_ANEQ(pd2.dst, &nk->addr[pd2.didx],
pd2.af) || pd2.rdomain != nk->rdomain)
@@ -4410,7 +4411,7 @@ pf_test_state_icmp(struct pf_state **state, int direction, struct pfi_kif *kif,
pf_change_icmp(pd2.dst, &th.th_dport,
saddr, &nk->addr[pd2.didx],
nk->port[pd2.didx], NULL,
- pd2.ip_sum, icmpsum, 0, pd2.af);
+ ipsum2, icmpsum, 0, pd2.af);
copyback = 1;
}
@@ -4472,7 +4473,7 @@ pf_test_state_icmp(struct pf_state **state, int direction, struct pfi_kif *kif,
pf_change_icmp(pd2.src, &uh.uh_sport,
daddr, &nk->addr[pd2.sidx],
nk->port[pd2.sidx], &uh.uh_sum,
- pd2.ip_sum, icmpsum, 1, pd2.af);
+ ipsum2, icmpsum, 1, pd2.af);
if (PF_ANEQ(pd2.dst, &nk->addr[pd2.didx],
pd2.af) || pd2.rdomain != nk->rdomain)
@@ -4485,7 +4486,7 @@ pf_test_state_icmp(struct pf_state **state, int direction, struct pfi_kif *kif,
pf_change_icmp(pd2.dst, &uh.uh_dport,
saddr, &nk->addr[pd2.didx],
nk->port[pd2.didx], &uh.uh_sum,
- pd2.ip_sum, icmpsum, 1, pd2.af);
+ ipsum2, icmpsum, 1, pd2.af);
switch (pd2.af) {
#ifdef INET
@@ -4553,7 +4554,7 @@ pf_test_state_icmp(struct pf_state **state, int direction, struct pfi_kif *kif,
daddr, &nk->addr[pd2.sidx],
(virtual_type == htons(ICMP_ECHO)) ?
nk->port[iidx] : 0, NULL,
- pd2.ip_sum, icmpsum, 0, AF_INET);
+ ipsum2, icmpsum, 0, AF_INET);
if (PF_ANEQ(pd2.dst, &nk->addr[pd2.didx],
pd2.af) || pd2.rdomain != nk->rdomain)
@@ -4564,7 +4565,7 @@ pf_test_state_icmp(struct pf_state **state, int direction, struct pfi_kif *kif,
&nk->addr[pd2.didx], pd2.af))
pf_change_icmp(pd2.dst, NULL, saddr,
&nk->addr[pd2.didx], 0, NULL,
- pd2.ip_sum, icmpsum, 0, AF_INET);
+ ipsum2, icmpsum, 0, AF_INET);
m_copyback(m, off, ICMP_MINLEN, pd->hdr.icmp,
M_NOWAIT);
@@ -4631,7 +4632,7 @@ pf_test_state_icmp(struct pf_state **state, int direction, struct pfi_kif *kif,
(virtual_type ==
htons(ICMP6_ECHO_REQUEST))
? nk->port[iidx] : 0, NULL,
- pd2.ip_sum, icmpsum, 0, AF_INET6);
+ ipsum2, icmpsum, 0, AF_INET6);
if (PF_ANEQ(pd2.dst, &nk->addr[pd2.didx],
pd2.af) || pd2.rdomain != nk->rdomain)
@@ -4642,7 +4643,7 @@ pf_test_state_icmp(struct pf_state **state, int direction, struct pfi_kif *kif,
&nk->addr[pd2.didx], pd2.af))
pf_change_icmp(pd2.dst, NULL, saddr,
&nk->addr[pd2.didx], 0, NULL,
- pd2.ip_sum, icmpsum, 0, AF_INET6);
+ ipsum2, icmpsum, 0, AF_INET6);
m_copyback(m, off, sizeof(struct icmp6_hdr),
pd->hdr.icmp6, M_NOWAIT);
@@ -4675,7 +4676,7 @@ pf_test_state_icmp(struct pf_state **state, int direction, struct pfi_kif *kif,
&nk->addr[pd2.sidx], pd2.af))
pf_change_icmp(pd2.src, NULL, daddr,
&nk->addr[pd2.sidx], 0, NULL,
- pd2.ip_sum, icmpsum, 0, pd2.af);
+ ipsum2, icmpsum, 0, pd2.af);
if (PF_ANEQ(pd2.dst, &nk->addr[pd2.didx],
pd2.af) || pd2.rdomain != nk->rdomain)
@@ -4686,7 +4687,7 @@ pf_test_state_icmp(struct pf_state **state, int direction, struct pfi_kif *kif,
&nk->addr[pd2.didx], pd2.af))
pf_change_icmp(pd2.dst, NULL, saddr,
&nk->addr[pd2.didx], 0, NULL,
- pd2.ip_sum, icmpsum, 0, pd2.af);
+ ipsum2, icmpsum, 0, pd2.af);
switch (pd2.af) {
#ifdef INET
@@ -5640,8 +5641,6 @@ pf_setup_pdesc(sa_family_t af, int dir, struct pf_pdesc *pd, struct mbuf **m0,
pd->src = (struct pf_addr *)&h->ip_src;
pd->dst = (struct pf_addr *)&h->ip_dst;
pd->sport = pd->dport = NULL;
- pd->ip_sum = &h->ip_sum;
- pd->proto_sum = NULL;
pd->virtual_proto = pd->proto = h->ip_p;
pd->dir = dir;
pd->sidx = (dir == PF_IN) ? 0 : 1;
@@ -5728,8 +5727,6 @@ pf_setup_pdesc(sa_family_t af, int dir, struct pf_pdesc *pd, struct mbuf **m0,
pd->src = (struct pf_addr *)&h->ip6_src;
pd->dst = (struct pf_addr *)&h->ip6_dst;
pd->sport = pd->dport = NULL;
- pd->ip_sum = NULL;
- pd->proto_sum = NULL;
pd->dir = dir;
pd->sidx = (dir == PF_IN) ? 0 : 1;
pd->didx = (dir == PF_IN) ? 1 : 0;
diff --git a/sys/net/pfvar.h b/sys/net/pfvar.h
index 7959582e4b3..e76dc304e5d 100644
--- a/sys/net/pfvar.h
+++ b/sys/net/pfvar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pfvar.h,v 1.344 2011/08/30 00:40:47 mikeb Exp $ */
+/* $OpenBSD: pfvar.h,v 1.345 2011/09/17 16:01:55 bluhm Exp $ */
/*
* Copyright (c) 2001 Daniel Hartmeier
@@ -1248,9 +1248,6 @@ struct pf_pdesc {
u_int32_t p_len; /* total length of payload */
u_int32_t badopts; /* v4 options or v6 routing headers */
- u_int16_t *ip_sum;
- u_int16_t *proto_sum;
-
u_int16_t rdomain; /* original routing domain */
u_int16_t virtual_proto;
#define PF_VPROTO_FRAGMENT 256