diff options
author | Ryan Thomas McBride <mcbride@cvs.openbsd.org> | 2008-05-06 15:12:01 +0000 |
---|---|---|
committer | Ryan Thomas McBride <mcbride@cvs.openbsd.org> | 2008-05-06 15:12:01 +0000 |
commit | 57e85c70cc40043610ede0ecf70884e1b45176db (patch) | |
tree | 063a4db950f0412a62367cb6cfb51ac982263f6a /sys/netinet/ip_carp.c | |
parent | 4053d3d1e9e579c9002ffd6dc9fd649f1dd60d3a (diff) |
Use the standard syslog levels on CARP logging messages instead of
simple on/off, allowing more control over how verbose the logging is.
This also allows you to do a further level of filtering in syslog.conf
if you need to.
Also add logging of state changes, inspired by diff provided by
Brian A. Seklecki in PR 5513. These messages are logged by default.
ok henning mpf deraadt
Diffstat (limited to 'sys/netinet/ip_carp.c')
-rw-r--r-- | sys/netinet/ip_carp.c | 69 |
1 files changed, 42 insertions, 27 deletions
diff --git a/sys/netinet/ip_carp.c b/sys/netinet/ip_carp.c index db1327072cd..72f2b858ff1 100644 --- a/sys/netinet/ip_carp.c +++ b/sys/netinet/ip_carp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_carp.c,v 1.162 2008/02/20 22:11:53 mpf Exp $ */ +/* $OpenBSD: ip_carp.c,v 1.163 2008/05/06 15:12:00 mcbride Exp $ */ /* * Copyright (c) 2002 Michael Shalayeff. All rights reserved. @@ -171,7 +171,7 @@ struct carp_softc { struct carp_vhost_entry *cur_vhe; /* current active vhe */ }; -int carp_opts[CARPCTL_MAXID] = { 0, 1, 0, 0 }; /* XXX for now */ +int carp_opts[CARPCTL_MAXID] = { 0, 1, 0, LOG_CRIT }; /* XXX for now */ struct carpstats carpstats; struct carp_if { @@ -181,16 +181,18 @@ struct carp_if { struct ifnet *vhif_ifp; }; -#define CARP_LOG(sc, s) \ - if (carp_opts[CARPCTL_LOG]) { \ - if (sc) \ - log(LOG_INFO, "%s: ", \ - (sc)->sc_if.if_xname); \ - else \ - log(LOG_INFO, "carp: "); \ - addlog s; \ - addlog("\n"); \ - } +#define CARP_LOG(l, sc, s) \ + do { \ + if (carp_opts[CARPCTL_LOG] >= l) { \ + if (sc) \ + log(l, "%s: ", \ + (sc)->sc_if.if_xname); \ + else \ + log(l, "carp: "); \ + addlog s; \ + addlog("\n"); \ + } \ + } while (0) void carp_hmac_prepare(struct carp_softc *); void carp_hmac_prepare_ctx(struct carp_vhost_entry *, u_int8_t); @@ -543,7 +545,7 @@ carp_proto_input(struct mbuf *m, ...) /* check if received on a valid carp interface */ if (m->m_pkthdr.rcvif->if_type != IFT_CARP) { carpstats.carps_badif++; - CARP_LOG(sc, ("packet received on non-carp interface: %s", + CARP_LOG(LOG_INFO, sc, ("packet received on non-carp interface: %s", m->m_pkthdr.rcvif->if_xname)); m_freem(m); return; @@ -552,7 +554,7 @@ carp_proto_input(struct mbuf *m, ...) /* verify that the IP TTL is 255. */ if (ip->ip_ttl != CARP_DFLTTL) { carpstats.carps_badttl++; - CARP_LOG(sc, ("received ttl %d != %d on %s", ip->ip_ttl, + CARP_LOG(LOG_NOTICE, sc, ("received ttl %d != %d on %s", ip->ip_ttl, CARP_DFLTTL, m->m_pkthdr.rcvif->if_xname)); m_freem(m); return; @@ -566,7 +568,7 @@ carp_proto_input(struct mbuf *m, ...) len = iplen + sizeof(*ch); if (len > m->m_pkthdr.len) { carpstats.carps_badlen++; - CARP_LOG(sc, ("packet too short %d on %s", m->m_pkthdr.len, + CARP_LOG(LOG_INFO, sc, ("packet too short %d on %s", m->m_pkthdr.len, m->m_pkthdr.rcvif->if_xname)); m_freem(m); return; @@ -583,7 +585,7 @@ carp_proto_input(struct mbuf *m, ...) m->m_data += iplen; if (carp_cksum(m, len - iplen)) { carpstats.carps_badsum++; - CARP_LOG(sc, ("checksum failed on %s", + CARP_LOG(LOG_INFO, sc, ("checksum failed on %s", m->m_pkthdr.rcvif->if_xname)); m_freem(m); return; @@ -613,7 +615,7 @@ carp6_proto_input(struct mbuf **mp, int *offp, int proto) /* check if received on a valid carp interface */ if (m->m_pkthdr.rcvif->if_type != IFT_CARP) { carpstats.carps_badif++; - CARP_LOG(sc, ("packet received on non-carp interface: %s", + CARP_LOG(LOG_INFO, sc, ("packet received on non-carp interface: %s", m->m_pkthdr.rcvif->if_xname)); m_freem(m); return (IPPROTO_DONE); @@ -622,7 +624,7 @@ carp6_proto_input(struct mbuf **mp, int *offp, int proto) /* verify that the IP TTL is 255 */ if (ip6->ip6_hlim != CARP_DFLTTL) { carpstats.carps_badttl++; - CARP_LOG(sc, ("received ttl %d != %d on %s", ip6->ip6_hlim, + CARP_LOG(LOG_NOTICE, sc, ("received ttl %d != %d on %s", ip6->ip6_hlim, CARP_DFLTTL, m->m_pkthdr.rcvif->if_xname)); m_freem(m); return (IPPROTO_DONE); @@ -633,7 +635,7 @@ carp6_proto_input(struct mbuf **mp, int *offp, int proto) IP6_EXTHDR_GET(ch, struct carp_header *, m, *offp, sizeof(*ch)); if (ch == NULL) { carpstats.carps_badlen++; - CARP_LOG(sc, ("packet size %u too small", len)); + CARP_LOG(LOG_INFO, sc, ("packet size %u too small", len)); return (IPPROTO_DONE); } @@ -642,7 +644,7 @@ carp6_proto_input(struct mbuf **mp, int *offp, int proto) m->m_data += *offp; if (carp_cksum(m, sizeof(*ch))) { carpstats.carps_badsum++; - CARP_LOG(sc, ("checksum failed, on %s", + CARP_LOG(LOG_INFO, sc, ("checksum failed, on %s", m->m_pkthdr.rcvif->if_xname)); m_freem(m); return (IPPROTO_DONE); @@ -685,7 +687,7 @@ carp_proto_input_c(struct mbuf *m, struct carp_header *ch, sa_family_t af) if (ch->carp_version != CARP_VERSION) { carpstats.carps_badver++; sc->sc_if.if_ierrors++; - CARP_LOG(sc, ("invalid version %d != %d", + CARP_LOG(LOG_NOTICE, sc, ("invalid version %d != %d", ch->carp_version, CARP_VERSION)); m_freem(m); return; @@ -695,7 +697,7 @@ carp_proto_input_c(struct mbuf *m, struct carp_header *ch, sa_family_t af) if (carp_hmac_verify(vhe, ch->carp_counter, ch->carp_md)) { carpstats.carps_badauth++; sc->sc_if.if_ierrors++; - CARP_LOG(sc, ("incorrect hash")); + CARP_LOG(LOG_INFO, sc, ("incorrect hash")); m_freem(m); return; } @@ -706,7 +708,8 @@ carp_proto_input_c(struct mbuf *m, struct carp_header *ch, sa_family_t af) if (sc->sc_carpdev->if_flags & IFF_SIMPLEX) { carpstats.carps_badauth++; sc->sc_if.if_ierrors++; - CARP_LOG(sc, ("replay or network loop detected")); + CARP_LOG(LOG_WARNING, sc, + ("replay or network loop detected")); } m_freem(m); return; @@ -1157,7 +1160,8 @@ carp_send_ad(void *v) if (error == ENOBUFS) carpstats.carps_onomem++; else - CARP_LOG(sc, ("ip_output failed: %d", error)); + CARP_LOG(LOG_WARNING, sc, + ("ip_output failed: %d", error)); sc->sc_if.if_oerrors++; if (sc->sc_sendad_errors < INT_MAX) sc->sc_sendad_errors++; @@ -1241,7 +1245,8 @@ carp_send_ad(void *v) if (error == ENOBUFS) carpstats.carps_onomem++; else - CARP_LOG(sc, ("ip6_output failed: %d", error)); + CARP_LOG(LOG_WARNING, sc, + ("ip6_output failed: %d", error)); sc->sc_if.if_oerrors++; if (sc->sc_sendad_errors < INT_MAX) sc->sc_sendad_errors++; @@ -1369,7 +1374,7 @@ carp_update_lsmask(struct carp_softc *sc) count++; } sc->sc_lscount = count; - CARP_LOG(sc, ("carp_update_lsmask: %x", sc->sc_lsmask)); + CARP_LOG(LOG_DEBUG, sc, ("carp_update_lsmask: %x", sc->sc_lsmask)); } int @@ -2468,10 +2473,20 @@ void carp_set_state(struct carp_vhost_entry *vhe, int state) { struct carp_softc *sc = vhe->parent_sc; + static const char *carp_states[] = { CARP_STATES }; if (vhe->state == state) return; + if (sc->sc_vhe_count > 1) + CARP_LOG(LOG_CRIT, sc, + ("state transition (vhid %d): %s -> %s", vhe->vhid, + carp_states[vhe->state], carp_states[state])); + else + CARP_LOG(LOG_CRIT, sc, + ("state transition: %s -> %s", + carp_states[vhe->state], carp_states[state])); + vhe->state = state; carp_update_lsmask(sc); @@ -2512,7 +2527,7 @@ carp_group_demote_adj(struct ifnet *ifp, int adj) if (adj > 0 && *dm == 1) carp_send_ad_all(); - CARP_LOG(nil, ("%s demoted group %s to %d", ifp->if_xname, + CARP_LOG(LOG_INFO, nil, ("%s demoted group %s to %d", ifp->if_xname, ifgl->ifgl_group->ifg_group, *dm)); } } |