diff options
author | Klemens Nanni <kn@cvs.openbsd.org> | 2023-01-06 14:35:35 +0000 |
---|---|---|
committer | Klemens Nanni <kn@cvs.openbsd.org> | 2023-01-06 14:35:35 +0000 |
commit | cbce7c7773a1591256cb87ea4622d016a668e17c (patch) | |
tree | 3d7b206f94e95328ba86c07c3823f3d458afb59e /sys/netinet6/nd6.c | |
parent | c2d96a1e6dbe715433e6bedffbdd572e5a4cf2d4 (diff) |
Clean up struct nd_opts, use nd6_options() function local variables
nd_opts_search is really the next option, so call it next_opt.
nd_opts_done == 1 means next_opt == NULL, i.e. no more option to handle,
so zap the former and use the latter to stop.
Finally drop the useless struct members, all under _KERNEL.
OK claudio
Diffstat (limited to 'sys/netinet6/nd6.c')
-rw-r--r-- | sys/netinet6/nd6.c | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/sys/netinet6/nd6.c b/sys/netinet6/nd6.c index b0339a02aca..4a52ae1561e 100644 --- a/sys/netinet6/nd6.c +++ b/sys/netinet6/nd6.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nd6.c,v 1.263 2023/01/06 14:32:55 kn Exp $ */ +/* $OpenBSD: nd6.c,v 1.264 2023/01/06 14:35:34 kn Exp $ */ /* $KAME: nd6.c,v 1.280 2002/06/08 19:52:07 itojun Exp $ */ /* @@ -145,7 +145,7 @@ nd6_ifdetach(struct ifnet *ifp) int nd6_options(void *opt, int icmp6len, struct nd_opts *ndopts) { - struct nd_opt_hdr *nd_opt = opt; + struct nd_opt_hdr *nd_opt = opt, *next_opt, *last_opt; int i = 0; bzero(ndopts, sizeof(*ndopts)); @@ -153,20 +153,19 @@ nd6_options(void *opt, int icmp6len, struct nd_opts *ndopts) if (icmp6len == 0) return 0; - ndopts->nd_opts_search = nd_opt; - ndopts->nd_opts_last = - (struct nd_opt_hdr *)(((u_char *)nd_opt) + icmp6len); + next_opt = nd_opt; + last_opt = (struct nd_opt_hdr *)((u_char *)nd_opt + icmp6len); while (1) { int olen; - if (ndopts->nd_opts_search == NULL || ndopts->nd_opts_done) + if (next_opt == NULL) goto skip1; - nd_opt = ndopts->nd_opts_search; + nd_opt = next_opt; /* make sure nd_opt_len is inside the buffer */ - if ((caddr_t)&nd_opt->nd_opt_len >= (caddr_t)ndopts->nd_opts_last) + if ((caddr_t)&nd_opt->nd_opt_len >= (caddr_t)last_opt) goto invalid; /* every option must have a length greater than zero */ @@ -174,14 +173,13 @@ nd6_options(void *opt, int icmp6len, struct nd_opts *ndopts) if (olen == 0) goto invalid; - ndopts->nd_opts_search = (struct nd_opt_hdr *)((caddr_t)nd_opt + olen); - if (ndopts->nd_opts_search > ndopts->nd_opts_last) { + next_opt = (struct nd_opt_hdr *)((caddr_t)nd_opt + olen); + if (next_opt > last_opt) { /* option overruns the end of buffer */ goto invalid; - } else if (ndopts->nd_opts_search == ndopts->nd_opts_last) { + } else if (next_opt == last_opt) { /* reached the end of options chain */ - ndopts->nd_opts_done = 1; - ndopts->nd_opts_search = NULL; + next_opt = NULL; } switch (nd_opt->nd_opt_type) { @@ -225,7 +223,7 @@ skip1: break; } - if (ndopts->nd_opts_done) + if (next_opt == NULL) break; } |