diff --git a/usr.sbin/rtadvd/config.c b/usr.sbin/rtadvd/config.c index b7f4fc8f15b0..bc16510e0894 100644 --- a/usr.sbin/rtadvd/config.c +++ b/usr.sbin/rtadvd/config.c @@ -1,10 +1,10 @@ -/* $NetBSD: config.c,v 1.37 2017/11/06 15:15:04 christos Exp $ */ +/* $NetBSD: config.c,v 1.38 2018/04/20 10:39:37 roy Exp $ */ /* $KAME: config.c,v 1.93 2005/10/17 14:40:02 suz Exp $ */ /* * Copyright (C) 1998 WIDE Project. * All rights reserved. - * + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -16,7 +16,7 @@ * 3. Neither the name of the project nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. - * + * * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE @@ -97,7 +97,7 @@ encode_domain(char *dst, const char *src) src = p + 1; } *dst++ = '\0'; - + return dst - odst; } @@ -697,7 +697,7 @@ getconfig(const char *intface, int exithard) val64 > tmp->maxinterval * 2) { logit(LOG_ERR, "<%s> %s (%lld) on %s is invalid", - __func__, entbuf, (long long)val64, intface); + __func__, entbuf, (long long)val64, intface); goto errexit; } rdnss->lifetime = (uint32_t)val64; @@ -733,7 +733,7 @@ getconfig(const char *intface, int exithard) val64 > tmp->maxinterval * 2) { logit(LOG_ERR, "<%s> %s (%lld) on %s is invalid", - __func__, entbuf, (long long)val64, intface); + __func__, entbuf, (long long)val64, intface); goto errexit; } dnssl->lifetime = (uint32_t)val64; @@ -1123,8 +1123,8 @@ make_packet(struct rainfo *rainfo) packlen += sizeof(struct nd_opt_prefix_info) * rainfo->pfxs; if (rainfo->linkmtu) packlen += sizeof(struct nd_opt_mtu); - TAILQ_FOREACH(rti, &rainfo->route, next) - packlen += sizeof(struct nd_opt_route_info) + + TAILQ_FOREACH(rti, &rainfo->route, next) + packlen += sizeof(struct nd_opt_route_info) + ((rti->prefixlen + 0x3f) >> 6) * 8; TAILQ_FOREACH(rdns, &rainfo->rdnss, next) { @@ -1200,7 +1200,7 @@ make_packet(struct rainfo *rainfo) buf += sizeof(struct nd_opt_mtu); } - TAILQ_FOREACH(pfx, &rainfo->prefix, next) { + TAILQ_FOREACH(pfx, &rainfo->prefix, next) { uint32_t vltime, pltime; struct timespec now; @@ -1273,7 +1273,7 @@ make_packet(struct rainfo *rainfo) ndopt_rdnss->nd_opt_rdnss_reserved = 0; ndopt_rdnss->nd_opt_rdnss_lifetime = htonl(rdns->lifetime); buf += sizeof(*ndopt_rdnss); - + TAILQ_FOREACH(rdnsa, &rdns->list, next) { CHECKLEN(sizeof(rdnsa->addr)); memcpy(buf, &rdnsa->addr, sizeof(rdnsa->addr)); @@ -1290,7 +1290,7 @@ make_packet(struct rainfo *rainfo) ndopt_dnssl->nd_opt_dnssl_reserved = 0; ndopt_dnssl->nd_opt_dnssl_lifetime = htonl(dnsl->lifetime); buf += sizeof(*ndopt_dnssl); - + TAILQ_FOREACH(dnsd, &dnsl->list, next) { CHECKLEN(dnsd->len); memcpy(buf, dnsd->domain, dnsd->len); diff --git a/usr.sbin/rtadvd/config.h b/usr.sbin/rtadvd/config.h index 08153d773322..9c534d44b98d 100644 --- a/usr.sbin/rtadvd/config.h +++ b/usr.sbin/rtadvd/config.h @@ -1,10 +1,10 @@ -/* $NetBSD: config.h,v 1.9 2012/12/13 15:36:36 roy Exp $ */ +/* $NetBSD: config.h,v 1.10 2018/04/20 10:39:37 roy Exp $ */ /* $KAME: config.h,v 1.9 2003/08/06 04:19:40 ono Exp $ */ /* * Copyright (C) 1995, 1996, 1997, 1998, and 1999 WIDE Project. * All rights reserved. - * + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -16,7 +16,7 @@ * 3. Neither the name of the project nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. - * + * * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE diff --git a/usr.sbin/rtadvd/dump.c b/usr.sbin/rtadvd/dump.c index 1680daa5cb43..16fee1d6ac17 100644 --- a/usr.sbin/rtadvd/dump.c +++ b/usr.sbin/rtadvd/dump.c @@ -1,10 +1,10 @@ -/* $NetBSD: dump.c,v 1.15 2017/11/06 15:15:04 christos Exp $ */ +/* $NetBSD: dump.c,v 1.16 2018/04/20 10:39:37 roy Exp $ */ /* $KAME: dump.c,v 1.34 2004/06/14 05:35:59 itojun Exp $ */ /* * Copyright (C) 2000 WIDE Project. * All rights reserved. - * + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -16,7 +16,7 @@ * 3. Neither the name of the project nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. - * + * * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE @@ -255,7 +255,7 @@ if_dump(void) { if (p != dnsd->domain) fputc('.', fp); - while(len-- != 0) + while(len-- != 0) fputc(*p++, fp); } fputc('\n', fp); diff --git a/usr.sbin/rtadvd/dump.h b/usr.sbin/rtadvd/dump.h index ba518bbf2535..10c987f7cb8a 100644 --- a/usr.sbin/rtadvd/dump.h +++ b/usr.sbin/rtadvd/dump.h @@ -1,10 +1,10 @@ -/* $NetBSD: dump.h,v 1.2 2011/12/10 19:14:29 roy Exp $ */ +/* $NetBSD: dump.h,v 1.3 2018/04/20 10:39:37 roy Exp $ */ /* $KAME: dump.h,v 1.1 2000/05/23 11:31:26 itojun Exp $ */ /* * Copyright (C) 1998 WIDE Project. * All rights reserved. - * + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -16,7 +16,7 @@ * 3. Neither the name of the project nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. - * + * * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE diff --git a/usr.sbin/rtadvd/if.c b/usr.sbin/rtadvd/if.c index 0303e1c770d8..616b0ddc8ebe 100644 --- a/usr.sbin/rtadvd/if.c +++ b/usr.sbin/rtadvd/if.c @@ -1,10 +1,10 @@ -/* $NetBSD: if.c,v 1.25 2017/11/06 15:15:04 christos Exp $ */ +/* $NetBSD: if.c,v 1.26 2018/04/20 10:39:37 roy Exp $ */ /* $KAME: if.c,v 1.36 2004/11/30 22:32:01 suz Exp $ */ /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. * All rights reserved. - * + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -16,7 +16,7 @@ * 3. Neither the name of the project nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. - * + * * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE @@ -68,7 +68,7 @@ static void get_rtaddrs(int addrs, struct sockaddr *sa, struct sockaddr **rti_info) { int i; - + for (i = 0; i < RTAX_MAX; i++) { if (addrs & (1 << i)) { rti_info[i] = sa; @@ -352,7 +352,7 @@ get_prefixlen(char *buf) struct rt_msghdr *rtm = (struct rt_msghdr *)buf; struct sockaddr *sa, *rti_info[RTAX_MAX]; unsigned char *p, *lim; - + sa = (struct sockaddr *)(rtm + 1); get_rtaddrs(rtm->rtm_addrs, sa, rti_info); sa = rti_info[RTAX_NETMASK]; diff --git a/usr.sbin/rtadvd/if.h b/usr.sbin/rtadvd/if.h index 7eeb7dc518df..2b4c0a69ca2f 100644 --- a/usr.sbin/rtadvd/if.h +++ b/usr.sbin/rtadvd/if.h @@ -1,10 +1,10 @@ -/* $NetBSD: if.h,v 1.10 2012/12/13 15:36:36 roy Exp $ */ +/* $NetBSD: if.h,v 1.11 2018/04/20 10:39:37 roy Exp $ */ /* $KAME: if.h,v 1.12 2003/09/21 07:17:03 itojun Exp $ */ /* * Copyright (C) 1995, 1996, 1997, 1998, and 1999 WIDE Project. * All rights reserved. - * + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -16,7 +16,7 @@ * 3. Neither the name of the project nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. - * + * * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE diff --git a/usr.sbin/rtadvd/rrenum.h b/usr.sbin/rtadvd/rrenum.h index 482445c575c5..e9b4f59f00eb 100644 --- a/usr.sbin/rtadvd/rrenum.h +++ b/usr.sbin/rtadvd/rrenum.h @@ -1,10 +1,10 @@ -/* $NetBSD: rrenum.h,v 1.5 2011/12/10 19:14:29 roy Exp $ */ +/* $NetBSD: rrenum.h,v 1.6 2018/04/20 10:39:37 roy Exp $ */ /* $KAME: rrenum.h,v 1.3 2001/01/21 15:37:14 itojun Exp $ */ /* * Copyright (C) 1998 WIDE Project. * All rights reserved. - * + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -16,7 +16,7 @@ * 3. Neither the name of the project nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. - * + * * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE diff --git a/usr.sbin/rtadvd/rtadvd.c b/usr.sbin/rtadvd/rtadvd.c index 6268f83a6386..b323414c125b 100644 --- a/usr.sbin/rtadvd/rtadvd.c +++ b/usr.sbin/rtadvd/rtadvd.c @@ -1,10 +1,10 @@ -/* $NetBSD: rtadvd.c,v 1.60 2018/04/20 10:26:34 roy Exp $ */ +/* $NetBSD: rtadvd.c,v 1.61 2018/04/20 10:39:37 roy Exp $ */ /* $KAME: rtadvd.c,v 1.92 2005/10/17 14:40:02 suz Exp $ */ /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. * All rights reserved. - * + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -16,7 +16,7 @@ * 3. Neither the name of the project nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. - * + * * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE @@ -523,7 +523,7 @@ rtmsg_input(void) ifindex = get_ifan_ifindex(next); if (get_ifan_what(next) == IFAN_ARRIVAL) { logit(LOG_DEBUG, - "%s: interface %s arrived", + "%s: interface %s arrived", __func__, if_indextoname(ifindex, ifname)); if (if_argc == 0) { @@ -657,7 +657,7 @@ rtmsg_input(void) case RTM_IFANNOUNCE: if (get_ifan_what(next) == IFAN_DEPARTURE) { logit(LOG_DEBUG, - "%s: interface %s departed", + "%s: interface %s departed", __func__, rai->ifname); TAILQ_REMOVE(&ralist, rai, next); if (rai->leaving) @@ -718,7 +718,7 @@ rtadvd_input(void) int *hlimp = NULL; #ifdef OLDRAWSOCKET struct ip6_hdr *ip; -#endif +#endif struct icmp6_hdr *icp; int ifindex = 0; struct cmsghdr *cm; @@ -1099,7 +1099,7 @@ ra_input(int len, struct nd_router_advert *ra, goto done; } rai->rainput++; /* increment statistics */ - + /* Cur Hop Limit value */ if (ra->nd_ra_curhoplimit && rai->hoplimit && ra->nd_ra_curhoplimit != rai->hoplimit) { @@ -1198,7 +1198,7 @@ ra_input(int len, struct nd_router_advert *ra, if (inconsistent) rai->rainconsistent++; - + done: free_ndopts(&ndopts); } @@ -1351,7 +1351,7 @@ find_prefix(struct rainfo *rai, struct in6_addr *prefix, int plen) if (memcmp(prefix, &pp->prefix, bytelen)) continue; if (bitlen == 0 || - ((prefix->s6_addr[bytelen] & bitmask) == + ((prefix->s6_addr[bytelen] & bitmask) == (pp->prefix.s6_addr[bytelen] & bitmask))) { return pp; } @@ -1377,7 +1377,7 @@ prefix_match(struct in6_addr *p0, int plen0, return 0; if (bitlen == 0 || ((p0->s6_addr[bytelen] & bitmask) == - (p1->s6_addr[bytelen] & bitmask))) { + (p1->s6_addr[bytelen] & bitmask))) { return 1; } @@ -1552,7 +1552,7 @@ sock_open(void) logit(LOG_ERR, "%s: IPV6_PKTINFO: %m", __func__); exit(EXIT_FAILURE); } -#endif +#endif on = 1; /* specify to tell value of hoplimit field of received IP6 hdr */ @@ -1603,7 +1603,7 @@ sock_open(void) /* * When attending router renumbering, join all-routers site-local - * multicast group. + * multicast group. */ if (accept_rr) { if (inet_pton(AF_INET6, ALLROUTERS_SITE, @@ -1633,7 +1633,7 @@ sock_open(void) exit(EXIT_FAILURE); } } - + /* initialize msghdr for receiving packets */ rcviov[0].iov_base = answer; rcviov[0].iov_len = sizeof(answer); diff --git a/usr.sbin/rtadvd/rtadvd.h b/usr.sbin/rtadvd/rtadvd.h index e67f9ddadc17..5be07a0fa5f4 100644 --- a/usr.sbin/rtadvd/rtadvd.h +++ b/usr.sbin/rtadvd/rtadvd.h @@ -1,10 +1,10 @@ -/* $NetBSD: rtadvd.h,v 1.15 2017/02/27 05:41:36 ozaki-r Exp $ */ +/* $NetBSD: rtadvd.h,v 1.16 2018/04/20 10:39:37 roy Exp $ */ /* $KAME: rtadvd.h,v 1.30 2005/10/17 14:40:02 suz Exp $ */ /* * Copyright (C) 1998 WIDE Project. * All rights reserved. - * + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -16,7 +16,7 @@ * 3. Neither the name of the project nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. - * + * * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE @@ -38,7 +38,7 @@ #define IN6ADDR_SITELOCAL_ALLROUTERS_INIT \ {{{ 0xff, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02 }}} + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02 }}} //extern struct sockaddr_in6 sin6_linklocal_allnodes; //extern struct sockaddr_in6 sin6_linklocal_allrouters; @@ -156,7 +156,7 @@ struct rainfo { uint16_t lifetime; /* AdvDefaultLifetime */ uint16_t maxinterval; /* MaxRtrAdvInterval */ uint16_t mininterval; /* MinRtrAdvInterval */ - int managedflg; /* AdvManagedFlag */ + int managedflg; /* AdvManagedFlag */ int otherflg; /* AdvOtherConfigFlag */ int rtpref; /* router preference */ diff --git a/usr.sbin/rtadvd/timer.c b/usr.sbin/rtadvd/timer.c index 9b3b6eb9bc50..2ba35e8965c3 100644 --- a/usr.sbin/rtadvd/timer.c +++ b/usr.sbin/rtadvd/timer.c @@ -1,10 +1,10 @@ -/* $NetBSD: timer.c,v 1.14 2017/11/06 15:15:04 christos Exp $ */ +/* $NetBSD: timer.c,v 1.15 2018/04/20 10:39:37 roy Exp $ */ /* $KAME: timer.c,v 1.11 2005/04/14 06:22:35 suz Exp $ */ /* * Copyright (C) 1998 WIDE Project. * All rights reserved. - * + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -16,7 +16,7 @@ * 3. Neither the name of the project nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. - * + * * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE diff --git a/usr.sbin/rtadvd/timer.h b/usr.sbin/rtadvd/timer.h index 3feefa946973..e86cd07693d5 100644 --- a/usr.sbin/rtadvd/timer.h +++ b/usr.sbin/rtadvd/timer.h @@ -1,10 +1,10 @@ -/* $NetBSD: timer.h,v 1.8 2015/06/05 14:09:20 roy Exp $ */ +/* $NetBSD: timer.h,v 1.9 2018/04/20 10:39:37 roy Exp $ */ /* $KAME: timer.h,v 1.5 2002/05/31 13:30:38 jinmei Exp $ */ /* * Copyright (C) 1998 WIDE Project. * All rights reserved. - * + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -16,7 +16,7 @@ * 3. Neither the name of the project nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. - * + * * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE