xref: /freebsd/sys/netinet/ip_carp.c (revision 9a8cf950b259f6833c7562ce941b0cfeae6687e5)
108b68b0eSGleb Smirnoff /*-
2fe267a55SPedro F. Giffuni  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3fe267a55SPedro F. Giffuni  *
408b68b0eSGleb Smirnoff  * Copyright (c) 2002 Michael Shalayeff.
508b68b0eSGleb Smirnoff  * Copyright (c) 2003 Ryan McBride.
608b68b0eSGleb Smirnoff  * Copyright (c) 2011 Gleb Smirnoff <glebius@FreeBSD.org>
708b68b0eSGleb Smirnoff  * All rights reserved.
8a9771948SGleb Smirnoff  *
9a9771948SGleb Smirnoff  * Redistribution and use in source and binary forms, with or without
10a9771948SGleb Smirnoff  * modification, are permitted provided that the following conditions
11a9771948SGleb Smirnoff  * are met:
12a9771948SGleb Smirnoff  * 1. Redistributions of source code must retain the above copyright
13a9771948SGleb Smirnoff  *    notice, this list of conditions and the following disclaimer.
14a9771948SGleb Smirnoff  * 2. Redistributions in binary form must reproduce the above copyright
15a9771948SGleb Smirnoff  *    notice, this list of conditions and the following disclaimer in the
16a9771948SGleb Smirnoff  *    documentation and/or other materials provided with the distribution.
17a9771948SGleb Smirnoff  *
18a9771948SGleb Smirnoff  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19a9771948SGleb Smirnoff  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20a9771948SGleb Smirnoff  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21a9771948SGleb Smirnoff  * IN NO EVENT SHALL THE AUTHOR OR HIS RELATIVES BE LIABLE FOR ANY DIRECT,
22a9771948SGleb Smirnoff  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23a9771948SGleb Smirnoff  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24a9771948SGleb Smirnoff  * SERVICES; LOSS OF MIND, USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25a9771948SGleb Smirnoff  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26a9771948SGleb Smirnoff  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
27a9771948SGleb Smirnoff  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
28a9771948SGleb Smirnoff  * THE POSSIBILITY OF SUCH DAMAGE.
29a9771948SGleb Smirnoff  */
30a9771948SGleb Smirnoff 
314b421e2dSMike Silbersack #include <sys/cdefs.h>
324b421e2dSMike Silbersack __FBSDID("$FreeBSD$");
334b421e2dSMike Silbersack 
34a9771948SGleb Smirnoff #include "opt_bpf.h"
35a9771948SGleb Smirnoff #include "opt_inet.h"
36a9771948SGleb Smirnoff #include "opt_inet6.h"
37a9771948SGleb Smirnoff 
38a9771948SGleb Smirnoff #include <sys/param.h>
39a9771948SGleb Smirnoff #include <sys/systm.h>
40773e541eSWarner Losh #include <sys/devctl.h>
4108b68b0eSGleb Smirnoff #include <sys/jail.h>
42a9771948SGleb Smirnoff #include <sys/kernel.h>
43a9771948SGleb Smirnoff #include <sys/limits.h>
44a9771948SGleb Smirnoff #include <sys/malloc.h>
45a9771948SGleb Smirnoff #include <sys/mbuf.h>
46a9771948SGleb Smirnoff #include <sys/module.h>
47acd3428bSRobert Watson #include <sys/priv.h>
48a9771948SGleb Smirnoff #include <sys/proc.h>
4954bfbd51SWill Andrews #include <sys/protosw.h>
5008b68b0eSGleb Smirnoff #include <sys/socket.h>
5108b68b0eSGleb Smirnoff #include <sys/sockio.h>
52a9771948SGleb Smirnoff #include <sys/sysctl.h>
53a9771948SGleb Smirnoff #include <sys/syslog.h>
54f08535f8SGleb Smirnoff #include <sys/taskqueue.h>
5569edf037SAndrey V. Elsukov #include <sys/counter.h>
56a9771948SGleb Smirnoff 
57a9771948SGleb Smirnoff #include <net/ethernet.h>
58a9771948SGleb Smirnoff #include <net/if.h>
5976039bc8SGleb Smirnoff #include <net/if_var.h>
60433aaf04SRuslan Ermilov #include <net/if_dl.h>
6108b68b0eSGleb Smirnoff #include <net/if_llatbl.h>
62a9771948SGleb Smirnoff #include <net/if_types.h>
63a9771948SGleb Smirnoff #include <net/route.h>
64530c0060SRobert Watson #include <net/vnet.h>
65a9771948SGleb Smirnoff 
66a0ae8f04SBjoern A. Zeeb #if defined(INET) || defined(INET6)
67a9771948SGleb Smirnoff #include <netinet/in.h>
68a9771948SGleb Smirnoff #include <netinet/in_var.h>
69a0ae8f04SBjoern A. Zeeb #include <netinet/ip_carp.h>
70a9771948SGleb Smirnoff #include <netinet/ip.h>
71a0ae8f04SBjoern A. Zeeb #include <machine/in_cksum.h>
72a0ae8f04SBjoern A. Zeeb #endif
73a0ae8f04SBjoern A. Zeeb #ifdef INET
74a9771948SGleb Smirnoff #include <netinet/ip_var.h>
75a9771948SGleb Smirnoff #include <netinet/if_ether.h>
76a9771948SGleb Smirnoff #endif
77a9771948SGleb Smirnoff 
78a9771948SGleb Smirnoff #ifdef INET6
79a9771948SGleb Smirnoff #include <netinet/icmp6.h>
80a9771948SGleb Smirnoff #include <netinet/ip6.h>
8108b68b0eSGleb Smirnoff #include <netinet6/in6_var.h>
82a9771948SGleb Smirnoff #include <netinet6/ip6_var.h>
8329da8af6SHajimu UMEMOTO #include <netinet6/scope6_var.h>
84a9771948SGleb Smirnoff #include <netinet6/nd6.h>
85a9771948SGleb Smirnoff #endif
86a9771948SGleb Smirnoff 
87a9771948SGleb Smirnoff #include <crypto/sha1.h>
88a9771948SGleb Smirnoff 
8908b68b0eSGleb Smirnoff static MALLOC_DEFINE(M_CARP, "CARP", "CARP addresses");
90a9771948SGleb Smirnoff 
91a9771948SGleb Smirnoff struct carp_softc {
9208b68b0eSGleb Smirnoff 	struct ifnet		*sc_carpdev;	/* Pointer to parent ifnet. */
9308b68b0eSGleb Smirnoff 	struct ifaddr		**sc_ifas;	/* Our ifaddrs. */
9408b68b0eSGleb Smirnoff 	struct sockaddr_dl	sc_addr;	/* Our link level address. */
9508b68b0eSGleb Smirnoff 	struct callout		sc_ad_tmo;	/* Advertising timeout. */
96a0ae8f04SBjoern A. Zeeb #ifdef INET
9708b68b0eSGleb Smirnoff 	struct callout		sc_md_tmo;	/* Master down timeout. */
98a0ae8f04SBjoern A. Zeeb #endif
99a9771948SGleb Smirnoff #ifdef INET6
10008b68b0eSGleb Smirnoff 	struct callout 		sc_md6_tmo;	/* XXX: Master down timeout. */
10108b68b0eSGleb Smirnoff #endif
10208b68b0eSGleb Smirnoff 	struct mtx		sc_mtx;
103a9771948SGleb Smirnoff 
10408b68b0eSGleb Smirnoff 	int			sc_vhid;
10508b68b0eSGleb Smirnoff 	int			sc_advskew;
10608b68b0eSGleb Smirnoff 	int			sc_advbase;
10708b68b0eSGleb Smirnoff 
10808b68b0eSGleb Smirnoff 	int			sc_naddrs;
10908b68b0eSGleb Smirnoff 	int			sc_naddrs6;
11008b68b0eSGleb Smirnoff 	int			sc_ifasiz;
111a9771948SGleb Smirnoff 	enum { INIT = 0, BACKUP, MASTER }	sc_state;
112a9771948SGleb Smirnoff 	int			sc_suppress;
113a9771948SGleb Smirnoff 	int			sc_sendad_errors;
114a9771948SGleb Smirnoff #define	CARP_SENDAD_MAX_ERRORS	3
115a9771948SGleb Smirnoff 	int			sc_sendad_success;
116a9771948SGleb Smirnoff #define	CARP_SENDAD_MIN_SUCCESS 3
117a9771948SGleb Smirnoff 
118a9771948SGleb Smirnoff 	int			sc_init_counter;
11908b68b0eSGleb Smirnoff 	uint64_t		sc_counter;
120a9771948SGleb Smirnoff 
121a9771948SGleb Smirnoff 	/* authentication */
122a9771948SGleb Smirnoff #define	CARP_HMAC_PAD	64
123a9771948SGleb Smirnoff 	unsigned char sc_key[CARP_KEY_LEN];
124a9771948SGleb Smirnoff 	unsigned char sc_pad[CARP_HMAC_PAD];
125a9771948SGleb Smirnoff 	SHA1_CTX sc_sha1;
126a9771948SGleb Smirnoff 
12708b68b0eSGleb Smirnoff 	TAILQ_ENTRY(carp_softc)	sc_list;	/* On the carp_if list. */
12808b68b0eSGleb Smirnoff 	LIST_ENTRY(carp_softc)	sc_next;	/* On the global list. */
129a9771948SGleb Smirnoff };
13008b68b0eSGleb Smirnoff 
13108b68b0eSGleb Smirnoff struct carp_if {
13208b68b0eSGleb Smirnoff #ifdef INET
13308b68b0eSGleb Smirnoff 	int	cif_naddrs;
13408b68b0eSGleb Smirnoff #endif
13508b68b0eSGleb Smirnoff #ifdef INET6
13608b68b0eSGleb Smirnoff 	int	cif_naddrs6;
13708b68b0eSGleb Smirnoff #endif
13808b68b0eSGleb Smirnoff 	TAILQ_HEAD(, carp_softc) cif_vrs;
13908b68b0eSGleb Smirnoff #ifdef INET
14008b68b0eSGleb Smirnoff 	struct ip_moptions 	 cif_imo;
14108b68b0eSGleb Smirnoff #endif
14208b68b0eSGleb Smirnoff #ifdef INET6
14308b68b0eSGleb Smirnoff 	struct ip6_moptions 	 cif_im6o;
14408b68b0eSGleb Smirnoff #endif
14508b68b0eSGleb Smirnoff 	struct ifnet	*cif_ifp;
14608b68b0eSGleb Smirnoff 	struct mtx	cif_mtx;
1470cc726f2SGleb Smirnoff 	uint32_t	cif_flags;
1480cc726f2SGleb Smirnoff #define	CIF_PROMISC	0x00000001
14908b68b0eSGleb Smirnoff };
15008b68b0eSGleb Smirnoff 
15108b68b0eSGleb Smirnoff #define	CARP_INET	0
15208b68b0eSGleb Smirnoff #define	CARP_INET6	1
15308b68b0eSGleb Smirnoff static int proto_reg[] = {-1, -1};
15408b68b0eSGleb Smirnoff 
15508b68b0eSGleb Smirnoff /*
15608b68b0eSGleb Smirnoff  * Brief design of carp(4).
15708b68b0eSGleb Smirnoff  *
15808b68b0eSGleb Smirnoff  * Any carp-capable ifnet may have a list of carp softcs hanging off
15908b68b0eSGleb Smirnoff  * its ifp->if_carp pointer. Each softc represents one unique virtual
16008b68b0eSGleb Smirnoff  * host id, or vhid. The softc has a back pointer to the ifnet. All
16108b68b0eSGleb Smirnoff  * softcs are joined in a global list, which has quite limited use.
16208b68b0eSGleb Smirnoff  *
16308b68b0eSGleb Smirnoff  * Any interface address that takes part in CARP negotiation has a
16408b68b0eSGleb Smirnoff  * pointer to the softc of its vhid, ifa->ifa_carp. That could be either
16508b68b0eSGleb Smirnoff  * AF_INET or AF_INET6 address.
16608b68b0eSGleb Smirnoff  *
16708b68b0eSGleb Smirnoff  * Although, one can get the softc's backpointer to ifnet and traverse
16808b68b0eSGleb Smirnoff  * through its ifp->if_addrhead queue to find all interface addresses
16908b68b0eSGleb Smirnoff  * involved in CARP, we keep a growable array of ifaddr pointers. This
17008b68b0eSGleb Smirnoff  * allows us to avoid grabbing the IF_ADDR_LOCK() in many traversals that
17108b68b0eSGleb Smirnoff  * do calls into the network stack, thus avoiding LORs.
17208b68b0eSGleb Smirnoff  *
17308b68b0eSGleb Smirnoff  * Locking:
17408b68b0eSGleb Smirnoff  *
17508b68b0eSGleb Smirnoff  * Each softc has a lock sc_mtx. It is used to synchronise carp_input_c(),
17608b68b0eSGleb Smirnoff  * callout-driven events and ioctl()s.
17708b68b0eSGleb Smirnoff  *
17881098a01SAlexander Motin  * To traverse the list of softcs on an ifnet we use CIF_LOCK() or carp_sx.
17981098a01SAlexander Motin  * To traverse the global list we use the mutex carp_mtx.
18008b68b0eSGleb Smirnoff  *
18108b68b0eSGleb Smirnoff  * Known issues with locking:
18208b68b0eSGleb Smirnoff  *
18308b68b0eSGleb Smirnoff  * - Sending ad, we put the pointer to the softc in an mtag, and no reference
18408b68b0eSGleb Smirnoff  *   counting is done on the softc.
18508b68b0eSGleb Smirnoff  * - On module unload we may race (?) with packet processing thread
18608b68b0eSGleb Smirnoff  *   dereferencing our function pointers.
18708b68b0eSGleb Smirnoff  */
188a9771948SGleb Smirnoff 
189c5c392e7SMikolaj Golub /* Accept incoming CARP packets. */
1905f901c92SAndrew Turner VNET_DEFINE_STATIC(int, carp_allow) = 1;
191c5c392e7SMikolaj Golub #define	V_carp_allow	VNET(carp_allow)
192c5c392e7SMikolaj Golub 
1930d3d234cSKristof Provost /* Set DSCP in outgoing CARP packets. */
1945f901c92SAndrew Turner VNET_DEFINE_STATIC(int, carp_dscp) = 56;
1950d3d234cSKristof Provost #define	V_carp_dscp	VNET(carp_dscp)
1960d3d234cSKristof Provost 
197c5c392e7SMikolaj Golub /* Preempt slower nodes. */
1985f901c92SAndrew Turner VNET_DEFINE_STATIC(int, carp_preempt) = 0;
199c5c392e7SMikolaj Golub #define	V_carp_preempt	VNET(carp_preempt)
200c5c392e7SMikolaj Golub 
201c5c392e7SMikolaj Golub /* Log level. */
2025f901c92SAndrew Turner VNET_DEFINE_STATIC(int, carp_log) = 1;
203c5c392e7SMikolaj Golub #define	V_carp_log	VNET(carp_log)
204c5c392e7SMikolaj Golub 
205c5c392e7SMikolaj Golub /* Global advskew demotion. */
2065f901c92SAndrew Turner VNET_DEFINE_STATIC(int, carp_demotion) = 0;
207c5c392e7SMikolaj Golub #define	V_carp_demotion	VNET(carp_demotion)
208c5c392e7SMikolaj Golub 
209c5c392e7SMikolaj Golub /* Send error demotion factor. */
2105f901c92SAndrew Turner VNET_DEFINE_STATIC(int, carp_senderr_adj) = CARP_MAXSKEW;
211c5c392e7SMikolaj Golub #define	V_carp_senderr_adj	VNET(carp_senderr_adj)
212c5c392e7SMikolaj Golub 
213c5c392e7SMikolaj Golub /* Iface down demotion factor. */
2145f901c92SAndrew Turner VNET_DEFINE_STATIC(int, carp_ifdown_adj) = CARP_MAXSKEW;
215c5c392e7SMikolaj Golub #define	V_carp_ifdown_adj	VNET(carp_ifdown_adj)
216c5c392e7SMikolaj Golub 
217167a3440SAlexander Motin static int carp_allow_sysctl(SYSCTL_HANDLER_ARGS);
2180d3d234cSKristof Provost static int carp_dscp_sysctl(SYSCTL_HANDLER_ARGS);
2197951008bSGleb Smirnoff static int carp_demote_adj_sysctl(SYSCTL_HANDLER_ARGS);
220a9771948SGleb Smirnoff 
22110b49b23SPawel Biernacki SYSCTL_NODE(_net_inet, IPPROTO_CARP, carp, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
22210b49b23SPawel Biernacki     "CARP");
223167a3440SAlexander Motin SYSCTL_PROC(_net_inet_carp, OID_AUTO, allow,
22410b49b23SPawel Biernacki     CTLFLAG_VNET | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_MPSAFE,
22510b49b23SPawel Biernacki     0, 0, carp_allow_sysctl, "I",
226167a3440SAlexander Motin     "Accept incoming CARP packets");
2270d3d234cSKristof Provost SYSCTL_PROC(_net_inet_carp, OID_AUTO, dscp,
22810b49b23SPawel Biernacki     CTLFLAG_VNET | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_MPSAFE,
22910b49b23SPawel Biernacki     0, 0, carp_dscp_sysctl, "I",
2300d3d234cSKristof Provost     "DSCP value for carp packets");
2316df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_carp, OID_AUTO, preempt, CTLFLAG_VNET | CTLFLAG_RW,
232c5c392e7SMikolaj Golub     &VNET_NAME(carp_preempt), 0, "High-priority backup preemption mode");
2336df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_carp, OID_AUTO, log, CTLFLAG_VNET | CTLFLAG_RW,
234c5c392e7SMikolaj Golub     &VNET_NAME(carp_log), 0, "CARP log level");
2356df8a710SGleb Smirnoff SYSCTL_PROC(_net_inet_carp, OID_AUTO, demotion,
23610b49b23SPawel Biernacki     CTLFLAG_VNET | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_MPSAFE,
2377951008bSGleb Smirnoff     0, 0, carp_demote_adj_sysctl, "I",
2387951008bSGleb Smirnoff     "Adjust demotion factor (skew of advskew)");
2396df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_carp, OID_AUTO, senderr_demotion_factor,
2406df8a710SGleb Smirnoff     CTLFLAG_VNET | CTLFLAG_RW,
241c5c392e7SMikolaj Golub     &VNET_NAME(carp_senderr_adj), 0, "Send error demotion factor adjustment");
2426df8a710SGleb Smirnoff SYSCTL_INT(_net_inet_carp, OID_AUTO, ifdown_demotion_factor,
2436df8a710SGleb Smirnoff     CTLFLAG_VNET | CTLFLAG_RW,
244c5c392e7SMikolaj Golub     &VNET_NAME(carp_ifdown_adj), 0,
245c5c392e7SMikolaj Golub     "Interface down demotion factor adjustment");
246f08535f8SGleb Smirnoff 
247c5c392e7SMikolaj Golub VNET_PCPUSTAT_DEFINE(struct carpstats, carpstats);
248c5c392e7SMikolaj Golub VNET_PCPUSTAT_SYSINIT(carpstats);
249c5c392e7SMikolaj Golub VNET_PCPUSTAT_SYSUNINIT(carpstats);
250c5c392e7SMikolaj Golub 
25169edf037SAndrey V. Elsukov #define	CARPSTATS_ADD(name, val)	\
252c5c392e7SMikolaj Golub     counter_u64_add(VNET(carpstats)[offsetof(struct carpstats, name) / \
25369edf037SAndrey V. Elsukov 	sizeof(uint64_t)], (val))
25469edf037SAndrey V. Elsukov #define	CARPSTATS_INC(name)		CARPSTATS_ADD(name, 1)
25569edf037SAndrey V. Elsukov 
256c5c392e7SMikolaj Golub SYSCTL_VNET_PCPUSTAT(_net_inet_carp, OID_AUTO, stats, struct carpstats,
257c5c392e7SMikolaj Golub     carpstats, "CARP statistics (struct carpstats, netinet/ip_carp.h)");
258a9771948SGleb Smirnoff 
25908b68b0eSGleb Smirnoff #define	CARP_LOCK_INIT(sc)	mtx_init(&(sc)->sc_mtx, "carp_softc",   \
260a9771948SGleb Smirnoff 	NULL, MTX_DEF)
26108b68b0eSGleb Smirnoff #define	CARP_LOCK_DESTROY(sc)	mtx_destroy(&(sc)->sc_mtx)
26208b68b0eSGleb Smirnoff #define	CARP_LOCK_ASSERT(sc)	mtx_assert(&(sc)->sc_mtx, MA_OWNED)
26308b68b0eSGleb Smirnoff #define	CARP_LOCK(sc)		mtx_lock(&(sc)->sc_mtx)
26408b68b0eSGleb Smirnoff #define	CARP_UNLOCK(sc)		mtx_unlock(&(sc)->sc_mtx)
26508b68b0eSGleb Smirnoff #define	CIF_LOCK_INIT(cif)	mtx_init(&(cif)->cif_mtx, "carp_if",   \
26608b68b0eSGleb Smirnoff 	NULL, MTX_DEF)
26708b68b0eSGleb Smirnoff #define	CIF_LOCK_DESTROY(cif)	mtx_destroy(&(cif)->cif_mtx)
26808b68b0eSGleb Smirnoff #define	CIF_LOCK_ASSERT(cif)	mtx_assert(&(cif)->cif_mtx, MA_OWNED)
26908b68b0eSGleb Smirnoff #define	CIF_LOCK(cif)		mtx_lock(&(cif)->cif_mtx)
27008b68b0eSGleb Smirnoff #define	CIF_UNLOCK(cif)		mtx_unlock(&(cif)->cif_mtx)
271a9a2c40cSGleb Smirnoff #define	CIF_FREE(cif)	do {				\
2729c2cd1aaSGleb Smirnoff 		CIF_LOCK(cif);				\
273a9a2c40cSGleb Smirnoff 		if (TAILQ_EMPTY(&(cif)->cif_vrs))	\
274a9a2c40cSGleb Smirnoff 			carp_free_if(cif);		\
275a9a2c40cSGleb Smirnoff 		else					\
276a9a2c40cSGleb Smirnoff 			CIF_UNLOCK(cif);		\
277a9a2c40cSGleb Smirnoff } while (0)
278d220759bSGleb Smirnoff 
279947b7cf3SGleb Smirnoff #define	CARP_LOG(...)	do {				\
280c5c392e7SMikolaj Golub 	if (V_carp_log > 0)				\
28108b68b0eSGleb Smirnoff 		log(LOG_INFO, "carp: " __VA_ARGS__);	\
282947b7cf3SGleb Smirnoff } while (0)
2831e9e6572SGleb Smirnoff 
284947b7cf3SGleb Smirnoff #define	CARP_DEBUG(...)	do {				\
285c5c392e7SMikolaj Golub 	if (V_carp_log > 1)				\
2861e9e6572SGleb Smirnoff 		log(LOG_DEBUG, __VA_ARGS__);		\
287947b7cf3SGleb Smirnoff } while (0)
288a9771948SGleb Smirnoff 
28908b68b0eSGleb Smirnoff #define	IFNET_FOREACH_IFA(ifp, ifa)					\
290d7c5a620SMatt Macy 	CK_STAILQ_FOREACH((ifa), &(ifp)->if_addrhead, ifa_link)	\
29108b68b0eSGleb Smirnoff 		if ((ifa)->ifa_carp != NULL)
29208b68b0eSGleb Smirnoff 
29308b68b0eSGleb Smirnoff #define	CARP_FOREACH_IFA(sc, ifa)					\
29408b68b0eSGleb Smirnoff 	CARP_LOCK_ASSERT(sc);						\
29508b68b0eSGleb Smirnoff 	for (int _i = 0;						\
29608b68b0eSGleb Smirnoff 		_i < (sc)->sc_naddrs + (sc)->sc_naddrs6 &&		\
29708b68b0eSGleb Smirnoff 		((ifa) = sc->sc_ifas[_i]) != NULL;			\
29808b68b0eSGleb Smirnoff 		++_i)
29908b68b0eSGleb Smirnoff 
30008b68b0eSGleb Smirnoff #define	IFNET_FOREACH_CARP(ifp, sc)					\
30181098a01SAlexander Motin 	KASSERT(mtx_owned(&ifp->if_carp->cif_mtx) ||			\
30281098a01SAlexander Motin 	    sx_xlocked(&carp_sx), ("cif_vrs not locked"));		\
30308b68b0eSGleb Smirnoff 	TAILQ_FOREACH((sc), &(ifp)->if_carp->cif_vrs, sc_list)
30408b68b0eSGleb Smirnoff 
305f08535f8SGleb Smirnoff #define	DEMOTE_ADVSKEW(sc)					\
306c5c392e7SMikolaj Golub     (((sc)->sc_advskew + V_carp_demotion > CARP_MAXSKEW) ?	\
3071019354bSMarius Halden     CARP_MAXSKEW :						\
3081019354bSMarius Halden         (((sc)->sc_advskew + V_carp_demotion < 0) ?		\
3091019354bSMarius Halden         0 : ((sc)->sc_advskew + V_carp_demotion)))
310f08535f8SGleb Smirnoff 
3115c1f0f6dSGleb Smirnoff static void	carp_input_c(struct mbuf *, struct carp_header *, sa_family_t);
31208b68b0eSGleb Smirnoff static struct carp_softc
31308b68b0eSGleb Smirnoff 		*carp_alloc(struct ifnet *);
31408b68b0eSGleb Smirnoff static void	carp_destroy(struct carp_softc *);
31508b68b0eSGleb Smirnoff static struct carp_if
31608b68b0eSGleb Smirnoff 		*carp_alloc_if(struct ifnet *);
31708b68b0eSGleb Smirnoff static void	carp_free_if(struct carp_if *);
318d01641e2SWill Andrews static void	carp_set_state(struct carp_softc *, int, const char* reason);
31908b68b0eSGleb Smirnoff static void	carp_sc_state(struct carp_softc *);
32008b68b0eSGleb Smirnoff static void	carp_setrun(struct carp_softc *, sa_family_t);
3215c1f0f6dSGleb Smirnoff static void	carp_master_down(void *);
322d01641e2SWill Andrews static void	carp_master_down_locked(struct carp_softc *,
323d01641e2SWill Andrews     		    const char* reason);
32408b68b0eSGleb Smirnoff static void	carp_send_ad(void *);
32508b68b0eSGleb Smirnoff static void	carp_send_ad_locked(struct carp_softc *);
32608b68b0eSGleb Smirnoff static void	carp_addroute(struct carp_softc *);
3272512b096SGleb Smirnoff static void	carp_ifa_addroute(struct ifaddr *);
32808b68b0eSGleb Smirnoff static void	carp_delroute(struct carp_softc *);
3292512b096SGleb Smirnoff static void	carp_ifa_delroute(struct ifaddr *);
330f08535f8SGleb Smirnoff static void	carp_send_ad_all(void *, int);
331f08535f8SGleb Smirnoff static void	carp_demote_adj(int, char *);
332a9771948SGleb Smirnoff 
33308b68b0eSGleb Smirnoff static LIST_HEAD(, carp_softc) carp_list;
334d92d54d5SGleb Smirnoff static struct mtx carp_mtx;
33593d4534cSGleb Smirnoff static struct sx carp_sx;
336f08535f8SGleb Smirnoff static struct task carp_sendall_task =
337f08535f8SGleb Smirnoff     TASK_INITIALIZER(0, carp_send_ad_all, NULL);
338a9771948SGleb Smirnoff 
3395c1f0f6dSGleb Smirnoff static void
340a9771948SGleb Smirnoff carp_hmac_prepare(struct carp_softc *sc)
341a9771948SGleb Smirnoff {
34208b68b0eSGleb Smirnoff 	uint8_t version = CARP_VERSION, type = CARP_ADVERTISEMENT;
34308b68b0eSGleb Smirnoff 	uint8_t vhid = sc->sc_vhid & 0xff;
344a9771948SGleb Smirnoff 	struct ifaddr *ifa;
3451ead26d4SMax Laier 	int i, found;
3461ead26d4SMax Laier #ifdef INET
3471ead26d4SMax Laier 	struct in_addr last, cur, in;
3481ead26d4SMax Laier #endif
349a9771948SGleb Smirnoff #ifdef INET6
3501ead26d4SMax Laier 	struct in6_addr last6, cur6, in6;
351a9771948SGleb Smirnoff #endif
352a9771948SGleb Smirnoff 
35308b68b0eSGleb Smirnoff 	CARP_LOCK_ASSERT(sc);
354d220759bSGleb Smirnoff 
35508b68b0eSGleb Smirnoff 	/* Compute ipad from key. */
356a9771948SGleb Smirnoff 	bzero(sc->sc_pad, sizeof(sc->sc_pad));
357a9771948SGleb Smirnoff 	bcopy(sc->sc_key, sc->sc_pad, sizeof(sc->sc_key));
358a9771948SGleb Smirnoff 	for (i = 0; i < sizeof(sc->sc_pad); i++)
359a9771948SGleb Smirnoff 		sc->sc_pad[i] ^= 0x36;
360a9771948SGleb Smirnoff 
36108b68b0eSGleb Smirnoff 	/* Precompute first part of inner hash. */
362a9771948SGleb Smirnoff 	SHA1Init(&sc->sc_sha1);
363a9771948SGleb Smirnoff 	SHA1Update(&sc->sc_sha1, sc->sc_pad, sizeof(sc->sc_pad));
364a9771948SGleb Smirnoff 	SHA1Update(&sc->sc_sha1, (void *)&version, sizeof(version));
365a9771948SGleb Smirnoff 	SHA1Update(&sc->sc_sha1, (void *)&type, sizeof(type));
366a9771948SGleb Smirnoff 	SHA1Update(&sc->sc_sha1, (void *)&vhid, sizeof(vhid));
367a9771948SGleb Smirnoff #ifdef INET
3681ead26d4SMax Laier 	cur.s_addr = 0;
3691ead26d4SMax Laier 	do {
3701ead26d4SMax Laier 		found = 0;
3711ead26d4SMax Laier 		last = cur;
3721ead26d4SMax Laier 		cur.s_addr = 0xffffffff;
37308b68b0eSGleb Smirnoff 		CARP_FOREACH_IFA(sc, ifa) {
3741ead26d4SMax Laier 			in.s_addr = ifatoia(ifa)->ia_addr.sin_addr.s_addr;
3751ead26d4SMax Laier 			if (ifa->ifa_addr->sa_family == AF_INET &&
3761ead26d4SMax Laier 			    ntohl(in.s_addr) > ntohl(last.s_addr) &&
3771ead26d4SMax Laier 			    ntohl(in.s_addr) < ntohl(cur.s_addr)) {
3781ead26d4SMax Laier 				cur.s_addr = in.s_addr;
3791ead26d4SMax Laier 				found++;
380a9771948SGleb Smirnoff 			}
3811ead26d4SMax Laier 		}
3821ead26d4SMax Laier 		if (found)
3831ead26d4SMax Laier 			SHA1Update(&sc->sc_sha1, (void *)&cur, sizeof(cur));
3841ead26d4SMax Laier 	} while (found);
385a9771948SGleb Smirnoff #endif /* INET */
386a9771948SGleb Smirnoff #ifdef INET6
3871ead26d4SMax Laier 	memset(&cur6, 0, sizeof(cur6));
3881ead26d4SMax Laier 	do {
3891ead26d4SMax Laier 		found = 0;
3901ead26d4SMax Laier 		last6 = cur6;
3911ead26d4SMax Laier 		memset(&cur6, 0xff, sizeof(cur6));
39208b68b0eSGleb Smirnoff 		CARP_FOREACH_IFA(sc, ifa) {
393a9771948SGleb Smirnoff 			in6 = ifatoia6(ifa)->ia_addr.sin6_addr;
3941ead26d4SMax Laier 			if (IN6_IS_SCOPE_EMBED(&in6))
3951ead26d4SMax Laier 				in6.s6_addr16[1] = 0;
3961ead26d4SMax Laier 			if (ifa->ifa_addr->sa_family == AF_INET6 &&
3971ead26d4SMax Laier 			    memcmp(&in6, &last6, sizeof(in6)) > 0 &&
3981ead26d4SMax Laier 			    memcmp(&in6, &cur6, sizeof(in6)) < 0) {
3991ead26d4SMax Laier 				cur6 = in6;
4001ead26d4SMax Laier 				found++;
401a9771948SGleb Smirnoff 			}
402a9771948SGleb Smirnoff 		}
4031ead26d4SMax Laier 		if (found)
4041ead26d4SMax Laier 			SHA1Update(&sc->sc_sha1, (void *)&cur6, sizeof(cur6));
4051ead26d4SMax Laier 	} while (found);
406a9771948SGleb Smirnoff #endif /* INET6 */
407a9771948SGleb Smirnoff 
408a9771948SGleb Smirnoff 	/* convert ipad to opad */
409a9771948SGleb Smirnoff 	for (i = 0; i < sizeof(sc->sc_pad); i++)
410a9771948SGleb Smirnoff 		sc->sc_pad[i] ^= 0x36 ^ 0x5c;
411a9771948SGleb Smirnoff }
412a9771948SGleb Smirnoff 
4135c1f0f6dSGleb Smirnoff static void
41408b68b0eSGleb Smirnoff carp_hmac_generate(struct carp_softc *sc, uint32_t counter[2],
415a9771948SGleb Smirnoff     unsigned char md[20])
416a9771948SGleb Smirnoff {
417a9771948SGleb Smirnoff 	SHA1_CTX sha1ctx;
418a9771948SGleb Smirnoff 
41908b68b0eSGleb Smirnoff 	CARP_LOCK_ASSERT(sc);
42008b68b0eSGleb Smirnoff 
421a9771948SGleb Smirnoff 	/* fetch first half of inner hash */
422a9771948SGleb Smirnoff 	bcopy(&sc->sc_sha1, &sha1ctx, sizeof(sha1ctx));
423a9771948SGleb Smirnoff 
424a9771948SGleb Smirnoff 	SHA1Update(&sha1ctx, (void *)counter, sizeof(sc->sc_counter));
425a9771948SGleb Smirnoff 	SHA1Final(md, &sha1ctx);
426a9771948SGleb Smirnoff 
427a9771948SGleb Smirnoff 	/* outer hash */
428a9771948SGleb Smirnoff 	SHA1Init(&sha1ctx);
429a9771948SGleb Smirnoff 	SHA1Update(&sha1ctx, sc->sc_pad, sizeof(sc->sc_pad));
430a9771948SGleb Smirnoff 	SHA1Update(&sha1ctx, md, 20);
431a9771948SGleb Smirnoff 	SHA1Final(md, &sha1ctx);
432a9771948SGleb Smirnoff }
433a9771948SGleb Smirnoff 
4345c1f0f6dSGleb Smirnoff static int
43508b68b0eSGleb Smirnoff carp_hmac_verify(struct carp_softc *sc, uint32_t counter[2],
436a9771948SGleb Smirnoff     unsigned char md[20])
437a9771948SGleb Smirnoff {
438a9771948SGleb Smirnoff 	unsigned char md2[20];
439a9771948SGleb Smirnoff 
44008b68b0eSGleb Smirnoff 	CARP_LOCK_ASSERT(sc);
441d220759bSGleb Smirnoff 
442a9771948SGleb Smirnoff 	carp_hmac_generate(sc, counter, md2);
443a9771948SGleb Smirnoff 
444a9771948SGleb Smirnoff 	return (bcmp(md, md2, sizeof(md2)));
445a9771948SGleb Smirnoff }
446a9771948SGleb Smirnoff 
447a9771948SGleb Smirnoff /*
448a9771948SGleb Smirnoff  * process input packet.
449a9771948SGleb Smirnoff  * we have rearranged checks order compared to the rfc,
450a9771948SGleb Smirnoff  * but it seems more efficient this way or not possible otherwise.
451a9771948SGleb Smirnoff  */
452a0ae8f04SBjoern A. Zeeb #ifdef INET
4538f5a8818SKevin Lo int
4548f5a8818SKevin Lo carp_input(struct mbuf **mp, int *offp, int proto)
455a9771948SGleb Smirnoff {
4568f5a8818SKevin Lo 	struct mbuf *m = *mp;
457a9771948SGleb Smirnoff 	struct ip *ip = mtod(m, struct ip *);
458a9771948SGleb Smirnoff 	struct carp_header *ch;
459a9771948SGleb Smirnoff 	int iplen, len;
460a9771948SGleb Smirnoff 
4618f5a8818SKevin Lo 	iplen = *offp;
4628f5a8818SKevin Lo 	*mp = NULL;
4638f5a8818SKevin Lo 
4646bf65bcfSRobert Watson 	CARPSTATS_INC(carps_ipackets);
465a9771948SGleb Smirnoff 
466c5c392e7SMikolaj Golub 	if (!V_carp_allow) {
467a9771948SGleb Smirnoff 		m_freem(m);
4688f5a8818SKevin Lo 		return (IPPROTO_DONE);
469a9771948SGleb Smirnoff 	}
470a9771948SGleb Smirnoff 
471a9771948SGleb Smirnoff 	/* verify that the IP TTL is 255.  */
472a9771948SGleb Smirnoff 	if (ip->ip_ttl != CARP_DFLTTL) {
4736bf65bcfSRobert Watson 		CARPSTATS_INC(carps_badttl);
47408b68b0eSGleb Smirnoff 		CARP_DEBUG("%s: received ttl %d != 255 on %s\n", __func__,
4751e9e6572SGleb Smirnoff 		    ip->ip_ttl,
4761e9e6572SGleb Smirnoff 		    m->m_pkthdr.rcvif->if_xname);
477a9771948SGleb Smirnoff 		m_freem(m);
4788f5a8818SKevin Lo 		return (IPPROTO_DONE);
479a9771948SGleb Smirnoff 	}
480a9771948SGleb Smirnoff 
481a9771948SGleb Smirnoff 	iplen = ip->ip_hl << 2;
482a9771948SGleb Smirnoff 
483a9771948SGleb Smirnoff 	if (m->m_pkthdr.len < iplen + sizeof(*ch)) {
4846bf65bcfSRobert Watson 		CARPSTATS_INC(carps_badlen);
48508b68b0eSGleb Smirnoff 		CARP_DEBUG("%s: received len %zd < sizeof(struct carp_header) "
48608b68b0eSGleb Smirnoff 		    "on %s\n", __func__, m->m_len - sizeof(struct ip),
48716e324fcSXin LI 		    m->m_pkthdr.rcvif->if_xname);
488a9771948SGleb Smirnoff 		m_freem(m);
4898f5a8818SKevin Lo 		return (IPPROTO_DONE);
490a9771948SGleb Smirnoff 	}
491a9771948SGleb Smirnoff 
492a9771948SGleb Smirnoff 	if (iplen + sizeof(*ch) < m->m_len) {
493a9771948SGleb Smirnoff 		if ((m = m_pullup(m, iplen + sizeof(*ch))) == NULL) {
4946bf65bcfSRobert Watson 			CARPSTATS_INC(carps_hdrops);
49508b68b0eSGleb Smirnoff 			CARP_DEBUG("%s: pullup failed\n", __func__);
4968f5a8818SKevin Lo 			return (IPPROTO_DONE);
497a9771948SGleb Smirnoff 		}
498a9771948SGleb Smirnoff 		ip = mtod(m, struct ip *);
499a9771948SGleb Smirnoff 	}
500a9771948SGleb Smirnoff 	ch = (struct carp_header *)((char *)ip + iplen);
501a9771948SGleb Smirnoff 
502a9771948SGleb Smirnoff 	/*
503a9771948SGleb Smirnoff 	 * verify that the received packet length is
504a9771948SGleb Smirnoff 	 * equal to the CARP header
505a9771948SGleb Smirnoff 	 */
506a9771948SGleb Smirnoff 	len = iplen + sizeof(*ch);
507a9771948SGleb Smirnoff 	if (len > m->m_pkthdr.len) {
5086bf65bcfSRobert Watson 		CARPSTATS_INC(carps_badlen);
50908b68b0eSGleb Smirnoff 		CARP_DEBUG("%s: packet too short %d on %s\n", __func__,
5101e9e6572SGleb Smirnoff 		    m->m_pkthdr.len,
5111e9e6572SGleb Smirnoff 		    m->m_pkthdr.rcvif->if_xname);
512a9771948SGleb Smirnoff 		m_freem(m);
5138f5a8818SKevin Lo 		return (IPPROTO_DONE);
514a9771948SGleb Smirnoff 	}
515a9771948SGleb Smirnoff 
516a9771948SGleb Smirnoff 	if ((m = m_pullup(m, len)) == NULL) {
5176bf65bcfSRobert Watson 		CARPSTATS_INC(carps_hdrops);
5188f5a8818SKevin Lo 		return (IPPROTO_DONE);
519a9771948SGleb Smirnoff 	}
520a9771948SGleb Smirnoff 	ip = mtod(m, struct ip *);
521a9771948SGleb Smirnoff 	ch = (struct carp_header *)((char *)ip + iplen);
522a9771948SGleb Smirnoff 
523a9771948SGleb Smirnoff 	/* verify the CARP checksum */
524a9771948SGleb Smirnoff 	m->m_data += iplen;
525c4d06976SGleb Smirnoff 	if (in_cksum(m, len - iplen)) {
5266bf65bcfSRobert Watson 		CARPSTATS_INC(carps_badsum);
52708b68b0eSGleb Smirnoff 		CARP_DEBUG("%s: checksum failed on %s\n", __func__,
5281e9e6572SGleb Smirnoff 		    m->m_pkthdr.rcvif->if_xname);
529a9771948SGleb Smirnoff 		m_freem(m);
5308f5a8818SKevin Lo 		return (IPPROTO_DONE);
531a9771948SGleb Smirnoff 	}
532a9771948SGleb Smirnoff 	m->m_data -= iplen;
533a9771948SGleb Smirnoff 
5341e9e6572SGleb Smirnoff 	carp_input_c(m, ch, AF_INET);
5358f5a8818SKevin Lo 	return (IPPROTO_DONE);
536a9771948SGleb Smirnoff }
537a0ae8f04SBjoern A. Zeeb #endif
538a9771948SGleb Smirnoff 
539a9771948SGleb Smirnoff #ifdef INET6
540a9771948SGleb Smirnoff int
541a9771948SGleb Smirnoff carp6_input(struct mbuf **mp, int *offp, int proto)
542a9771948SGleb Smirnoff {
543a9771948SGleb Smirnoff 	struct mbuf *m = *mp;
544a9771948SGleb Smirnoff 	struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *);
545a9771948SGleb Smirnoff 	struct carp_header *ch;
546a9771948SGleb Smirnoff 	u_int len;
547a9771948SGleb Smirnoff 
5486bf65bcfSRobert Watson 	CARPSTATS_INC(carps_ipackets6);
549a9771948SGleb Smirnoff 
550c5c392e7SMikolaj Golub 	if (!V_carp_allow) {
551a9771948SGleb Smirnoff 		m_freem(m);
552a9771948SGleb Smirnoff 		return (IPPROTO_DONE);
553a9771948SGleb Smirnoff 	}
554a9771948SGleb Smirnoff 
555a9771948SGleb Smirnoff 	/* check if received on a valid carp interface */
556a9771948SGleb Smirnoff 	if (m->m_pkthdr.rcvif->if_carp == NULL) {
5576bf65bcfSRobert Watson 		CARPSTATS_INC(carps_badif);
55808b68b0eSGleb Smirnoff 		CARP_DEBUG("%s: packet received on non-carp interface: %s\n",
55908b68b0eSGleb Smirnoff 		    __func__, m->m_pkthdr.rcvif->if_xname);
560a9771948SGleb Smirnoff 		m_freem(m);
561a9771948SGleb Smirnoff 		return (IPPROTO_DONE);
562a9771948SGleb Smirnoff 	}
563a9771948SGleb Smirnoff 
564a9771948SGleb Smirnoff 	/* verify that the IP TTL is 255 */
565a9771948SGleb Smirnoff 	if (ip6->ip6_hlim != CARP_DFLTTL) {
5666bf65bcfSRobert Watson 		CARPSTATS_INC(carps_badttl);
56708b68b0eSGleb Smirnoff 		CARP_DEBUG("%s: received ttl %d != 255 on %s\n", __func__,
56808b68b0eSGleb Smirnoff 		    ip6->ip6_hlim, m->m_pkthdr.rcvif->if_xname);
569a9771948SGleb Smirnoff 		m_freem(m);
570a9771948SGleb Smirnoff 		return (IPPROTO_DONE);
571a9771948SGleb Smirnoff 	}
572a9771948SGleb Smirnoff 
573a9771948SGleb Smirnoff 	/* verify that we have a complete carp packet */
574a4adf6ccSBjoern A. Zeeb 	if (m->m_len < *offp + sizeof(*ch)) {
575a9771948SGleb Smirnoff 		len = m->m_len;
57663abacc2SBjoern A. Zeeb 		m = m_pullup(m, *offp + sizeof(*ch));
57763abacc2SBjoern A. Zeeb 		if (m == NULL) {
5786bf65bcfSRobert Watson 			CARPSTATS_INC(carps_badlen);
57908b68b0eSGleb Smirnoff 			CARP_DEBUG("%s: packet size %u too small\n", __func__, len);
580a9771948SGleb Smirnoff 			return (IPPROTO_DONE);
581a9771948SGleb Smirnoff 		}
582a4adf6ccSBjoern A. Zeeb 	}
583dad68fc3SBjoern A. Zeeb 	ch = (struct carp_header *)(mtod(m, char *) + *offp);
584a9771948SGleb Smirnoff 
585a9771948SGleb Smirnoff 	/* verify the CARP checksum */
586a9771948SGleb Smirnoff 	m->m_data += *offp;
587c4d06976SGleb Smirnoff 	if (in_cksum(m, sizeof(*ch))) {
5886bf65bcfSRobert Watson 		CARPSTATS_INC(carps_badsum);
58908b68b0eSGleb Smirnoff 		CARP_DEBUG("%s: checksum failed, on %s\n", __func__,
5901e9e6572SGleb Smirnoff 		    m->m_pkthdr.rcvif->if_xname);
591a9771948SGleb Smirnoff 		m_freem(m);
592a9771948SGleb Smirnoff 		return (IPPROTO_DONE);
593a9771948SGleb Smirnoff 	}
594a9771948SGleb Smirnoff 	m->m_data -= *offp;
595a9771948SGleb Smirnoff 
5961e9e6572SGleb Smirnoff 	carp_input_c(m, ch, AF_INET6);
597a9771948SGleb Smirnoff 	return (IPPROTO_DONE);
598a9771948SGleb Smirnoff }
599a9771948SGleb Smirnoff #endif /* INET6 */
600a9771948SGleb Smirnoff 
6018151740cSJosh Paetzel /*
6028151740cSJosh Paetzel  * This routine should not be necessary at all, but some switches
6038151740cSJosh Paetzel  * (VMWare ESX vswitches) can echo our own packets back at us,
6048151740cSJosh Paetzel  * and we must ignore them or they will cause us to drop out of
6058151740cSJosh Paetzel  * MASTER mode.
6068151740cSJosh Paetzel  *
6078151740cSJosh Paetzel  * We cannot catch all cases of network loops.  Instead, what we
6088151740cSJosh Paetzel  * do here is catch any packet that arrives with a carp header
6098151740cSJosh Paetzel  * with a VHID of 0, that comes from an address that is our own.
6108151740cSJosh Paetzel  * These packets are by definition "from us" (even if they are from
6118151740cSJosh Paetzel  * a misconfigured host that is pretending to be us).
6128151740cSJosh Paetzel  *
6138151740cSJosh Paetzel  * The VHID test is outside this mini-function.
6148151740cSJosh Paetzel  */
6158151740cSJosh Paetzel static int
6168151740cSJosh Paetzel carp_source_is_self(struct mbuf *m, struct ifaddr *ifa, sa_family_t af)
6178151740cSJosh Paetzel {
618cfff8d3dSEnji Cooper #ifdef INET
6198151740cSJosh Paetzel 	struct ip *ip4;
6208151740cSJosh Paetzel 	struct in_addr in4;
621cfff8d3dSEnji Cooper #endif
622cfff8d3dSEnji Cooper #ifdef INET6
6238151740cSJosh Paetzel 	struct ip6_hdr *ip6;
6248151740cSJosh Paetzel 	struct in6_addr in6;
625cfff8d3dSEnji Cooper #endif
6268151740cSJosh Paetzel 
6278151740cSJosh Paetzel 	switch (af) {
628cfff8d3dSEnji Cooper #ifdef INET
6298151740cSJosh Paetzel 	case AF_INET:
6308151740cSJosh Paetzel 		ip4 = mtod(m, struct ip *);
6318151740cSJosh Paetzel 		in4 = ifatoia(ifa)->ia_addr.sin_addr;
6328151740cSJosh Paetzel 		return (in4.s_addr == ip4->ip_src.s_addr);
633cfff8d3dSEnji Cooper #endif
634cfff8d3dSEnji Cooper #ifdef INET6
6358151740cSJosh Paetzel 	case AF_INET6:
6368151740cSJosh Paetzel 		ip6 = mtod(m, struct ip6_hdr *);
6378151740cSJosh Paetzel 		in6 = ifatoia6(ifa)->ia_addr.sin6_addr;
6388151740cSJosh Paetzel 		return (memcmp(&in6, &ip6->ip6_src, sizeof(in6)) == 0);
639cfff8d3dSEnji Cooper #endif
640cfff8d3dSEnji Cooper 	default:
6418151740cSJosh Paetzel 		break;
6428151740cSJosh Paetzel 	}
6438151740cSJosh Paetzel 	return (0);
6448151740cSJosh Paetzel }
6458151740cSJosh Paetzel 
6465c1f0f6dSGleb Smirnoff static void
6471e9e6572SGleb Smirnoff carp_input_c(struct mbuf *m, struct carp_header *ch, sa_family_t af)
648a9771948SGleb Smirnoff {
649a9771948SGleb Smirnoff 	struct ifnet *ifp = m->m_pkthdr.rcvif;
6508151740cSJosh Paetzel 	struct ifaddr *ifa, *match;
6511e9e6572SGleb Smirnoff 	struct carp_softc *sc;
65208b68b0eSGleb Smirnoff 	uint64_t tmp_counter;
653a9771948SGleb Smirnoff 	struct timeval sc_tv, ch_tv;
6548151740cSJosh Paetzel 	int error;
655a9771948SGleb Smirnoff 
656b8a6e03fSGleb Smirnoff 	NET_EPOCH_ASSERT();
657b8a6e03fSGleb Smirnoff 
6588151740cSJosh Paetzel 	/*
6598151740cSJosh Paetzel 	 * Verify that the VHID is valid on the receiving interface.
6608151740cSJosh Paetzel 	 *
6618151740cSJosh Paetzel 	 * There should be just one match.  If there are none
6628151740cSJosh Paetzel 	 * the VHID is not valid and we drop the packet.  If
6638151740cSJosh Paetzel 	 * there are multiple VHID matches, take just the first
6648151740cSJosh Paetzel 	 * one, for compatibility with previous code.  While we're
6658151740cSJosh Paetzel 	 * scanning, check for obvious loops in the network topology
6668151740cSJosh Paetzel 	 * (these should never happen, and as noted above, we may
6678151740cSJosh Paetzel 	 * miss real loops; this is just a double-check).
6688151740cSJosh Paetzel 	 */
6698151740cSJosh Paetzel 	error = 0;
6708151740cSJosh Paetzel 	match = NULL;
6718151740cSJosh Paetzel 	IFNET_FOREACH_IFA(ifp, ifa) {
6728151740cSJosh Paetzel 		if (match == NULL && ifa->ifa_carp != NULL &&
6738151740cSJosh Paetzel 		    ifa->ifa_addr->sa_family == af &&
6748151740cSJosh Paetzel 		    ifa->ifa_carp->sc_vhid == ch->carp_vhid)
6758151740cSJosh Paetzel 			match = ifa;
6768151740cSJosh Paetzel 		if (ch->carp_vhid == 0 && carp_source_is_self(m, ifa, af))
6778151740cSJosh Paetzel 			error = ELOOP;
67808b68b0eSGleb Smirnoff 	}
6798151740cSJosh Paetzel 	ifa = error ? NULL : match;
6808151740cSJosh Paetzel 	if (ifa != NULL)
6818151740cSJosh Paetzel 		ifa_ref(ifa);
682d220759bSGleb Smirnoff 
68308b68b0eSGleb Smirnoff 	if (ifa == NULL) {
6848151740cSJosh Paetzel 		if (error == ELOOP) {
6858151740cSJosh Paetzel 			CARP_DEBUG("dropping looped packet on interface %s\n",
6868151740cSJosh Paetzel 			    ifp->if_xname);
6878151740cSJosh Paetzel 			CARPSTATS_INC(carps_badif);	/* ??? */
6888151740cSJosh Paetzel 		} else {
6896bf65bcfSRobert Watson 			CARPSTATS_INC(carps_badvhid);
6908151740cSJosh Paetzel 		}
691a9771948SGleb Smirnoff 		m_freem(m);
692a9771948SGleb Smirnoff 		return;
693a9771948SGleb Smirnoff 	}
694a9771948SGleb Smirnoff 
695a9771948SGleb Smirnoff 	/* verify the CARP version. */
696a9771948SGleb Smirnoff 	if (ch->carp_version != CARP_VERSION) {
6976bf65bcfSRobert Watson 		CARPSTATS_INC(carps_badver);
69808b68b0eSGleb Smirnoff 		CARP_DEBUG("%s: invalid version %d\n", ifp->if_xname,
6991e9e6572SGleb Smirnoff 		    ch->carp_version);
70008b68b0eSGleb Smirnoff 		ifa_free(ifa);
701a9771948SGleb Smirnoff 		m_freem(m);
702a9771948SGleb Smirnoff 		return;
703a9771948SGleb Smirnoff 	}
704a9771948SGleb Smirnoff 
70508b68b0eSGleb Smirnoff 	sc = ifa->ifa_carp;
70608b68b0eSGleb Smirnoff 	CARP_LOCK(sc);
70708b68b0eSGleb Smirnoff 	ifa_free(ifa);
70808b68b0eSGleb Smirnoff 
709a9771948SGleb Smirnoff 	if (carp_hmac_verify(sc, ch->carp_counter, ch->carp_md)) {
7106bf65bcfSRobert Watson 		CARPSTATS_INC(carps_badauth);
71108b68b0eSGleb Smirnoff 		CARP_DEBUG("%s: incorrect hash for VHID %u@%s\n", __func__,
71208b68b0eSGleb Smirnoff 		    sc->sc_vhid, ifp->if_xname);
71308b68b0eSGleb Smirnoff 		goto out;
714a9771948SGleb Smirnoff 	}
715a9771948SGleb Smirnoff 
716a9771948SGleb Smirnoff 	tmp_counter = ntohl(ch->carp_counter[0]);
717a9771948SGleb Smirnoff 	tmp_counter = tmp_counter<<32;
718a9771948SGleb Smirnoff 	tmp_counter += ntohl(ch->carp_counter[1]);
719a9771948SGleb Smirnoff 
720a9771948SGleb Smirnoff 	/* XXX Replay protection goes here */
721a9771948SGleb Smirnoff 
722a9771948SGleb Smirnoff 	sc->sc_init_counter = 0;
723a9771948SGleb Smirnoff 	sc->sc_counter = tmp_counter;
724a9771948SGleb Smirnoff 
725a9771948SGleb Smirnoff 	sc_tv.tv_sec = sc->sc_advbase;
726f08535f8SGleb Smirnoff 	sc_tv.tv_usec = DEMOTE_ADVSKEW(sc) * 1000000 / 256;
727a9771948SGleb Smirnoff 	ch_tv.tv_sec = ch->carp_advbase;
728a9771948SGleb Smirnoff 	ch_tv.tv_usec = ch->carp_advskew * 1000000 / 256;
729a9771948SGleb Smirnoff 
730a9771948SGleb Smirnoff 	switch (sc->sc_state) {
731a9771948SGleb Smirnoff 	case INIT:
732a9771948SGleb Smirnoff 		break;
733a9771948SGleb Smirnoff 	case MASTER:
734a9771948SGleb Smirnoff 		/*
735a9771948SGleb Smirnoff 		 * If we receive an advertisement from a master who's going to
736a9771948SGleb Smirnoff 		 * be more frequent than us, go into BACKUP state.
737a9771948SGleb Smirnoff 		 */
738a9771948SGleb Smirnoff 		if (timevalcmp(&sc_tv, &ch_tv, >) ||
739a9771948SGleb Smirnoff 		    timevalcmp(&sc_tv, &ch_tv, ==)) {
740a9771948SGleb Smirnoff 			callout_stop(&sc->sc_ad_tmo);
741d01641e2SWill Andrews 			carp_set_state(sc, BACKUP,
742d01641e2SWill Andrews 			    "more frequent advertisement received");
743a9771948SGleb Smirnoff 			carp_setrun(sc, 0);
74408b68b0eSGleb Smirnoff 			carp_delroute(sc);
745a9771948SGleb Smirnoff 		}
746a9771948SGleb Smirnoff 		break;
747a9771948SGleb Smirnoff 	case BACKUP:
748a9771948SGleb Smirnoff 		/*
749a9771948SGleb Smirnoff 		 * If we're pre-empting masters who advertise slower than us,
750a9771948SGleb Smirnoff 		 * and this one claims to be slower, treat him as down.
751a9771948SGleb Smirnoff 		 */
752c5c392e7SMikolaj Golub 		if (V_carp_preempt && timevalcmp(&sc_tv, &ch_tv, <)) {
753d01641e2SWill Andrews 			carp_master_down_locked(sc,
754d01641e2SWill Andrews 			    "preempting a slower master");
755a9771948SGleb Smirnoff 			break;
756a9771948SGleb Smirnoff 		}
757a9771948SGleb Smirnoff 
758a9771948SGleb Smirnoff 		/*
759a9771948SGleb Smirnoff 		 *  If the master is going to advertise at such a low frequency
760a9771948SGleb Smirnoff 		 *  that he's guaranteed to time out, we'd might as well just
761a9771948SGleb Smirnoff 		 *  treat him as timed out now.
762a9771948SGleb Smirnoff 		 */
763a9771948SGleb Smirnoff 		sc_tv.tv_sec = sc->sc_advbase * 3;
764a9771948SGleb Smirnoff 		if (timevalcmp(&sc_tv, &ch_tv, <)) {
765d01641e2SWill Andrews 			carp_master_down_locked(sc, "master will time out");
766a9771948SGleb Smirnoff 			break;
767a9771948SGleb Smirnoff 		}
768a9771948SGleb Smirnoff 
769a9771948SGleb Smirnoff 		/*
770a9771948SGleb Smirnoff 		 * Otherwise, we reset the counter and wait for the next
771a9771948SGleb Smirnoff 		 * advertisement.
772a9771948SGleb Smirnoff 		 */
773a9771948SGleb Smirnoff 		carp_setrun(sc, af);
774a9771948SGleb Smirnoff 		break;
775a9771948SGleb Smirnoff 	}
776a9771948SGleb Smirnoff 
77708b68b0eSGleb Smirnoff out:
77808b68b0eSGleb Smirnoff 	CARP_UNLOCK(sc);
779a9771948SGleb Smirnoff 	m_freem(m);
780a9771948SGleb Smirnoff }
781a9771948SGleb Smirnoff 
7825c1f0f6dSGleb Smirnoff static int
783a9771948SGleb Smirnoff carp_prepare_ad(struct mbuf *m, struct carp_softc *sc, struct carp_header *ch)
784a9771948SGleb Smirnoff {
785a9771948SGleb Smirnoff 	struct m_tag *mtag;
786a9771948SGleb Smirnoff 
787a9771948SGleb Smirnoff 	if (sc->sc_init_counter) {
788a9771948SGleb Smirnoff 		/* this could also be seconds since unix epoch */
789a9771948SGleb Smirnoff 		sc->sc_counter = arc4random();
790a9771948SGleb Smirnoff 		sc->sc_counter = sc->sc_counter << 32;
791a9771948SGleb Smirnoff 		sc->sc_counter += arc4random();
792a9771948SGleb Smirnoff 	} else
793a9771948SGleb Smirnoff 		sc->sc_counter++;
794a9771948SGleb Smirnoff 
795a9771948SGleb Smirnoff 	ch->carp_counter[0] = htonl((sc->sc_counter>>32)&0xffffffff);
796a9771948SGleb Smirnoff 	ch->carp_counter[1] = htonl(sc->sc_counter&0xffffffff);
797a9771948SGleb Smirnoff 
798a9771948SGleb Smirnoff 	carp_hmac_generate(sc, ch->carp_counter, ch->carp_md);
799a9771948SGleb Smirnoff 
800a9771948SGleb Smirnoff 	/* Tag packet for carp_output */
80108b68b0eSGleb Smirnoff 	if ((mtag = m_tag_get(PACKET_TAG_CARP, sizeof(struct carp_softc *),
80208b68b0eSGleb Smirnoff 	    M_NOWAIT)) == NULL) {
803a9771948SGleb Smirnoff 		m_freem(m);
80408b68b0eSGleb Smirnoff 		CARPSTATS_INC(carps_onomem);
805a9771948SGleb Smirnoff 		return (ENOMEM);
806a9771948SGleb Smirnoff 	}
807eaf151c4SGleb Smirnoff 	bcopy(&sc, mtag + 1, sizeof(sc));
808a9771948SGleb Smirnoff 	m_tag_prepend(m, mtag);
809a9771948SGleb Smirnoff 
810a9771948SGleb Smirnoff 	return (0);
811a9771948SGleb Smirnoff }
812a9771948SGleb Smirnoff 
813f08535f8SGleb Smirnoff /*
814f08535f8SGleb Smirnoff  * To avoid LORs and possible recursions this function shouldn't
815f08535f8SGleb Smirnoff  * be called directly, but scheduled via taskqueue.
816f08535f8SGleb Smirnoff  */
8175c1f0f6dSGleb Smirnoff static void
818f08535f8SGleb Smirnoff carp_send_ad_all(void *ctx __unused, int pending __unused)
819a9771948SGleb Smirnoff {
820d92d54d5SGleb Smirnoff 	struct carp_softc *sc;
8211d126e9bSKristof Provost 	struct epoch_tracker et;
822a9771948SGleb Smirnoff 
8231d126e9bSKristof Provost 	NET_EPOCH_ENTER(et);
824d92d54d5SGleb Smirnoff 	mtx_lock(&carp_mtx);
82508b68b0eSGleb Smirnoff 	LIST_FOREACH(sc, &carp_list, sc_next)
826f08535f8SGleb Smirnoff 		if (sc->sc_state == MASTER) {
82708b68b0eSGleb Smirnoff 			CARP_LOCK(sc);
828afdbac98SGleb Smirnoff 			CURVNET_SET(sc->sc_carpdev->if_vnet);
829d220759bSGleb Smirnoff 			carp_send_ad_locked(sc);
830afdbac98SGleb Smirnoff 			CURVNET_RESTORE();
83108b68b0eSGleb Smirnoff 			CARP_UNLOCK(sc);
832a9771948SGleb Smirnoff 		}
833d92d54d5SGleb Smirnoff 	mtx_unlock(&carp_mtx);
8341d126e9bSKristof Provost 	NET_EPOCH_EXIT(et);
835a9771948SGleb Smirnoff }
836a9771948SGleb Smirnoff 
837afdbac98SGleb Smirnoff /* Send a periodic advertisement, executed in callout context. */
8385c1f0f6dSGleb Smirnoff static void
839a9771948SGleb Smirnoff carp_send_ad(void *v)
840a9771948SGleb Smirnoff {
841d220759bSGleb Smirnoff 	struct carp_softc *sc = v;
8421d126e9bSKristof Provost 	struct epoch_tracker et;
843d220759bSGleb Smirnoff 
8441d126e9bSKristof Provost 	NET_EPOCH_ENTER(et);
84508b68b0eSGleb Smirnoff 	CARP_LOCK_ASSERT(sc);
846afdbac98SGleb Smirnoff 	CURVNET_SET(sc->sc_carpdev->if_vnet);
847d220759bSGleb Smirnoff 	carp_send_ad_locked(sc);
848afdbac98SGleb Smirnoff 	CURVNET_RESTORE();
84908b68b0eSGleb Smirnoff 	CARP_UNLOCK(sc);
8501d126e9bSKristof Provost 	NET_EPOCH_EXIT(et);
851d220759bSGleb Smirnoff }
852d220759bSGleb Smirnoff 
853d220759bSGleb Smirnoff static void
8544a2dd8d4SGleb Smirnoff carp_send_ad_error(struct carp_softc *sc, int error)
8554a2dd8d4SGleb Smirnoff {
8564a2dd8d4SGleb Smirnoff 
857*9a8cf950SGleb Smirnoff 	/*
858*9a8cf950SGleb Smirnoff 	 * We track errors and successfull sends with this logic:
859*9a8cf950SGleb Smirnoff 	 * - Any error resets success counter to 0.
860*9a8cf950SGleb Smirnoff 	 * - MAX_ERRORS triggers demotion.
861*9a8cf950SGleb Smirnoff 	 * - MIN_SUCCESS successes resets error counter to 0.
862*9a8cf950SGleb Smirnoff 	 * - MIN_SUCCESS reverts demotion, if it was triggered before.
863*9a8cf950SGleb Smirnoff 	 */
8644a2dd8d4SGleb Smirnoff 	if (error) {
8654a2dd8d4SGleb Smirnoff 		if (sc->sc_sendad_errors < INT_MAX)
8664a2dd8d4SGleb Smirnoff 			sc->sc_sendad_errors++;
8674a2dd8d4SGleb Smirnoff 		if (sc->sc_sendad_errors == CARP_SENDAD_MAX_ERRORS) {
8684a2dd8d4SGleb Smirnoff 			static const char fmt[] = "send error %d on %s";
8694a2dd8d4SGleb Smirnoff 			char msg[sizeof(fmt) + IFNAMSIZ];
8704a2dd8d4SGleb Smirnoff 
8714a2dd8d4SGleb Smirnoff 			sprintf(msg, fmt, error, sc->sc_carpdev->if_xname);
8724a2dd8d4SGleb Smirnoff 			carp_demote_adj(V_carp_senderr_adj, msg);
8734a2dd8d4SGleb Smirnoff 		}
8744a2dd8d4SGleb Smirnoff 		sc->sc_sendad_success = 0;
875*9a8cf950SGleb Smirnoff 	} else if (sc->sc_sendad_errors > 0) {
876*9a8cf950SGleb Smirnoff 		if (++sc->sc_sendad_success >= CARP_SENDAD_MIN_SUCCESS) {
877*9a8cf950SGleb Smirnoff 			if (sc->sc_sendad_errors >= CARP_SENDAD_MAX_ERRORS) {
8784a2dd8d4SGleb Smirnoff 				static const char fmt[] = "send ok on %s";
8794a2dd8d4SGleb Smirnoff 				char msg[sizeof(fmt) + IFNAMSIZ];
8804a2dd8d4SGleb Smirnoff 
8814a2dd8d4SGleb Smirnoff 				sprintf(msg, fmt, sc->sc_carpdev->if_xname);
8824a2dd8d4SGleb Smirnoff 				carp_demote_adj(-V_carp_senderr_adj, msg);
883*9a8cf950SGleb Smirnoff 			}
8844a2dd8d4SGleb Smirnoff 			sc->sc_sendad_errors = 0;
885*9a8cf950SGleb Smirnoff 		}
8864a2dd8d4SGleb Smirnoff 	}
8874a2dd8d4SGleb Smirnoff }
8884a2dd8d4SGleb Smirnoff 
8898151740cSJosh Paetzel /*
8908151740cSJosh Paetzel  * Pick the best ifaddr on the given ifp for sending CARP
8918151740cSJosh Paetzel  * advertisements.
8928151740cSJosh Paetzel  *
8938151740cSJosh Paetzel  * "Best" here is defined by ifa_preferred().  This function is much
8948151740cSJosh Paetzel  * much like ifaof_ifpforaddr() except that we just use ifa_preferred().
8958151740cSJosh Paetzel  *
8968151740cSJosh Paetzel  * (This could be simplified to return the actual address, except that
8978151740cSJosh Paetzel  * it has a different format in AF_INET and AF_INET6.)
8988151740cSJosh Paetzel  */
8998151740cSJosh Paetzel static struct ifaddr *
9008151740cSJosh Paetzel carp_best_ifa(int af, struct ifnet *ifp)
9018151740cSJosh Paetzel {
9028151740cSJosh Paetzel 	struct ifaddr *ifa, *best;
9038151740cSJosh Paetzel 
904b8a6e03fSGleb Smirnoff 	NET_EPOCH_ASSERT();
905b8a6e03fSGleb Smirnoff 
9068151740cSJosh Paetzel 	if (af >= AF_MAX)
9078151740cSJosh Paetzel 		return (NULL);
9088151740cSJosh Paetzel 	best = NULL;
909d7c5a620SMatt Macy 	CK_STAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) {
9108151740cSJosh Paetzel 		if (ifa->ifa_addr->sa_family == af &&
9118151740cSJosh Paetzel 		    (best == NULL || ifa_preferred(best, ifa)))
9128151740cSJosh Paetzel 			best = ifa;
9138151740cSJosh Paetzel 	}
9148151740cSJosh Paetzel 	if (best != NULL)
9158151740cSJosh Paetzel 		ifa_ref(best);
9168151740cSJosh Paetzel 	return (best);
9178151740cSJosh Paetzel }
9188151740cSJosh Paetzel 
9194a2dd8d4SGleb Smirnoff static void
920d220759bSGleb Smirnoff carp_send_ad_locked(struct carp_softc *sc)
921d220759bSGleb Smirnoff {
922a9771948SGleb Smirnoff 	struct carp_header ch;
923a9771948SGleb Smirnoff 	struct timeval tv;
92408b68b0eSGleb Smirnoff 	struct ifaddr *ifa;
925a9771948SGleb Smirnoff 	struct carp_header *ch_ptr;
926a9771948SGleb Smirnoff 	struct mbuf *m;
92708b68b0eSGleb Smirnoff 	int len, advskew;
928a9771948SGleb Smirnoff 
9291d126e9bSKristof Provost 	NET_EPOCH_ASSERT();
93008b68b0eSGleb Smirnoff 	CARP_LOCK_ASSERT(sc);
931d220759bSGleb Smirnoff 
932f08535f8SGleb Smirnoff 	advskew = DEMOTE_ADVSKEW(sc);
93308b68b0eSGleb Smirnoff 	tv.tv_sec = sc->sc_advbase;
934a9771948SGleb Smirnoff 	tv.tv_usec = advskew * 1000000 / 256;
935a9771948SGleb Smirnoff 
936a9771948SGleb Smirnoff 	ch.carp_version = CARP_VERSION;
937a9771948SGleb Smirnoff 	ch.carp_type = CARP_ADVERTISEMENT;
938a9771948SGleb Smirnoff 	ch.carp_vhid = sc->sc_vhid;
93908b68b0eSGleb Smirnoff 	ch.carp_advbase = sc->sc_advbase;
940a9771948SGleb Smirnoff 	ch.carp_advskew = advskew;
941a9771948SGleb Smirnoff 	ch.carp_authlen = 7;	/* XXX DEFINE */
942a9771948SGleb Smirnoff 	ch.carp_pad1 = 0;	/* must be zero */
943a9771948SGleb Smirnoff 	ch.carp_cksum = 0;
944a9771948SGleb Smirnoff 
94508b68b0eSGleb Smirnoff 	/* XXXGL: OpenBSD picks first ifaddr with needed family. */
94608b68b0eSGleb Smirnoff 
947a9771948SGleb Smirnoff #ifdef INET
94808b68b0eSGleb Smirnoff 	if (sc->sc_naddrs) {
949a9771948SGleb Smirnoff 		struct ip *ip;
950a9771948SGleb Smirnoff 
951dc4ad05eSGleb Smirnoff 		m = m_gethdr(M_NOWAIT, MT_DATA);
952a9771948SGleb Smirnoff 		if (m == NULL) {
9536bf65bcfSRobert Watson 			CARPSTATS_INC(carps_onomem);
954891122d1SGleb Smirnoff 			goto resched;
955a9771948SGleb Smirnoff 		}
956a9771948SGleb Smirnoff 		len = sizeof(*ip) + sizeof(ch);
957a9771948SGleb Smirnoff 		m->m_pkthdr.len = len;
958a9771948SGleb Smirnoff 		m->m_pkthdr.rcvif = NULL;
959a9771948SGleb Smirnoff 		m->m_len = len;
960ed6a66caSRobert Watson 		M_ALIGN(m, m->m_len);
961a9771948SGleb Smirnoff 		m->m_flags |= M_MCAST;
962a9771948SGleb Smirnoff 		ip = mtod(m, struct ip *);
963a9771948SGleb Smirnoff 		ip->ip_v = IPVERSION;
964a9771948SGleb Smirnoff 		ip->ip_hl = sizeof(*ip) >> 2;
9650d3d234cSKristof Provost 		ip->ip_tos = V_carp_dscp << IPTOS_DSCP_OFFSET;
9668f134647SGleb Smirnoff 		ip->ip_len = htons(len);
9678f134647SGleb Smirnoff 		ip->ip_off = htons(IP_DF);
968a9771948SGleb Smirnoff 		ip->ip_ttl = CARP_DFLTTL;
969a9771948SGleb Smirnoff 		ip->ip_p = IPPROTO_CARP;
970a9771948SGleb Smirnoff 		ip->ip_sum = 0;
9716d947416SGleb Smirnoff 		ip_fillid(ip);
97208b68b0eSGleb Smirnoff 
9738151740cSJosh Paetzel 		ifa = carp_best_ifa(AF_INET, sc->sc_carpdev);
97408b68b0eSGleb Smirnoff 		if (ifa != NULL) {
97508b68b0eSGleb Smirnoff 			ip->ip_src.s_addr =
97608b68b0eSGleb Smirnoff 			    ifatoia(ifa)->ia_addr.sin_addr.s_addr;
97708b68b0eSGleb Smirnoff 			ifa_free(ifa);
97808b68b0eSGleb Smirnoff 		} else
97908b68b0eSGleb Smirnoff 			ip->ip_src.s_addr = 0;
980a9771948SGleb Smirnoff 		ip->ip_dst.s_addr = htonl(INADDR_CARP_GROUP);
981a9771948SGleb Smirnoff 
982a9771948SGleb Smirnoff 		ch_ptr = (struct carp_header *)(&ip[1]);
983a9771948SGleb Smirnoff 		bcopy(&ch, ch_ptr, sizeof(ch));
984a9771948SGleb Smirnoff 		if (carp_prepare_ad(m, sc, ch_ptr))
985891122d1SGleb Smirnoff 			goto resched;
986a9771948SGleb Smirnoff 
987a9771948SGleb Smirnoff 		m->m_data += sizeof(*ip);
988c4d06976SGleb Smirnoff 		ch_ptr->carp_cksum = in_cksum(m, len - sizeof(*ip));
989a9771948SGleb Smirnoff 		m->m_data -= sizeof(*ip);
990a9771948SGleb Smirnoff 
9916bf65bcfSRobert Watson 		CARPSTATS_INC(carps_opackets);
992a9771948SGleb Smirnoff 
9934a2dd8d4SGleb Smirnoff 		carp_send_ad_error(sc, ip_output(m, NULL, NULL, IP_RAWOUTPUT,
9944a2dd8d4SGleb Smirnoff 		    &sc->sc_carpdev->if_carp->cif_imo, NULL));
995a9771948SGleb Smirnoff 	}
996a9771948SGleb Smirnoff #endif /* INET */
997a9771948SGleb Smirnoff #ifdef INET6
99808b68b0eSGleb Smirnoff 	if (sc->sc_naddrs6) {
999a9771948SGleb Smirnoff 		struct ip6_hdr *ip6;
1000a9771948SGleb Smirnoff 
1001dc4ad05eSGleb Smirnoff 		m = m_gethdr(M_NOWAIT, MT_DATA);
1002a9771948SGleb Smirnoff 		if (m == NULL) {
10036bf65bcfSRobert Watson 			CARPSTATS_INC(carps_onomem);
1004891122d1SGleb Smirnoff 			goto resched;
1005a9771948SGleb Smirnoff 		}
1006a9771948SGleb Smirnoff 		len = sizeof(*ip6) + sizeof(ch);
1007a9771948SGleb Smirnoff 		m->m_pkthdr.len = len;
1008a9771948SGleb Smirnoff 		m->m_pkthdr.rcvif = NULL;
1009a9771948SGleb Smirnoff 		m->m_len = len;
1010ed6a66caSRobert Watson 		M_ALIGN(m, m->m_len);
1011a9771948SGleb Smirnoff 		m->m_flags |= M_MCAST;
1012a9771948SGleb Smirnoff 		ip6 = mtod(m, struct ip6_hdr *);
1013a9771948SGleb Smirnoff 		bzero(ip6, sizeof(*ip6));
1014a9771948SGleb Smirnoff 		ip6->ip6_vfc |= IPV6_VERSION;
10150d3d234cSKristof Provost 		/* Traffic class isn't defined in ip6 struct instead
10160d3d234cSKristof Provost 		 * it gets offset into flowid field */
10170d3d234cSKristof Provost 		ip6->ip6_flow |= htonl(V_carp_dscp << (IPV6_FLOWLABEL_LEN +
10180d3d234cSKristof Provost 		    IPTOS_DSCP_OFFSET));
1019a9771948SGleb Smirnoff 		ip6->ip6_hlim = CARP_DFLTTL;
1020a9771948SGleb Smirnoff 		ip6->ip6_nxt = IPPROTO_CARP;
1021a9771948SGleb Smirnoff 
102208b68b0eSGleb Smirnoff 		/* set the source address */
10238151740cSJosh Paetzel 		ifa = carp_best_ifa(AF_INET6, sc->sc_carpdev);
102408b68b0eSGleb Smirnoff 		if (ifa != NULL) {
102508b68b0eSGleb Smirnoff 			bcopy(IFA_IN6(ifa), &ip6->ip6_src,
102608b68b0eSGleb Smirnoff 			    sizeof(struct in6_addr));
102708b68b0eSGleb Smirnoff 			ifa_free(ifa);
102808b68b0eSGleb Smirnoff 		} else
102908b68b0eSGleb Smirnoff 			/* This should never happen with IPv6. */
103008b68b0eSGleb Smirnoff 			bzero(&ip6->ip6_src, sizeof(struct in6_addr));
103108b68b0eSGleb Smirnoff 
103208b68b0eSGleb Smirnoff 		/* Set the multicast destination. */
10337002145dSBjoern A. Zeeb 		ip6->ip6_dst.s6_addr16[0] = htons(0xff02);
1034a9771948SGleb Smirnoff 		ip6->ip6_dst.s6_addr8[15] = 0x12;
10357002145dSBjoern A. Zeeb 		if (in6_setscope(&ip6->ip6_dst, sc->sc_carpdev, NULL) != 0) {
10367002145dSBjoern A. Zeeb 			m_freem(m);
1037e81ab876SGleb Smirnoff 			CARP_DEBUG("%s: in6_setscope failed\n", __func__);
1038891122d1SGleb Smirnoff 			goto resched;
10397002145dSBjoern A. Zeeb 		}
1040a9771948SGleb Smirnoff 
1041a9771948SGleb Smirnoff 		ch_ptr = (struct carp_header *)(&ip6[1]);
1042a9771948SGleb Smirnoff 		bcopy(&ch, ch_ptr, sizeof(ch));
1043a9771948SGleb Smirnoff 		if (carp_prepare_ad(m, sc, ch_ptr))
1044891122d1SGleb Smirnoff 			goto resched;
1045a9771948SGleb Smirnoff 
1046a9771948SGleb Smirnoff 		m->m_data += sizeof(*ip6);
1047c4d06976SGleb Smirnoff 		ch_ptr->carp_cksum = in_cksum(m, len - sizeof(*ip6));
1048a9771948SGleb Smirnoff 		m->m_data -= sizeof(*ip6);
1049a9771948SGleb Smirnoff 
10506bf65bcfSRobert Watson 		CARPSTATS_INC(carps_opackets6);
1051a9771948SGleb Smirnoff 
10524a2dd8d4SGleb Smirnoff 		carp_send_ad_error(sc, ip6_output(m, NULL, NULL, 0,
10534a2dd8d4SGleb Smirnoff 		    &sc->sc_carpdev->if_carp->cif_im6o, NULL, NULL));
1054a9771948SGleb Smirnoff 	}
1055a9771948SGleb Smirnoff #endif /* INET6 */
1056a9771948SGleb Smirnoff 
1057891122d1SGleb Smirnoff resched:
105808b68b0eSGleb Smirnoff 	callout_reset(&sc->sc_ad_tmo, tvtohz(&tv), carp_send_ad, sc);
105908b68b0eSGleb Smirnoff }
1060a9771948SGleb Smirnoff 
106108b68b0eSGleb Smirnoff static void
106208b68b0eSGleb Smirnoff carp_addroute(struct carp_softc *sc)
106308b68b0eSGleb Smirnoff {
106408b68b0eSGleb Smirnoff 	struct ifaddr *ifa;
106508b68b0eSGleb Smirnoff 
106608b68b0eSGleb Smirnoff 	CARP_FOREACH_IFA(sc, ifa)
10672512b096SGleb Smirnoff 		carp_ifa_addroute(ifa);
10682512b096SGleb Smirnoff }
10692512b096SGleb Smirnoff 
10702512b096SGleb Smirnoff static void
10712512b096SGleb Smirnoff carp_ifa_addroute(struct ifaddr *ifa)
10722512b096SGleb Smirnoff {
10732512b096SGleb Smirnoff 
107408b68b0eSGleb Smirnoff 	switch (ifa->ifa_addr->sa_family) {
107508b68b0eSGleb Smirnoff #ifdef INET
107608b68b0eSGleb Smirnoff 	case AF_INET:
1077130aebbaSAlexander V. Chernikov 		in_addprefix(ifatoia(ifa));
107808b68b0eSGleb Smirnoff 		ifa_add_loopback_route(ifa,
107908b68b0eSGleb Smirnoff 		    (struct sockaddr *)&ifatoia(ifa)->ia_addr);
108008b68b0eSGleb Smirnoff 		break;
108108b68b0eSGleb Smirnoff #endif
108208b68b0eSGleb Smirnoff #ifdef INET6
108308b68b0eSGleb Smirnoff 	case AF_INET6:
108408b68b0eSGleb Smirnoff 		ifa_add_loopback_route(ifa,
108508b68b0eSGleb Smirnoff 		    (struct sockaddr *)&ifatoia6(ifa)->ia_addr);
1086f6b84910SAlexander V. Chernikov 		nd6_add_ifa_lle(ifatoia6(ifa));
108708b68b0eSGleb Smirnoff 		break;
108808b68b0eSGleb Smirnoff #endif
108908b68b0eSGleb Smirnoff 	}
109008b68b0eSGleb Smirnoff }
109108b68b0eSGleb Smirnoff 
109208b68b0eSGleb Smirnoff static void
109308b68b0eSGleb Smirnoff carp_delroute(struct carp_softc *sc)
109408b68b0eSGleb Smirnoff {
109508b68b0eSGleb Smirnoff 	struct ifaddr *ifa;
109608b68b0eSGleb Smirnoff 
109708b68b0eSGleb Smirnoff 	CARP_FOREACH_IFA(sc, ifa)
10982512b096SGleb Smirnoff 		carp_ifa_delroute(ifa);
10992512b096SGleb Smirnoff }
11002512b096SGleb Smirnoff 
11012512b096SGleb Smirnoff static void
11022512b096SGleb Smirnoff carp_ifa_delroute(struct ifaddr *ifa)
11032512b096SGleb Smirnoff {
11042512b096SGleb Smirnoff 
110508b68b0eSGleb Smirnoff 	switch (ifa->ifa_addr->sa_family) {
110608b68b0eSGleb Smirnoff #ifdef INET
110708b68b0eSGleb Smirnoff 	case AF_INET:
110808b68b0eSGleb Smirnoff 		ifa_del_loopback_route(ifa,
110908b68b0eSGleb Smirnoff 		    (struct sockaddr *)&ifatoia(ifa)->ia_addr);
111008b68b0eSGleb Smirnoff 		in_scrubprefix(ifatoia(ifa), LLE_STATIC);
111108b68b0eSGleb Smirnoff 		break;
111208b68b0eSGleb Smirnoff #endif
111308b68b0eSGleb Smirnoff #ifdef INET6
111408b68b0eSGleb Smirnoff 	case AF_INET6:
111508b68b0eSGleb Smirnoff 		ifa_del_loopback_route(ifa,
111608b68b0eSGleb Smirnoff 		    (struct sockaddr *)&ifatoia6(ifa)->ia_addr);
11173e7a2321SAlexander V. Chernikov 		nd6_rem_ifa_lle(ifatoia6(ifa), 1);
111808b68b0eSGleb Smirnoff 		break;
111908b68b0eSGleb Smirnoff #endif
112008b68b0eSGleb Smirnoff 	}
1121a9771948SGleb Smirnoff }
1122a9771948SGleb Smirnoff 
112324421c1cSGleb Smirnoff int
112424421c1cSGleb Smirnoff carp_master(struct ifaddr *ifa)
112524421c1cSGleb Smirnoff {
112624421c1cSGleb Smirnoff 	struct carp_softc *sc = ifa->ifa_carp;
112724421c1cSGleb Smirnoff 
112824421c1cSGleb Smirnoff 	return (sc->sc_state == MASTER);
112924421c1cSGleb Smirnoff }
113024421c1cSGleb Smirnoff 
1131a0ae8f04SBjoern A. Zeeb #ifdef INET
1132a9771948SGleb Smirnoff /*
1133a9771948SGleb Smirnoff  * Broadcast a gratuitous ARP request containing
1134a9771948SGleb Smirnoff  * the virtual router MAC address for each IP address
1135a9771948SGleb Smirnoff  * associated with the virtual router.
1136a9771948SGleb Smirnoff  */
11375c1f0f6dSGleb Smirnoff static void
1138a9771948SGleb Smirnoff carp_send_arp(struct carp_softc *sc)
1139a9771948SGleb Smirnoff {
1140a9771948SGleb Smirnoff 	struct ifaddr *ifa;
1141d6e82913SSteven Hartland 	struct in_addr addr;
1142a9771948SGleb Smirnoff 
11431d126e9bSKristof Provost 	NET_EPOCH_ASSERT();
11441d126e9bSKristof Provost 
11451c302b58SAlexander V. Chernikov 	CARP_FOREACH_IFA(sc, ifa) {
11461c302b58SAlexander V. Chernikov 		if (ifa->ifa_addr->sa_family != AF_INET)
11471c302b58SAlexander V. Chernikov 			continue;
1148d6e82913SSteven Hartland 		addr = ((struct sockaddr_in *)ifa->ifa_addr)->sin_addr;
1149d6e82913SSteven Hartland 		arp_announce_ifaddr(sc->sc_carpdev, addr, LLADDR(&sc->sc_addr));
11501c302b58SAlexander V. Chernikov 	}
1151a9771948SGleb Smirnoff }
115208b68b0eSGleb Smirnoff 
115308b68b0eSGleb Smirnoff int
115408b68b0eSGleb Smirnoff carp_iamatch(struct ifaddr *ifa, uint8_t **enaddr)
115508b68b0eSGleb Smirnoff {
115608b68b0eSGleb Smirnoff 	struct carp_softc *sc = ifa->ifa_carp;
115708b68b0eSGleb Smirnoff 
115808b68b0eSGleb Smirnoff 	if (sc->sc_state == MASTER) {
115908b68b0eSGleb Smirnoff 		*enaddr = LLADDR(&sc->sc_addr);
116008b68b0eSGleb Smirnoff 		return (1);
116108b68b0eSGleb Smirnoff 	}
116208b68b0eSGleb Smirnoff 
116308b68b0eSGleb Smirnoff 	return (0);
1164a9771948SGleb Smirnoff }
1165a0ae8f04SBjoern A. Zeeb #endif
1166a9771948SGleb Smirnoff 
1167a9771948SGleb Smirnoff #ifdef INET6
11685c1f0f6dSGleb Smirnoff static void
1169a9771948SGleb Smirnoff carp_send_na(struct carp_softc *sc)
1170a9771948SGleb Smirnoff {
1171d6e82913SSteven Hartland 	static struct in6_addr mcast = IN6ADDR_LINKLOCAL_ALLNODES_INIT;
1172a9771948SGleb Smirnoff 	struct ifaddr *ifa;
1173d6e82913SSteven Hartland 	struct in6_addr *in6;
1174a9771948SGleb Smirnoff 
117508b68b0eSGleb Smirnoff 	CARP_FOREACH_IFA(sc, ifa) {
1176d6e82913SSteven Hartland 		if (ifa->ifa_addr->sa_family != AF_INET6)
1177a9771948SGleb Smirnoff 			continue;
1178a9771948SGleb Smirnoff 
1179d6e82913SSteven Hartland 		in6 = IFA_IN6(ifa);
1180d6e82913SSteven Hartland 		nd6_na_output(sc->sc_carpdev, &mcast, in6,
1181d6e82913SSteven Hartland 		    ND_NA_FLAG_OVERRIDE, 1, NULL);
1182d6e82913SSteven Hartland 		DELAY(1000);	/* XXX */
1183a9771948SGleb Smirnoff 	}
1184a9771948SGleb Smirnoff }
1185a9771948SGleb Smirnoff 
11868253dcabSBjoern A. Zeeb /*
11878253dcabSBjoern A. Zeeb  * Returns ifa in case it's a carp address and it is MASTER, or if the address
11888253dcabSBjoern A. Zeeb  * matches and is not a carp address.  Returns NULL otherwise.
11898253dcabSBjoern A. Zeeb  */
1190a4e53905SMax Laier struct ifaddr *
119154bfbd51SWill Andrews carp_iamatch6(struct ifnet *ifp, struct in6_addr *taddr)
1192a9771948SGleb Smirnoff {
1193a9771948SGleb Smirnoff 	struct ifaddr *ifa;
1194a9771948SGleb Smirnoff 
1195b8a6e03fSGleb Smirnoff 	NET_EPOCH_ASSERT();
1196b8a6e03fSGleb Smirnoff 
11978253dcabSBjoern A. Zeeb 	ifa = NULL;
1198d7c5a620SMatt Macy 	CK_STAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) {
11998253dcabSBjoern A. Zeeb 		if (ifa->ifa_addr->sa_family != AF_INET6)
12008253dcabSBjoern A. Zeeb 			continue;
12018253dcabSBjoern A. Zeeb 		if (!IN6_ARE_ADDR_EQUAL(taddr, IFA_IN6(ifa)))
12028253dcabSBjoern A. Zeeb 			continue;
12038253dcabSBjoern A. Zeeb 		if (ifa->ifa_carp && ifa->ifa_carp->sc_state != MASTER)
12048253dcabSBjoern A. Zeeb 			ifa = NULL;
12058253dcabSBjoern A. Zeeb 		else
12068c0fec80SRobert Watson 			ifa_ref(ifa);
12078253dcabSBjoern A. Zeeb 		break;
1208a9771948SGleb Smirnoff 	}
1209a9771948SGleb Smirnoff 
12108253dcabSBjoern A. Zeeb 	return (ifa);
1211a9771948SGleb Smirnoff }
1212a9771948SGleb Smirnoff 
1213dad68fc3SBjoern A. Zeeb char *
121454bfbd51SWill Andrews carp_macmatch6(struct ifnet *ifp, struct mbuf *m, const struct in6_addr *taddr)
1215a9771948SGleb Smirnoff {
1216a9771948SGleb Smirnoff 	struct ifaddr *ifa;
1217a9771948SGleb Smirnoff 
1218b8a6e03fSGleb Smirnoff 	NET_EPOCH_ASSERT();
1219b8a6e03fSGleb Smirnoff 
122008b68b0eSGleb Smirnoff 	IFNET_FOREACH_IFA(ifp, ifa)
122108b68b0eSGleb Smirnoff 		if (ifa->ifa_addr->sa_family == AF_INET6 &&
122208b68b0eSGleb Smirnoff 		    IN6_ARE_ADDR_EQUAL(taddr, IFA_IN6(ifa))) {
122308b68b0eSGleb Smirnoff 			struct carp_softc *sc = ifa->ifa_carp;
122408b68b0eSGleb Smirnoff 			struct m_tag *mtag;
122508b68b0eSGleb Smirnoff 
1226a9771948SGleb Smirnoff 			mtag = m_tag_get(PACKET_TAG_CARP,
1227a856ddc6SGleb Smirnoff 			    sizeof(struct carp_softc *), M_NOWAIT);
122808b68b0eSGleb Smirnoff 			if (mtag == NULL)
122908b68b0eSGleb Smirnoff 				/* Better a bit than nothing. */
123008b68b0eSGleb Smirnoff 				return (LLADDR(&sc->sc_addr));
123108b68b0eSGleb Smirnoff 
1232eaf151c4SGleb Smirnoff 			bcopy(&sc, mtag + 1, sizeof(sc));
1233a9771948SGleb Smirnoff 			m_tag_prepend(m, mtag);
1234a9771948SGleb Smirnoff 
123508b68b0eSGleb Smirnoff 			return (LLADDR(&sc->sc_addr));
1236a9771948SGleb Smirnoff 		}
1237a9771948SGleb Smirnoff 
1238a9771948SGleb Smirnoff 	return (NULL);
1239a9771948SGleb Smirnoff }
124008b68b0eSGleb Smirnoff #endif /* INET6 */
1241a9771948SGleb Smirnoff 
124208b68b0eSGleb Smirnoff int
124354bfbd51SWill Andrews carp_forus(struct ifnet *ifp, u_char *dhost)
1244a9771948SGleb Smirnoff {
124508b68b0eSGleb Smirnoff 	struct carp_softc *sc;
124608b68b0eSGleb Smirnoff 	uint8_t *ena = dhost;
1247a9771948SGleb Smirnoff 
1248a9771948SGleb Smirnoff 	if (ena[0] || ena[1] || ena[2] != 0x5e || ena[3] || ena[4] != 1)
124908b68b0eSGleb Smirnoff 		return (0);
1250a9771948SGleb Smirnoff 
125108b68b0eSGleb Smirnoff 	CIF_LOCK(ifp->if_carp);
125208b68b0eSGleb Smirnoff 	IFNET_FOREACH_CARP(ifp, sc) {
12538c3fbf3cSAlexander Motin 		/*
12548c3fbf3cSAlexander Motin 		 * CARP_LOCK() is not here, since would protect nothing, but
12558c3fbf3cSAlexander Motin 		 * cause deadlock with if_bridge, calling this under its lock.
12568c3fbf3cSAlexander Motin 		 */
125708b68b0eSGleb Smirnoff 		if (sc->sc_state == MASTER && !bcmp(dhost, LLADDR(&sc->sc_addr),
125808b68b0eSGleb Smirnoff 		    ETHER_ADDR_LEN)) {
125908b68b0eSGleb Smirnoff 			CIF_UNLOCK(ifp->if_carp);
126008b68b0eSGleb Smirnoff 			return (1);
1261a9771948SGleb Smirnoff 		}
126208b68b0eSGleb Smirnoff 	}
126308b68b0eSGleb Smirnoff 	CIF_UNLOCK(ifp->if_carp);
1264a9771948SGleb Smirnoff 
126508b68b0eSGleb Smirnoff 	return (0);
1266a9771948SGleb Smirnoff }
1267a9771948SGleb Smirnoff 
1268afdbac98SGleb Smirnoff /* Master down timeout event, executed in callout context. */
12695c1f0f6dSGleb Smirnoff static void
1270a9771948SGleb Smirnoff carp_master_down(void *v)
1271a9771948SGleb Smirnoff {
1272a9771948SGleb Smirnoff 	struct carp_softc *sc = v;
12731d126e9bSKristof Provost 	struct epoch_tracker et;
1274a9771948SGleb Smirnoff 
12751d126e9bSKristof Provost 	NET_EPOCH_ENTER(et);
127608b68b0eSGleb Smirnoff 	CARP_LOCK_ASSERT(sc);
127708b68b0eSGleb Smirnoff 
1278afdbac98SGleb Smirnoff 	CURVNET_SET(sc->sc_carpdev->if_vnet);
127908b68b0eSGleb Smirnoff 	if (sc->sc_state == BACKUP) {
1280d01641e2SWill Andrews 		carp_master_down_locked(sc, "master timed out");
128108b68b0eSGleb Smirnoff 	}
1282afdbac98SGleb Smirnoff 	CURVNET_RESTORE();
128308b68b0eSGleb Smirnoff 
128408b68b0eSGleb Smirnoff 	CARP_UNLOCK(sc);
12851d126e9bSKristof Provost 	NET_EPOCH_EXIT(et);
1286d220759bSGleb Smirnoff }
1287d220759bSGleb Smirnoff 
1288d220759bSGleb Smirnoff static void
1289d01641e2SWill Andrews carp_master_down_locked(struct carp_softc *sc, const char *reason)
1290d220759bSGleb Smirnoff {
129108b68b0eSGleb Smirnoff 
12921d126e9bSKristof Provost 	NET_EPOCH_ASSERT();
129308b68b0eSGleb Smirnoff 	CARP_LOCK_ASSERT(sc);
1294d220759bSGleb Smirnoff 
1295a9771948SGleb Smirnoff 	switch (sc->sc_state) {
1296a9771948SGleb Smirnoff 	case BACKUP:
1297d01641e2SWill Andrews 		carp_set_state(sc, MASTER, reason);
1298d220759bSGleb Smirnoff 		carp_send_ad_locked(sc);
1299a0ae8f04SBjoern A. Zeeb #ifdef INET
1300a9771948SGleb Smirnoff 		carp_send_arp(sc);
1301a0ae8f04SBjoern A. Zeeb #endif
1302a9771948SGleb Smirnoff #ifdef INET6
1303a9771948SGleb Smirnoff 		carp_send_na(sc);
130408b68b0eSGleb Smirnoff #endif
1305a9771948SGleb Smirnoff 		carp_setrun(sc, 0);
130608b68b0eSGleb Smirnoff 		carp_addroute(sc);
130708b68b0eSGleb Smirnoff 		break;
130808b68b0eSGleb Smirnoff 	case INIT:
130908b68b0eSGleb Smirnoff 	case MASTER:
131008b68b0eSGleb Smirnoff #ifdef INVARIANTS
131108b68b0eSGleb Smirnoff 		panic("carp: VHID %u@%s: master_down event in %s state\n",
131208b68b0eSGleb Smirnoff 		    sc->sc_vhid,
131308b68b0eSGleb Smirnoff 		    sc->sc_carpdev->if_xname,
131408b68b0eSGleb Smirnoff 		    sc->sc_state ? "MASTER" : "INIT");
131508b68b0eSGleb Smirnoff #endif
1316a9771948SGleb Smirnoff 		break;
1317a9771948SGleb Smirnoff 	}
1318a9771948SGleb Smirnoff }
1319a9771948SGleb Smirnoff 
1320a9771948SGleb Smirnoff /*
1321a9771948SGleb Smirnoff  * When in backup state, af indicates whether to reset the master down timer
1322a9771948SGleb Smirnoff  * for v4 or v6. If it's set to zero, reset the ones which are already pending.
1323a9771948SGleb Smirnoff  */
13245c1f0f6dSGleb Smirnoff static void
1325a9771948SGleb Smirnoff carp_setrun(struct carp_softc *sc, sa_family_t af)
1326a9771948SGleb Smirnoff {
1327a9771948SGleb Smirnoff 	struct timeval tv;
1328a9771948SGleb Smirnoff 
132908b68b0eSGleb Smirnoff 	CARP_LOCK_ASSERT(sc);
1330d220759bSGleb Smirnoff 
133108b68b0eSGleb Smirnoff 	if ((sc->sc_carpdev->if_flags & IFF_UP) == 0 ||
133208b68b0eSGleb Smirnoff 	    sc->sc_carpdev->if_link_state != LINK_STATE_UP ||
1333167a3440SAlexander Motin 	    (sc->sc_naddrs == 0 && sc->sc_naddrs6 == 0) ||
1334167a3440SAlexander Motin 	    !V_carp_allow)
1335a9771948SGleb Smirnoff 		return;
1336a9771948SGleb Smirnoff 
1337a9771948SGleb Smirnoff 	switch (sc->sc_state) {
1338a9771948SGleb Smirnoff 	case INIT:
1339d01641e2SWill Andrews 		carp_set_state(sc, BACKUP, "initialization complete");
1340a9771948SGleb Smirnoff 		carp_setrun(sc, 0);
1341a9771948SGleb Smirnoff 		break;
1342a9771948SGleb Smirnoff 	case BACKUP:
1343a9771948SGleb Smirnoff 		callout_stop(&sc->sc_ad_tmo);
1344a9771948SGleb Smirnoff 		tv.tv_sec = 3 * sc->sc_advbase;
1345a9771948SGleb Smirnoff 		tv.tv_usec = sc->sc_advskew * 1000000 / 256;
1346a9771948SGleb Smirnoff 		switch (af) {
1347a9771948SGleb Smirnoff #ifdef INET
1348a9771948SGleb Smirnoff 		case AF_INET:
1349a9771948SGleb Smirnoff 			callout_reset(&sc->sc_md_tmo, tvtohz(&tv),
1350a9771948SGleb Smirnoff 			    carp_master_down, sc);
1351a9771948SGleb Smirnoff 			break;
135208b68b0eSGleb Smirnoff #endif
1353a9771948SGleb Smirnoff #ifdef INET6
1354a9771948SGleb Smirnoff 		case AF_INET6:
1355a9771948SGleb Smirnoff 			callout_reset(&sc->sc_md6_tmo, tvtohz(&tv),
1356a9771948SGleb Smirnoff 			    carp_master_down, sc);
1357a9771948SGleb Smirnoff 			break;
135808b68b0eSGleb Smirnoff #endif
1359a9771948SGleb Smirnoff 		default:
136008b68b0eSGleb Smirnoff #ifdef INET
1361a9771948SGleb Smirnoff 			if (sc->sc_naddrs)
1362a9771948SGleb Smirnoff 				callout_reset(&sc->sc_md_tmo, tvtohz(&tv),
1363a9771948SGleb Smirnoff 				    carp_master_down, sc);
136408b68b0eSGleb Smirnoff #endif
136508b68b0eSGleb Smirnoff #ifdef INET6
1366a9771948SGleb Smirnoff 			if (sc->sc_naddrs6)
1367a9771948SGleb Smirnoff 				callout_reset(&sc->sc_md6_tmo, tvtohz(&tv),
1368a9771948SGleb Smirnoff 				    carp_master_down, sc);
136908b68b0eSGleb Smirnoff #endif
1370a9771948SGleb Smirnoff 			break;
1371a9771948SGleb Smirnoff 		}
1372a9771948SGleb Smirnoff 		break;
1373a9771948SGleb Smirnoff 	case MASTER:
1374a9771948SGleb Smirnoff 		tv.tv_sec = sc->sc_advbase;
1375a9771948SGleb Smirnoff 		tv.tv_usec = sc->sc_advskew * 1000000 / 256;
1376a9771948SGleb Smirnoff 		callout_reset(&sc->sc_ad_tmo, tvtohz(&tv),
1377a9771948SGleb Smirnoff 		    carp_send_ad, sc);
1378a9771948SGleb Smirnoff 		break;
1379a9771948SGleb Smirnoff 	}
1380a9771948SGleb Smirnoff }
1381a9771948SGleb Smirnoff 
138208b68b0eSGleb Smirnoff /*
138308b68b0eSGleb Smirnoff  * Setup multicast structures.
138408b68b0eSGleb Smirnoff  */
13855c1f0f6dSGleb Smirnoff static int
1386a9a2c40cSGleb Smirnoff carp_multicast_setup(struct carp_if *cif, sa_family_t sa)
1387a9771948SGleb Smirnoff {
1388a9a2c40cSGleb Smirnoff 	struct ifnet *ifp = cif->cif_ifp;
138908b68b0eSGleb Smirnoff 	int error = 0;
139008b68b0eSGleb Smirnoff 
139108b68b0eSGleb Smirnoff 	switch (sa) {
139208b68b0eSGleb Smirnoff #ifdef INET
139308b68b0eSGleb Smirnoff 	case AF_INET:
139408b68b0eSGleb Smirnoff 	    {
139508b68b0eSGleb Smirnoff 		struct ip_moptions *imo = &cif->cif_imo;
139659854ecfSHans Petter Selasky 		struct in_mfilter *imf;
1397a9771948SGleb Smirnoff 		struct in_addr addr;
1398a9771948SGleb Smirnoff 
139959854ecfSHans Petter Selasky 		if (ip_mfilter_first(&imo->imo_head) != NULL)
1400a9771948SGleb Smirnoff 			return (0);
1401a9771948SGleb Smirnoff 
140259854ecfSHans Petter Selasky 		imf = ip_mfilter_alloc(M_WAITOK, 0, 0);
140359854ecfSHans Petter Selasky 		ip_mfilter_init(&imo->imo_head);
140408b68b0eSGleb Smirnoff 		imo->imo_multicast_vif = -1;
1405a9771948SGleb Smirnoff 
1406a9771948SGleb Smirnoff 		addr.s_addr = htonl(INADDR_CARP_GROUP);
140708b68b0eSGleb Smirnoff 		if ((error = in_joingroup(ifp, &addr, NULL,
140859854ecfSHans Petter Selasky 		    &imf->imf_inm)) != 0) {
140959854ecfSHans Petter Selasky 			ip_mfilter_free(imf);
141008b68b0eSGleb Smirnoff 			break;
14112d9cfabaSRobert Watson 		}
141259854ecfSHans Petter Selasky 
141359854ecfSHans Petter Selasky 		ip_mfilter_insert(&imo->imo_head, imf);
1414a9771948SGleb Smirnoff 		imo->imo_multicast_ifp = ifp;
1415a9771948SGleb Smirnoff 		imo->imo_multicast_ttl = CARP_DFLTTL;
1416a9771948SGleb Smirnoff 		imo->imo_multicast_loop = 0;
1417a9771948SGleb Smirnoff 		break;
1418a9771948SGleb Smirnoff 	   }
141908b68b0eSGleb Smirnoff #endif
142008b68b0eSGleb Smirnoff #ifdef INET6
142108b68b0eSGleb Smirnoff 	case AF_INET6:
142208b68b0eSGleb Smirnoff 	    {
142308b68b0eSGleb Smirnoff 		struct ip6_moptions *im6o = &cif->cif_im6o;
142459854ecfSHans Petter Selasky 		struct in6_mfilter *im6f[2];
142508b68b0eSGleb Smirnoff 		struct in6_addr in6;
142633cde130SBruce M Simpson 
142759854ecfSHans Petter Selasky 		if (ip6_mfilter_first(&im6o->im6o_head))
142808b68b0eSGleb Smirnoff 			return (0);
142908b68b0eSGleb Smirnoff 
143059854ecfSHans Petter Selasky 		im6f[0] = ip6_mfilter_alloc(M_WAITOK, 0, 0);
143159854ecfSHans Petter Selasky 		im6f[1] = ip6_mfilter_alloc(M_WAITOK, 0, 0);
143259854ecfSHans Petter Selasky 
143359854ecfSHans Petter Selasky 		ip6_mfilter_init(&im6o->im6o_head);
143408b68b0eSGleb Smirnoff 		im6o->im6o_multicast_hlim = CARP_DFLTTL;
1435a9771948SGleb Smirnoff 		im6o->im6o_multicast_ifp = ifp;
1436a9771948SGleb Smirnoff 
143708b68b0eSGleb Smirnoff 		/* Join IPv6 CARP multicast group. */
1438a1f7e5f8SHajimu UMEMOTO 		bzero(&in6, sizeof(in6));
1439a1f7e5f8SHajimu UMEMOTO 		in6.s6_addr16[0] = htons(0xff02);
1440a1f7e5f8SHajimu UMEMOTO 		in6.s6_addr8[15] = 0x12;
144108b68b0eSGleb Smirnoff 		if ((error = in6_setscope(&in6, ifp, NULL)) != 0) {
144259854ecfSHans Petter Selasky 			ip6_mfilter_free(im6f[0]);
144359854ecfSHans Petter Selasky 			ip6_mfilter_free(im6f[1]);
144408b68b0eSGleb Smirnoff 			break;
144508b68b0eSGleb Smirnoff 		}
144659854ecfSHans Petter Selasky 		if ((error = in6_joingroup(ifp, &in6, NULL, &im6f[0]->im6f_in6m, 0)) != 0) {
144759854ecfSHans Petter Selasky 			ip6_mfilter_free(im6f[0]);
144859854ecfSHans Petter Selasky 			ip6_mfilter_free(im6f[1]);
144908b68b0eSGleb Smirnoff 			break;
145008b68b0eSGleb Smirnoff 		}
1451a9771948SGleb Smirnoff 
145208b68b0eSGleb Smirnoff 		/* Join solicited multicast address. */
1453a1f7e5f8SHajimu UMEMOTO 		bzero(&in6, sizeof(in6));
1454a1f7e5f8SHajimu UMEMOTO 		in6.s6_addr16[0] = htons(0xff02);
1455a1f7e5f8SHajimu UMEMOTO 		in6.s6_addr32[1] = 0;
1456a1f7e5f8SHajimu UMEMOTO 		in6.s6_addr32[2] = htonl(1);
145708b68b0eSGleb Smirnoff 		in6.s6_addr32[3] = 0;
1458a1f7e5f8SHajimu UMEMOTO 		in6.s6_addr8[12] = 0xff;
145959854ecfSHans Petter Selasky 
146008b68b0eSGleb Smirnoff 		if ((error = in6_setscope(&in6, ifp, NULL)) != 0) {
146159854ecfSHans Petter Selasky 			ip6_mfilter_free(im6f[0]);
146259854ecfSHans Petter Selasky 			ip6_mfilter_free(im6f[1]);
146308b68b0eSGleb Smirnoff 			break;
146408b68b0eSGleb Smirnoff 		}
146559854ecfSHans Petter Selasky 
146659854ecfSHans Petter Selasky 		if ((error = in6_joingroup(ifp, &in6, NULL, &im6f[1]->im6f_in6m, 0)) != 0) {
146759854ecfSHans Petter Selasky 			in6_leavegroup(im6f[0]->im6f_in6m, NULL);
146859854ecfSHans Petter Selasky 			ip6_mfilter_free(im6f[0]);
146959854ecfSHans Petter Selasky 			ip6_mfilter_free(im6f[1]);
147008b68b0eSGleb Smirnoff 			break;
147108b68b0eSGleb Smirnoff 		}
147259854ecfSHans Petter Selasky 		ip6_mfilter_insert(&im6o->im6o_head, im6f[0]);
147359854ecfSHans Petter Selasky 		ip6_mfilter_insert(&im6o->im6o_head, im6f[1]);
1474a9771948SGleb Smirnoff 		break;
1475a9771948SGleb Smirnoff 	    }
1476a9771948SGleb Smirnoff #endif
147708b68b0eSGleb Smirnoff 	}
147808b68b0eSGleb Smirnoff 
147908b68b0eSGleb Smirnoff 	return (error);
1480a9771948SGleb Smirnoff }
1481a9771948SGleb Smirnoff 
1482a9771948SGleb Smirnoff /*
148308b68b0eSGleb Smirnoff  * Free multicast structures.
1484a9771948SGleb Smirnoff  */
14855c1f0f6dSGleb Smirnoff static void
1486a9a2c40cSGleb Smirnoff carp_multicast_cleanup(struct carp_if *cif, sa_family_t sa)
1487a9771948SGleb Smirnoff {
148859854ecfSHans Petter Selasky #ifdef INET
148959854ecfSHans Petter Selasky 	struct ip_moptions *imo = &cif->cif_imo;
149059854ecfSHans Petter Selasky 	struct in_mfilter *imf;
149159854ecfSHans Petter Selasky #endif
149259854ecfSHans Petter Selasky #ifdef INET6
149359854ecfSHans Petter Selasky 	struct ip6_moptions *im6o = &cif->cif_im6o;
149459854ecfSHans Petter Selasky 	struct in6_mfilter *im6f;
149559854ecfSHans Petter Selasky #endif
14969c2cd1aaSGleb Smirnoff 	sx_assert(&carp_sx, SA_XLOCKED);
14979c2cd1aaSGleb Smirnoff 
149808b68b0eSGleb Smirnoff 	switch (sa) {
149908b68b0eSGleb Smirnoff #ifdef INET
150008b68b0eSGleb Smirnoff 	case AF_INET:
150159854ecfSHans Petter Selasky 		if (cif->cif_naddrs != 0)
150259854ecfSHans Petter Selasky 			break;
150308b68b0eSGleb Smirnoff 
150459854ecfSHans Petter Selasky 		while ((imf = ip_mfilter_first(&imo->imo_head)) != NULL) {
150559854ecfSHans Petter Selasky 			ip_mfilter_remove(&imo->imo_head, imf);
150659854ecfSHans Petter Selasky 			in_leavegroup(imf->imf_inm, NULL);
150759854ecfSHans Petter Selasky 			ip_mfilter_free(imf);
150808b68b0eSGleb Smirnoff 		}
150908b68b0eSGleb Smirnoff 		break;
1510a9771948SGleb Smirnoff #endif
151108b68b0eSGleb Smirnoff #ifdef INET6
151208b68b0eSGleb Smirnoff 	case AF_INET6:
151359854ecfSHans Petter Selasky 		if (cif->cif_naddrs6 != 0)
151459854ecfSHans Petter Selasky 			break;
151508b68b0eSGleb Smirnoff 
151659854ecfSHans Petter Selasky 		while ((im6f = ip6_mfilter_first(&im6o->im6o_head)) != NULL) {
151759854ecfSHans Petter Selasky 			ip6_mfilter_remove(&im6o->im6o_head, im6f);
151859854ecfSHans Petter Selasky 			in6_leavegroup(im6f->im6f_in6m, NULL);
151959854ecfSHans Petter Selasky 			ip6_mfilter_free(im6f);
152008b68b0eSGleb Smirnoff 		}
152108b68b0eSGleb Smirnoff 		break;
152208b68b0eSGleb Smirnoff #endif
152308b68b0eSGleb Smirnoff 	}
1524a9771948SGleb Smirnoff }
1525a9771948SGleb Smirnoff 
1526a9771948SGleb Smirnoff int
152747e8d432SGleb Smirnoff carp_output(struct ifnet *ifp, struct mbuf *m, const struct sockaddr *sa)
1528a9771948SGleb Smirnoff {
1529a9771948SGleb Smirnoff 	struct m_tag *mtag;
1530a9771948SGleb Smirnoff 	struct carp_softc *sc;
1531a9771948SGleb Smirnoff 
1532a9771948SGleb Smirnoff 	if (!sa)
1533a9771948SGleb Smirnoff 		return (0);
1534a9771948SGleb Smirnoff 
1535a9771948SGleb Smirnoff 	switch (sa->sa_family) {
1536a9771948SGleb Smirnoff #ifdef INET
1537a9771948SGleb Smirnoff 	case AF_INET:
1538a9771948SGleb Smirnoff 		break;
153908b68b0eSGleb Smirnoff #endif
1540a9771948SGleb Smirnoff #ifdef INET6
1541a9771948SGleb Smirnoff 	case AF_INET6:
1542a9771948SGleb Smirnoff 		break;
154308b68b0eSGleb Smirnoff #endif
1544a9771948SGleb Smirnoff 	default:
1545a9771948SGleb Smirnoff 		return (0);
1546a9771948SGleb Smirnoff 	}
1547a9771948SGleb Smirnoff 
1548a9771948SGleb Smirnoff 	mtag = m_tag_find(m, PACKET_TAG_CARP, NULL);
1549a9771948SGleb Smirnoff 	if (mtag == NULL)
1550a9771948SGleb Smirnoff 		return (0);
1551a9771948SGleb Smirnoff 
1552eaf151c4SGleb Smirnoff 	bcopy(mtag + 1, &sc, sizeof(sc));
1553a9771948SGleb Smirnoff 
155408b68b0eSGleb Smirnoff 	/* Set the source MAC address to the Virtual Router MAC Address. */
1555a9771948SGleb Smirnoff 	switch (ifp->if_type) {
1556630481bbSYaroslav Tykhiy 	case IFT_ETHER:
15579ca1fe0dSGleb Smirnoff 	case IFT_BRIDGE:
1558630481bbSYaroslav Tykhiy 	case IFT_L2VLAN: {
1559a9771948SGleb Smirnoff 			struct ether_header *eh;
1560a9771948SGleb Smirnoff 
1561a9771948SGleb Smirnoff 			eh = mtod(m, struct ether_header *);
1562a9771948SGleb Smirnoff 			eh->ether_shost[0] = 0;
1563a9771948SGleb Smirnoff 			eh->ether_shost[1] = 0;
1564a9771948SGleb Smirnoff 			eh->ether_shost[2] = 0x5e;
1565a9771948SGleb Smirnoff 			eh->ether_shost[3] = 0;
1566a9771948SGleb Smirnoff 			eh->ether_shost[4] = 1;
1567a9771948SGleb Smirnoff 			eh->ether_shost[5] = sc->sc_vhid;
1568a9771948SGleb Smirnoff 		}
1569a9771948SGleb Smirnoff 		break;
1570a9771948SGleb Smirnoff 	default:
157108b68b0eSGleb Smirnoff 		printf("%s: carp is not supported for the %d interface type\n",
157208b68b0eSGleb Smirnoff 		    ifp->if_xname, ifp->if_type);
1573a9771948SGleb Smirnoff 		return (EOPNOTSUPP);
1574a9771948SGleb Smirnoff 	}
1575a9771948SGleb Smirnoff 
1576a9771948SGleb Smirnoff 	return (0);
1577a9771948SGleb Smirnoff }
1578a9771948SGleb Smirnoff 
157908b68b0eSGleb Smirnoff static struct carp_softc*
158008b68b0eSGleb Smirnoff carp_alloc(struct ifnet *ifp)
1581a9771948SGleb Smirnoff {
158208b68b0eSGleb Smirnoff 	struct carp_softc *sc;
158308b68b0eSGleb Smirnoff 	struct carp_if *cif;
1584d220759bSGleb Smirnoff 
158581098a01SAlexander Motin 	sx_assert(&carp_sx, SA_XLOCKED);
158681098a01SAlexander Motin 
15870cc726f2SGleb Smirnoff 	if ((cif = ifp->if_carp) == NULL)
158808b68b0eSGleb Smirnoff 		cif = carp_alloc_if(ifp);
1589a9771948SGleb Smirnoff 
159008b68b0eSGleb Smirnoff 	sc = malloc(sizeof(*sc), M_CARP, M_WAITOK|M_ZERO);
159108b68b0eSGleb Smirnoff 
159208b68b0eSGleb Smirnoff 	sc->sc_advbase = CARP_DFLTINTV;
159308b68b0eSGleb Smirnoff 	sc->sc_vhid = -1;	/* required setting */
159408b68b0eSGleb Smirnoff 	sc->sc_init_counter = 1;
159508b68b0eSGleb Smirnoff 	sc->sc_state = INIT;
159608b68b0eSGleb Smirnoff 
159708b68b0eSGleb Smirnoff 	sc->sc_ifasiz = sizeof(struct ifaddr *);
159808b68b0eSGleb Smirnoff 	sc->sc_ifas = malloc(sc->sc_ifasiz, M_CARP, M_WAITOK|M_ZERO);
159908b68b0eSGleb Smirnoff 	sc->sc_carpdev = ifp;
160008b68b0eSGleb Smirnoff 
160108b68b0eSGleb Smirnoff 	CARP_LOCK_INIT(sc);
160208b68b0eSGleb Smirnoff #ifdef INET
160308b68b0eSGleb Smirnoff 	callout_init_mtx(&sc->sc_md_tmo, &sc->sc_mtx, CALLOUT_RETURNUNLOCKED);
160408b68b0eSGleb Smirnoff #endif
160508b68b0eSGleb Smirnoff #ifdef INET6
160608b68b0eSGleb Smirnoff 	callout_init_mtx(&sc->sc_md6_tmo, &sc->sc_mtx, CALLOUT_RETURNUNLOCKED);
160708b68b0eSGleb Smirnoff #endif
160808b68b0eSGleb Smirnoff 	callout_init_mtx(&sc->sc_ad_tmo, &sc->sc_mtx, CALLOUT_RETURNUNLOCKED);
160908b68b0eSGleb Smirnoff 
161008b68b0eSGleb Smirnoff 	CIF_LOCK(cif);
161108b68b0eSGleb Smirnoff 	TAILQ_INSERT_TAIL(&cif->cif_vrs, sc, sc_list);
161208b68b0eSGleb Smirnoff 	CIF_UNLOCK(cif);
161308b68b0eSGleb Smirnoff 
161408b68b0eSGleb Smirnoff 	mtx_lock(&carp_mtx);
161508b68b0eSGleb Smirnoff 	LIST_INSERT_HEAD(&carp_list, sc, sc_next);
161608b68b0eSGleb Smirnoff 	mtx_unlock(&carp_mtx);
161708b68b0eSGleb Smirnoff 
161808b68b0eSGleb Smirnoff 	return (sc);
161908b68b0eSGleb Smirnoff }
162008b68b0eSGleb Smirnoff 
16219c2cd1aaSGleb Smirnoff static void
162208b68b0eSGleb Smirnoff carp_grow_ifas(struct carp_softc *sc)
162308b68b0eSGleb Smirnoff {
162408b68b0eSGleb Smirnoff 	struct ifaddr **new;
162508b68b0eSGleb Smirnoff 
16269c2cd1aaSGleb Smirnoff 	new = malloc(sc->sc_ifasiz * 2, M_CARP, M_WAITOK | M_ZERO);
16279c2cd1aaSGleb Smirnoff 	CARP_LOCK(sc);
162808b68b0eSGleb Smirnoff 	bcopy(sc->sc_ifas, new, sc->sc_ifasiz);
162908b68b0eSGleb Smirnoff 	free(sc->sc_ifas, M_CARP);
163008b68b0eSGleb Smirnoff 	sc->sc_ifas = new;
163108b68b0eSGleb Smirnoff 	sc->sc_ifasiz *= 2;
16329c2cd1aaSGleb Smirnoff 	CARP_UNLOCK(sc);
163308b68b0eSGleb Smirnoff }
163408b68b0eSGleb Smirnoff 
163508b68b0eSGleb Smirnoff static void
163608b68b0eSGleb Smirnoff carp_destroy(struct carp_softc *sc)
163708b68b0eSGleb Smirnoff {
163808b68b0eSGleb Smirnoff 	struct ifnet *ifp = sc->sc_carpdev;
163908b68b0eSGleb Smirnoff 	struct carp_if *cif = ifp->if_carp;
164008b68b0eSGleb Smirnoff 
16419c2cd1aaSGleb Smirnoff 	sx_assert(&carp_sx, SA_XLOCKED);
1642a9a2c40cSGleb Smirnoff 
16439c2cd1aaSGleb Smirnoff 	if (sc->sc_suppress)
16449c2cd1aaSGleb Smirnoff 		carp_demote_adj(-V_carp_ifdown_adj, "vhid removed");
16459c2cd1aaSGleb Smirnoff 	CARP_UNLOCK(sc);
16469c2cd1aaSGleb Smirnoff 
16479c2cd1aaSGleb Smirnoff 	CIF_LOCK(cif);
164808b68b0eSGleb Smirnoff 	TAILQ_REMOVE(&cif->cif_vrs, sc, sc_list);
16499c2cd1aaSGleb Smirnoff 	CIF_UNLOCK(cif);
165008b68b0eSGleb Smirnoff 
165108b68b0eSGleb Smirnoff 	mtx_lock(&carp_mtx);
165208b68b0eSGleb Smirnoff 	LIST_REMOVE(sc, sc_next);
165308b68b0eSGleb Smirnoff 	mtx_unlock(&carp_mtx);
165408b68b0eSGleb Smirnoff 
165508b68b0eSGleb Smirnoff 	callout_drain(&sc->sc_ad_tmo);
165608b68b0eSGleb Smirnoff #ifdef INET
165708b68b0eSGleb Smirnoff 	callout_drain(&sc->sc_md_tmo);
165808b68b0eSGleb Smirnoff #endif
165908b68b0eSGleb Smirnoff #ifdef INET6
166008b68b0eSGleb Smirnoff 	callout_drain(&sc->sc_md6_tmo);
166108b68b0eSGleb Smirnoff #endif
166208b68b0eSGleb Smirnoff 	CARP_LOCK_DESTROY(sc);
166308b68b0eSGleb Smirnoff 
166408b68b0eSGleb Smirnoff 	free(sc->sc_ifas, M_CARP);
166508b68b0eSGleb Smirnoff 	free(sc, M_CARP);
166608b68b0eSGleb Smirnoff }
166708b68b0eSGleb Smirnoff 
166808b68b0eSGleb Smirnoff static struct carp_if*
166908b68b0eSGleb Smirnoff carp_alloc_if(struct ifnet *ifp)
1670a9771948SGleb Smirnoff {
167154bfbd51SWill Andrews 	struct carp_if *cif;
16720cc726f2SGleb Smirnoff 	int error;
1673d220759bSGleb Smirnoff 
167408b68b0eSGleb Smirnoff 	cif = malloc(sizeof(*cif), M_CARP, M_WAITOK|M_ZERO);
167508b68b0eSGleb Smirnoff 
16760cc726f2SGleb Smirnoff 	if ((error = ifpromisc(ifp, 1)) != 0)
16770cc726f2SGleb Smirnoff 		printf("%s: ifpromisc(%s) failed: %d\n",
16780cc726f2SGleb Smirnoff 		    __func__, ifp->if_xname, error);
16790cc726f2SGleb Smirnoff 	else
16800cc726f2SGleb Smirnoff 		cif->cif_flags |= CIF_PROMISC;
168108b68b0eSGleb Smirnoff 
168208b68b0eSGleb Smirnoff 	CIF_LOCK_INIT(cif);
168308b68b0eSGleb Smirnoff 	cif->cif_ifp = ifp;
168408b68b0eSGleb Smirnoff 	TAILQ_INIT(&cif->cif_vrs);
168508b68b0eSGleb Smirnoff 
1686137f91e8SJohn Baldwin 	IF_ADDR_WLOCK(ifp);
168708b68b0eSGleb Smirnoff 	ifp->if_carp = cif;
168808b68b0eSGleb Smirnoff 	if_ref(ifp);
1689137f91e8SJohn Baldwin 	IF_ADDR_WUNLOCK(ifp);
169008b68b0eSGleb Smirnoff 
169108b68b0eSGleb Smirnoff 	return (cif);
1692d220759bSGleb Smirnoff }
1693d220759bSGleb Smirnoff 
1694d220759bSGleb Smirnoff static void
169508b68b0eSGleb Smirnoff carp_free_if(struct carp_if *cif)
169608b68b0eSGleb Smirnoff {
169708b68b0eSGleb Smirnoff 	struct ifnet *ifp = cif->cif_ifp;
169808b68b0eSGleb Smirnoff 
169908b68b0eSGleb Smirnoff 	CIF_LOCK_ASSERT(cif);
170008b68b0eSGleb Smirnoff 	KASSERT(TAILQ_EMPTY(&cif->cif_vrs), ("%s: softc list not empty",
170108b68b0eSGleb Smirnoff 	    __func__));
170208b68b0eSGleb Smirnoff 
1703137f91e8SJohn Baldwin 	IF_ADDR_WLOCK(ifp);
170408b68b0eSGleb Smirnoff 	ifp->if_carp = NULL;
1705137f91e8SJohn Baldwin 	IF_ADDR_WUNLOCK(ifp);
170608b68b0eSGleb Smirnoff 
170708b68b0eSGleb Smirnoff 	CIF_LOCK_DESTROY(cif);
170808b68b0eSGleb Smirnoff 
17090cc726f2SGleb Smirnoff 	if (cif->cif_flags & CIF_PROMISC)
171008b68b0eSGleb Smirnoff 		ifpromisc(ifp, 0);
17111f6addd9SMikolaj Golub 	if_rele(ifp);
171208b68b0eSGleb Smirnoff 
171308b68b0eSGleb Smirnoff 	free(cif, M_CARP);
171408b68b0eSGleb Smirnoff }
171508b68b0eSGleb Smirnoff 
171608b68b0eSGleb Smirnoff static void
171708b68b0eSGleb Smirnoff carp_carprcp(struct carpreq *carpr, struct carp_softc *sc, int priv)
171808b68b0eSGleb Smirnoff {
171908b68b0eSGleb Smirnoff 
172008b68b0eSGleb Smirnoff 	CARP_LOCK(sc);
172108b68b0eSGleb Smirnoff 	carpr->carpr_state = sc->sc_state;
172208b68b0eSGleb Smirnoff 	carpr->carpr_vhid = sc->sc_vhid;
172308b68b0eSGleb Smirnoff 	carpr->carpr_advbase = sc->sc_advbase;
172408b68b0eSGleb Smirnoff 	carpr->carpr_advskew = sc->sc_advskew;
172508b68b0eSGleb Smirnoff 	if (priv)
172608b68b0eSGleb Smirnoff 		bcopy(sc->sc_key, carpr->carpr_key, sizeof(carpr->carpr_key));
172708b68b0eSGleb Smirnoff 	else
172808b68b0eSGleb Smirnoff 		bzero(carpr->carpr_key, sizeof(carpr->carpr_key));
172908b68b0eSGleb Smirnoff 	CARP_UNLOCK(sc);
173008b68b0eSGleb Smirnoff }
173108b68b0eSGleb Smirnoff 
173208b68b0eSGleb Smirnoff int
173308b68b0eSGleb Smirnoff carp_ioctl(struct ifreq *ifr, u_long cmd, struct thread *td)
173408b68b0eSGleb Smirnoff {
173508b68b0eSGleb Smirnoff 	struct carpreq carpr;
173608b68b0eSGleb Smirnoff 	struct ifnet *ifp;
173708b68b0eSGleb Smirnoff 	struct carp_softc *sc = NULL;
173808b68b0eSGleb Smirnoff 	int error = 0, locked = 0;
173908b68b0eSGleb Smirnoff 
1740541d96aaSBrooks Davis 	if ((error = copyin(ifr_data_get_ptr(ifr), &carpr, sizeof carpr)))
174108b68b0eSGleb Smirnoff 		return (error);
174208b68b0eSGleb Smirnoff 
174308b68b0eSGleb Smirnoff 	ifp = ifunit_ref(ifr->ifr_name);
174408b68b0eSGleb Smirnoff 	if (ifp == NULL)
174508b68b0eSGleb Smirnoff 		return (ENXIO);
174608b68b0eSGleb Smirnoff 
174708b68b0eSGleb Smirnoff 	switch (ifp->if_type) {
174808b68b0eSGleb Smirnoff 	case IFT_ETHER:
174908b68b0eSGleb Smirnoff 	case IFT_L2VLAN:
17509ca1fe0dSGleb Smirnoff 	case IFT_BRIDGE:
175108b68b0eSGleb Smirnoff 		break;
175208b68b0eSGleb Smirnoff 	default:
175308b68b0eSGleb Smirnoff 		error = EOPNOTSUPP;
175408b68b0eSGleb Smirnoff 		goto out;
175508b68b0eSGleb Smirnoff 	}
175608b68b0eSGleb Smirnoff 
175708b68b0eSGleb Smirnoff 	if ((ifp->if_flags & IFF_MULTICAST) == 0) {
175808b68b0eSGleb Smirnoff 		error = EADDRNOTAVAIL;
175908b68b0eSGleb Smirnoff 		goto out;
176008b68b0eSGleb Smirnoff 	}
176108b68b0eSGleb Smirnoff 
176293d4534cSGleb Smirnoff 	sx_xlock(&carp_sx);
176308b68b0eSGleb Smirnoff 	switch (cmd) {
176408b68b0eSGleb Smirnoff 	case SIOCSVH:
176508b68b0eSGleb Smirnoff 		if ((error = priv_check(td, PRIV_NETINET_CARP)))
176608b68b0eSGleb Smirnoff 			break;
176708b68b0eSGleb Smirnoff 		if (carpr.carpr_vhid <= 0 || carpr.carpr_vhid > CARP_MAXVHID ||
176808b68b0eSGleb Smirnoff 		    carpr.carpr_advbase < 0 || carpr.carpr_advskew < 0) {
176908b68b0eSGleb Smirnoff 			error = EINVAL;
177008b68b0eSGleb Smirnoff 			break;
177108b68b0eSGleb Smirnoff 		}
177208b68b0eSGleb Smirnoff 
177308b68b0eSGleb Smirnoff 		if (ifp->if_carp) {
177408b68b0eSGleb Smirnoff 			IFNET_FOREACH_CARP(ifp, sc)
177508b68b0eSGleb Smirnoff 				if (sc->sc_vhid == carpr.carpr_vhid)
177608b68b0eSGleb Smirnoff 					break;
177708b68b0eSGleb Smirnoff 		}
177808b68b0eSGleb Smirnoff 		if (sc == NULL) {
177908b68b0eSGleb Smirnoff 			sc = carp_alloc(ifp);
178008b68b0eSGleb Smirnoff 			CARP_LOCK(sc);
178108b68b0eSGleb Smirnoff 			sc->sc_vhid = carpr.carpr_vhid;
178208b68b0eSGleb Smirnoff 			LLADDR(&sc->sc_addr)[0] = 0;
178308b68b0eSGleb Smirnoff 			LLADDR(&sc->sc_addr)[1] = 0;
178408b68b0eSGleb Smirnoff 			LLADDR(&sc->sc_addr)[2] = 0x5e;
178508b68b0eSGleb Smirnoff 			LLADDR(&sc->sc_addr)[3] = 0;
178608b68b0eSGleb Smirnoff 			LLADDR(&sc->sc_addr)[4] = 1;
178708b68b0eSGleb Smirnoff 			LLADDR(&sc->sc_addr)[5] = sc->sc_vhid;
178808b68b0eSGleb Smirnoff 		} else
178908b68b0eSGleb Smirnoff 			CARP_LOCK(sc);
179008b68b0eSGleb Smirnoff 		locked = 1;
179108b68b0eSGleb Smirnoff 		if (carpr.carpr_advbase > 0) {
179208b68b0eSGleb Smirnoff 			if (carpr.carpr_advbase > 255 ||
179308b68b0eSGleb Smirnoff 			    carpr.carpr_advbase < CARP_DFLTINTV) {
179408b68b0eSGleb Smirnoff 				error = EINVAL;
179508b68b0eSGleb Smirnoff 				break;
179608b68b0eSGleb Smirnoff 			}
179708b68b0eSGleb Smirnoff 			sc->sc_advbase = carpr.carpr_advbase;
179808b68b0eSGleb Smirnoff 		}
179908b68b0eSGleb Smirnoff 		if (carpr.carpr_advskew >= 255) {
180008b68b0eSGleb Smirnoff 			error = EINVAL;
180108b68b0eSGleb Smirnoff 			break;
180208b68b0eSGleb Smirnoff 		}
180308b68b0eSGleb Smirnoff 		sc->sc_advskew = carpr.carpr_advskew;
180408b68b0eSGleb Smirnoff 		if (carpr.carpr_key[0] != '\0') {
180508b68b0eSGleb Smirnoff 			bcopy(carpr.carpr_key, sc->sc_key, sizeof(sc->sc_key));
180608b68b0eSGleb Smirnoff 			carp_hmac_prepare(sc);
180708b68b0eSGleb Smirnoff 		}
180808b68b0eSGleb Smirnoff 		if (sc->sc_state != INIT &&
180908b68b0eSGleb Smirnoff 		    carpr.carpr_state != sc->sc_state) {
181008b68b0eSGleb Smirnoff 			switch (carpr.carpr_state) {
181108b68b0eSGleb Smirnoff 			case BACKUP:
181208b68b0eSGleb Smirnoff 				callout_stop(&sc->sc_ad_tmo);
1813369a6708SWill Andrews 				carp_set_state(sc, BACKUP,
1814369a6708SWill Andrews 				    "user requested via ifconfig");
181508b68b0eSGleb Smirnoff 				carp_setrun(sc, 0);
181608b68b0eSGleb Smirnoff 				carp_delroute(sc);
181708b68b0eSGleb Smirnoff 				break;
181808b68b0eSGleb Smirnoff 			case MASTER:
1819369a6708SWill Andrews 				carp_master_down_locked(sc,
1820369a6708SWill Andrews 				    "user requested via ifconfig");
182108b68b0eSGleb Smirnoff 				break;
182208b68b0eSGleb Smirnoff 			default:
182308b68b0eSGleb Smirnoff 				break;
182408b68b0eSGleb Smirnoff 			}
182508b68b0eSGleb Smirnoff 		}
182608b68b0eSGleb Smirnoff 		break;
182708b68b0eSGleb Smirnoff 
182808b68b0eSGleb Smirnoff 	case SIOCGVH:
182908b68b0eSGleb Smirnoff 	    {
183008b68b0eSGleb Smirnoff 		int priveleged;
183108b68b0eSGleb Smirnoff 
183208b68b0eSGleb Smirnoff 		if (carpr.carpr_vhid < 0 || carpr.carpr_vhid > CARP_MAXVHID) {
183308b68b0eSGleb Smirnoff 			error = EINVAL;
183408b68b0eSGleb Smirnoff 			break;
183508b68b0eSGleb Smirnoff 		}
183608b68b0eSGleb Smirnoff 		if (carpr.carpr_count < 1) {
183708b68b0eSGleb Smirnoff 			error = EMSGSIZE;
183808b68b0eSGleb Smirnoff 			break;
183908b68b0eSGleb Smirnoff 		}
184008b68b0eSGleb Smirnoff 		if (ifp->if_carp == NULL) {
184108b68b0eSGleb Smirnoff 			error = ENOENT;
184208b68b0eSGleb Smirnoff 			break;
184308b68b0eSGleb Smirnoff 		}
184408b68b0eSGleb Smirnoff 
184508b68b0eSGleb Smirnoff 		priveleged = (priv_check(td, PRIV_NETINET_CARP) == 0);
184608b68b0eSGleb Smirnoff 		if (carpr.carpr_vhid != 0) {
184708b68b0eSGleb Smirnoff 			IFNET_FOREACH_CARP(ifp, sc)
184808b68b0eSGleb Smirnoff 				if (sc->sc_vhid == carpr.carpr_vhid)
184908b68b0eSGleb Smirnoff 					break;
185008b68b0eSGleb Smirnoff 			if (sc == NULL) {
185108b68b0eSGleb Smirnoff 				error = ENOENT;
185208b68b0eSGleb Smirnoff 				break;
185308b68b0eSGleb Smirnoff 			}
185408b68b0eSGleb Smirnoff 			carp_carprcp(&carpr, sc, priveleged);
1855541d96aaSBrooks Davis 			error = copyout(&carpr, ifr_data_get_ptr(ifr),
1856541d96aaSBrooks Davis 			    sizeof(carpr));
185708b68b0eSGleb Smirnoff 		} else  {
185808b68b0eSGleb Smirnoff 			int i, count;
185908b68b0eSGleb Smirnoff 
186008b68b0eSGleb Smirnoff 			count = 0;
186108b68b0eSGleb Smirnoff 			IFNET_FOREACH_CARP(ifp, sc)
186208b68b0eSGleb Smirnoff 				count++;
186308b68b0eSGleb Smirnoff 
186408b68b0eSGleb Smirnoff 			if (count > carpr.carpr_count) {
186508b68b0eSGleb Smirnoff 				CIF_UNLOCK(ifp->if_carp);
186608b68b0eSGleb Smirnoff 				error = EMSGSIZE;
186708b68b0eSGleb Smirnoff 				break;
186808b68b0eSGleb Smirnoff 			}
186908b68b0eSGleb Smirnoff 
187008b68b0eSGleb Smirnoff 			i = 0;
187108b68b0eSGleb Smirnoff 			IFNET_FOREACH_CARP(ifp, sc) {
187208b68b0eSGleb Smirnoff 				carp_carprcp(&carpr, sc, priveleged);
187308b68b0eSGleb Smirnoff 				carpr.carpr_count = count;
1874541d96aaSBrooks Davis 				error = copyout(&carpr,
1875dad68fc3SBjoern A. Zeeb 				    (char *)ifr_data_get_ptr(ifr) +
187608b68b0eSGleb Smirnoff 				    (i * sizeof(carpr)), sizeof(carpr));
187708b68b0eSGleb Smirnoff 				if (error) {
187808b68b0eSGleb Smirnoff 					CIF_UNLOCK(ifp->if_carp);
187908b68b0eSGleb Smirnoff 					break;
188008b68b0eSGleb Smirnoff 				}
188108b68b0eSGleb Smirnoff 				i++;
188208b68b0eSGleb Smirnoff 			}
188308b68b0eSGleb Smirnoff 		}
188408b68b0eSGleb Smirnoff 		break;
188508b68b0eSGleb Smirnoff 	    }
188608b68b0eSGleb Smirnoff 	default:
188708b68b0eSGleb Smirnoff 		error = EINVAL;
188808b68b0eSGleb Smirnoff 	}
188993d4534cSGleb Smirnoff 	sx_xunlock(&carp_sx);
189008b68b0eSGleb Smirnoff 
189108b68b0eSGleb Smirnoff out:
189208b68b0eSGleb Smirnoff 	if (locked)
189308b68b0eSGleb Smirnoff 		CARP_UNLOCK(sc);
189408b68b0eSGleb Smirnoff 	if_rele(ifp);
189508b68b0eSGleb Smirnoff 
189608b68b0eSGleb Smirnoff 	return (error);
189708b68b0eSGleb Smirnoff }
189808b68b0eSGleb Smirnoff 
189908b68b0eSGleb Smirnoff static int
190008b68b0eSGleb Smirnoff carp_get_vhid(struct ifaddr *ifa)
190108b68b0eSGleb Smirnoff {
190208b68b0eSGleb Smirnoff 
190308b68b0eSGleb Smirnoff 	if (ifa == NULL || ifa->ifa_carp == NULL)
190408b68b0eSGleb Smirnoff 		return (0);
190508b68b0eSGleb Smirnoff 
190608b68b0eSGleb Smirnoff 	return (ifa->ifa_carp->sc_vhid);
190708b68b0eSGleb Smirnoff }
190808b68b0eSGleb Smirnoff 
190908b68b0eSGleb Smirnoff int
191008b68b0eSGleb Smirnoff carp_attach(struct ifaddr *ifa, int vhid)
191108b68b0eSGleb Smirnoff {
191208b68b0eSGleb Smirnoff 	struct ifnet *ifp = ifa->ifa_ifp;
1913a9a2c40cSGleb Smirnoff 	struct carp_if *cif = ifp->if_carp;
191408b68b0eSGleb Smirnoff 	struct carp_softc *sc;
191508b68b0eSGleb Smirnoff 	int index, error;
191608b68b0eSGleb Smirnoff 
19179c2cd1aaSGleb Smirnoff 	KASSERT(ifa->ifa_carp == NULL, ("%s: ifa %p attached", __func__, ifa));
191808b68b0eSGleb Smirnoff 
191908b68b0eSGleb Smirnoff 	switch (ifa->ifa_addr->sa_family) {
192008b68b0eSGleb Smirnoff #ifdef INET
192108b68b0eSGleb Smirnoff 	case AF_INET:
192208b68b0eSGleb Smirnoff #endif
192308b68b0eSGleb Smirnoff #ifdef INET6
192408b68b0eSGleb Smirnoff 	case AF_INET6:
192508b68b0eSGleb Smirnoff #endif
192608b68b0eSGleb Smirnoff 		break;
192708b68b0eSGleb Smirnoff 	default:
192808b68b0eSGleb Smirnoff 		return (EPROTOTYPE);
192908b68b0eSGleb Smirnoff 	}
193008b68b0eSGleb Smirnoff 
19319c2cd1aaSGleb Smirnoff 	sx_xlock(&carp_sx);
19329c2cd1aaSGleb Smirnoff 	if (ifp->if_carp == NULL) {
19339c2cd1aaSGleb Smirnoff 		sx_xunlock(&carp_sx);
19349c2cd1aaSGleb Smirnoff 		return (ENOPROTOOPT);
19359c2cd1aaSGleb Smirnoff 	}
19369c2cd1aaSGleb Smirnoff 
193708b68b0eSGleb Smirnoff 	IFNET_FOREACH_CARP(ifp, sc)
193808b68b0eSGleb Smirnoff 		if (sc->sc_vhid == vhid)
193908b68b0eSGleb Smirnoff 			break;
1940a9a2c40cSGleb Smirnoff 	if (sc == NULL) {
19419c2cd1aaSGleb Smirnoff 		sx_xunlock(&carp_sx);
194208b68b0eSGleb Smirnoff 		return (ENOENT);
1943a9a2c40cSGleb Smirnoff 	}
194408b68b0eSGleb Smirnoff 
1945a9a2c40cSGleb Smirnoff 	error = carp_multicast_setup(cif, ifa->ifa_addr->sa_family);
1946a9a2c40cSGleb Smirnoff 	if (error) {
1947a9a2c40cSGleb Smirnoff 		CIF_FREE(cif);
19489c2cd1aaSGleb Smirnoff 		sx_xunlock(&carp_sx);
194908b68b0eSGleb Smirnoff 		return (error);
1950a9a2c40cSGleb Smirnoff 	}
195108b68b0eSGleb Smirnoff 
195208b68b0eSGleb Smirnoff 	index = sc->sc_naddrs + sc->sc_naddrs6 + 1;
195308b68b0eSGleb Smirnoff 	if (index > sc->sc_ifasiz / sizeof(struct ifaddr *))
19549c2cd1aaSGleb Smirnoff 		carp_grow_ifas(sc);
195508b68b0eSGleb Smirnoff 
195608b68b0eSGleb Smirnoff 	switch (ifa->ifa_addr->sa_family) {
195708b68b0eSGleb Smirnoff #ifdef INET
195808b68b0eSGleb Smirnoff 	case AF_INET:
1959a9a2c40cSGleb Smirnoff 		cif->cif_naddrs++;
196008b68b0eSGleb Smirnoff 		sc->sc_naddrs++;
196108b68b0eSGleb Smirnoff 		break;
196208b68b0eSGleb Smirnoff #endif
196308b68b0eSGleb Smirnoff #ifdef INET6
196408b68b0eSGleb Smirnoff 	case AF_INET6:
1965a9a2c40cSGleb Smirnoff 		cif->cif_naddrs6++;
196608b68b0eSGleb Smirnoff 		sc->sc_naddrs6++;
196708b68b0eSGleb Smirnoff 		break;
196808b68b0eSGleb Smirnoff #endif
196908b68b0eSGleb Smirnoff 	}
197008b68b0eSGleb Smirnoff 
197108b68b0eSGleb Smirnoff 	ifa_ref(ifa);
19729c2cd1aaSGleb Smirnoff 
19739c2cd1aaSGleb Smirnoff 	CARP_LOCK(sc);
197408b68b0eSGleb Smirnoff 	sc->sc_ifas[index - 1] = ifa;
197508b68b0eSGleb Smirnoff 	ifa->ifa_carp = sc;
197608b68b0eSGleb Smirnoff 	carp_hmac_prepare(sc);
197708b68b0eSGleb Smirnoff 	carp_sc_state(sc);
197808b68b0eSGleb Smirnoff 	CARP_UNLOCK(sc);
19799c2cd1aaSGleb Smirnoff 
19809c2cd1aaSGleb Smirnoff 	sx_xunlock(&carp_sx);
198108b68b0eSGleb Smirnoff 
198208b68b0eSGleb Smirnoff 	return (0);
198308b68b0eSGleb Smirnoff }
198408b68b0eSGleb Smirnoff 
198508b68b0eSGleb Smirnoff void
1986338e227aSLuiz Otavio O Souza carp_detach(struct ifaddr *ifa, bool keep_cif)
198708b68b0eSGleb Smirnoff {
1988a9a2c40cSGleb Smirnoff 	struct ifnet *ifp = ifa->ifa_ifp;
1989a9a2c40cSGleb Smirnoff 	struct carp_if *cif = ifp->if_carp;
199008b68b0eSGleb Smirnoff 	struct carp_softc *sc = ifa->ifa_carp;
199108b68b0eSGleb Smirnoff 	int i, index;
199208b68b0eSGleb Smirnoff 
199308b68b0eSGleb Smirnoff 	KASSERT(sc != NULL, ("%s: %p not attached", __func__, ifa));
199408b68b0eSGleb Smirnoff 
19959c2cd1aaSGleb Smirnoff 	sx_xlock(&carp_sx);
199608b68b0eSGleb Smirnoff 
19979c2cd1aaSGleb Smirnoff 	CARP_LOCK(sc);
199808b68b0eSGleb Smirnoff 	/* Shift array. */
199908b68b0eSGleb Smirnoff 	index = sc->sc_naddrs + sc->sc_naddrs6;
200008b68b0eSGleb Smirnoff 	for (i = 0; i < index; i++)
200108b68b0eSGleb Smirnoff 		if (sc->sc_ifas[i] == ifa)
200208b68b0eSGleb Smirnoff 			break;
200308b68b0eSGleb Smirnoff 	KASSERT(i < index, ("%s: %p no backref", __func__, ifa));
200408b68b0eSGleb Smirnoff 	for (; i < index - 1; i++)
200508b68b0eSGleb Smirnoff 		sc->sc_ifas[i] = sc->sc_ifas[i+1];
200608b68b0eSGleb Smirnoff 	sc->sc_ifas[index - 1] = NULL;
200708b68b0eSGleb Smirnoff 
200808b68b0eSGleb Smirnoff 	switch (ifa->ifa_addr->sa_family) {
200908b68b0eSGleb Smirnoff #ifdef INET
201008b68b0eSGleb Smirnoff 	case AF_INET:
2011a9a2c40cSGleb Smirnoff 		cif->cif_naddrs--;
201208b68b0eSGleb Smirnoff 		sc->sc_naddrs--;
201308b68b0eSGleb Smirnoff 		break;
201408b68b0eSGleb Smirnoff #endif
201508b68b0eSGleb Smirnoff #ifdef INET6
201608b68b0eSGleb Smirnoff 	case AF_INET6:
2017a9a2c40cSGleb Smirnoff 		cif->cif_naddrs6--;
201808b68b0eSGleb Smirnoff 		sc->sc_naddrs6--;
201908b68b0eSGleb Smirnoff 		break;
202008b68b0eSGleb Smirnoff #endif
202108b68b0eSGleb Smirnoff 	}
202208b68b0eSGleb Smirnoff 
20232512b096SGleb Smirnoff 	carp_ifa_delroute(ifa);
2024a9a2c40cSGleb Smirnoff 	carp_multicast_cleanup(cif, ifa->ifa_addr->sa_family);
202508b68b0eSGleb Smirnoff 
202608b68b0eSGleb Smirnoff 	ifa->ifa_carp = NULL;
202708b68b0eSGleb Smirnoff 	ifa_free(ifa);
202808b68b0eSGleb Smirnoff 
202908b68b0eSGleb Smirnoff 	carp_hmac_prepare(sc);
203008b68b0eSGleb Smirnoff 	carp_sc_state(sc);
203108b68b0eSGleb Smirnoff 
2032338e227aSLuiz Otavio O Souza 	if (!keep_cif && sc->sc_naddrs == 0 && sc->sc_naddrs6 == 0)
203308b68b0eSGleb Smirnoff 		carp_destroy(sc);
20349c2cd1aaSGleb Smirnoff 	else
203508b68b0eSGleb Smirnoff 		CARP_UNLOCK(sc);
20369c2cd1aaSGleb Smirnoff 
2037338e227aSLuiz Otavio O Souza 	if (!keep_cif)
20389c2cd1aaSGleb Smirnoff 		CIF_FREE(cif);
20399c2cd1aaSGleb Smirnoff 
20409c2cd1aaSGleb Smirnoff 	sx_xunlock(&carp_sx);
204108b68b0eSGleb Smirnoff }
204208b68b0eSGleb Smirnoff 
204308b68b0eSGleb Smirnoff static void
2044d01641e2SWill Andrews carp_set_state(struct carp_softc *sc, int state, const char *reason)
204508b68b0eSGleb Smirnoff {
204608b68b0eSGleb Smirnoff 
204708b68b0eSGleb Smirnoff 	CARP_LOCK_ASSERT(sc);
204808b68b0eSGleb Smirnoff 
204908b68b0eSGleb Smirnoff 	if (sc->sc_state != state) {
205008b68b0eSGleb Smirnoff 		const char *carp_states[] = { CARP_STATES };
205108b68b0eSGleb Smirnoff 		char subsys[IFNAMSIZ+5];
205208b68b0eSGleb Smirnoff 
205308b68b0eSGleb Smirnoff 		snprintf(subsys, IFNAMSIZ+5, "%u@%s", sc->sc_vhid,
205408b68b0eSGleb Smirnoff 		    sc->sc_carpdev->if_xname);
2055d01641e2SWill Andrews 
2056d01641e2SWill Andrews 		CARP_LOG("%s: %s -> %s (%s)\n", subsys,
2057d01641e2SWill Andrews 		    carp_states[sc->sc_state], carp_states[state], reason);
2058d01641e2SWill Andrews 
2059d01641e2SWill Andrews 		sc->sc_state = state;
2060d01641e2SWill Andrews 
206108b68b0eSGleb Smirnoff 		devctl_notify("CARP", subsys, carp_states[state], NULL);
206208b68b0eSGleb Smirnoff 	}
206308b68b0eSGleb Smirnoff }
206408b68b0eSGleb Smirnoff 
206508b68b0eSGleb Smirnoff static void
206608b68b0eSGleb Smirnoff carp_linkstate(struct ifnet *ifp)
2067d220759bSGleb Smirnoff {
2068d220759bSGleb Smirnoff 	struct carp_softc *sc;
2069d220759bSGleb Smirnoff 
207008b68b0eSGleb Smirnoff 	CIF_LOCK(ifp->if_carp);
207108b68b0eSGleb Smirnoff 	IFNET_FOREACH_CARP(ifp, sc) {
207208b68b0eSGleb Smirnoff 		CARP_LOCK(sc);
207308b68b0eSGleb Smirnoff 		carp_sc_state(sc);
207408b68b0eSGleb Smirnoff 		CARP_UNLOCK(sc);
207508b68b0eSGleb Smirnoff 	}
207608b68b0eSGleb Smirnoff 	CIF_UNLOCK(ifp->if_carp);
20774cb39345SGleb Smirnoff }
20784cb39345SGleb Smirnoff 
20794cb39345SGleb Smirnoff static void
208008b68b0eSGleb Smirnoff carp_sc_state(struct carp_softc *sc)
20814cb39345SGleb Smirnoff {
208208b68b0eSGleb Smirnoff 
208308b68b0eSGleb Smirnoff 	CARP_LOCK_ASSERT(sc);
20844cb39345SGleb Smirnoff 
2085e8c34a71SGleb Smirnoff 	if (sc->sc_carpdev->if_link_state != LINK_STATE_UP ||
2086167a3440SAlexander Motin 	    !(sc->sc_carpdev->if_flags & IFF_UP) ||
2087167a3440SAlexander Motin 	    !V_carp_allow) {
2088a9771948SGleb Smirnoff 		callout_stop(&sc->sc_ad_tmo);
208908b68b0eSGleb Smirnoff #ifdef INET
2090a9771948SGleb Smirnoff 		callout_stop(&sc->sc_md_tmo);
209108b68b0eSGleb Smirnoff #endif
209208b68b0eSGleb Smirnoff #ifdef INET6
2093a9771948SGleb Smirnoff 		callout_stop(&sc->sc_md6_tmo);
209408b68b0eSGleb Smirnoff #endif
2095bb269f3aSWill Andrews 		carp_set_state(sc, INIT, "hardware interface down");
2096a9771948SGleb Smirnoff 		carp_setrun(sc, 0);
2097f08535f8SGleb Smirnoff 		if (!sc->sc_suppress)
2098c5c392e7SMikolaj Golub 			carp_demote_adj(V_carp_ifdown_adj, "interface down");
2099a9771948SGleb Smirnoff 		sc->sc_suppress = 1;
2100a9771948SGleb Smirnoff 	} else {
2101bb269f3aSWill Andrews 		carp_set_state(sc, INIT, "hardware interface up");
2102a9771948SGleb Smirnoff 		carp_setrun(sc, 0);
2103a9771948SGleb Smirnoff 		if (sc->sc_suppress)
2104c5c392e7SMikolaj Golub 			carp_demote_adj(-V_carp_ifdown_adj, "interface up");
2105a9771948SGleb Smirnoff 		sc->sc_suppress = 0;
2106a9771948SGleb Smirnoff 	}
2107a9771948SGleb Smirnoff }
2108a9771948SGleb Smirnoff 
2109f08535f8SGleb Smirnoff static void
2110f08535f8SGleb Smirnoff carp_demote_adj(int adj, char *reason)
2111f08535f8SGleb Smirnoff {
2112c5c392e7SMikolaj Golub 	atomic_add_int(&V_carp_demotion, adj);
2113c5c392e7SMikolaj Golub 	CARP_LOG("demoted by %d to %d (%s)\n", adj, V_carp_demotion, reason);
2114f08535f8SGleb Smirnoff 	taskqueue_enqueue(taskqueue_swi, &carp_sendall_task);
2115f08535f8SGleb Smirnoff }
211608b68b0eSGleb Smirnoff 
21177951008bSGleb Smirnoff static int
2118167a3440SAlexander Motin carp_allow_sysctl(SYSCTL_HANDLER_ARGS)
2119167a3440SAlexander Motin {
2120167a3440SAlexander Motin 	int new, error;
2121167a3440SAlexander Motin 	struct carp_softc *sc;
2122167a3440SAlexander Motin 
2123167a3440SAlexander Motin 	new = V_carp_allow;
2124167a3440SAlexander Motin 	error = sysctl_handle_int(oidp, &new, 0, req);
2125167a3440SAlexander Motin 	if (error || !req->newptr)
2126167a3440SAlexander Motin 		return (error);
2127167a3440SAlexander Motin 
2128167a3440SAlexander Motin 	if (V_carp_allow != new) {
2129167a3440SAlexander Motin 		V_carp_allow = new;
2130167a3440SAlexander Motin 
2131167a3440SAlexander Motin 		mtx_lock(&carp_mtx);
2132167a3440SAlexander Motin 		LIST_FOREACH(sc, &carp_list, sc_next) {
2133167a3440SAlexander Motin 			CARP_LOCK(sc);
2134167a3440SAlexander Motin 			if (curvnet == sc->sc_carpdev->if_vnet)
2135167a3440SAlexander Motin 				carp_sc_state(sc);
2136167a3440SAlexander Motin 			CARP_UNLOCK(sc);
2137167a3440SAlexander Motin 		}
2138167a3440SAlexander Motin 		mtx_unlock(&carp_mtx);
2139167a3440SAlexander Motin 	}
2140167a3440SAlexander Motin 
2141167a3440SAlexander Motin 	return (0);
2142167a3440SAlexander Motin }
2143167a3440SAlexander Motin 
2144167a3440SAlexander Motin static int
21450d3d234cSKristof Provost carp_dscp_sysctl(SYSCTL_HANDLER_ARGS)
21460d3d234cSKristof Provost {
21470d3d234cSKristof Provost 	int new, error;
21480d3d234cSKristof Provost 
21490d3d234cSKristof Provost 	new = V_carp_dscp;
21500d3d234cSKristof Provost 	error = sysctl_handle_int(oidp, &new, 0, req);
21510d3d234cSKristof Provost 	if (error || !req->newptr)
21520d3d234cSKristof Provost 		return (error);
21530d3d234cSKristof Provost 
21540d3d234cSKristof Provost 	if (new < 0 || new > 63)
21550d3d234cSKristof Provost 		return (EINVAL);
21560d3d234cSKristof Provost 
21570d3d234cSKristof Provost 	V_carp_dscp = new;
21580d3d234cSKristof Provost 
21590d3d234cSKristof Provost 	return (0);
21600d3d234cSKristof Provost }
21610d3d234cSKristof Provost 
21620d3d234cSKristof Provost static int
21637951008bSGleb Smirnoff carp_demote_adj_sysctl(SYSCTL_HANDLER_ARGS)
21647951008bSGleb Smirnoff {
21657951008bSGleb Smirnoff 	int new, error;
21667951008bSGleb Smirnoff 
2167c5c392e7SMikolaj Golub 	new = V_carp_demotion;
21687951008bSGleb Smirnoff 	error = sysctl_handle_int(oidp, &new, 0, req);
21697951008bSGleb Smirnoff 	if (error || !req->newptr)
21707951008bSGleb Smirnoff 		return (error);
21717951008bSGleb Smirnoff 
21727951008bSGleb Smirnoff 	carp_demote_adj(new, "sysctl");
21737951008bSGleb Smirnoff 
21747951008bSGleb Smirnoff 	return (0);
21757951008bSGleb Smirnoff }
21767951008bSGleb Smirnoff 
217754bfbd51SWill Andrews #ifdef INET
217854bfbd51SWill Andrews extern  struct domain inetdomain;
217954bfbd51SWill Andrews static struct protosw in_carp_protosw = {
218054bfbd51SWill Andrews 	.pr_type =		SOCK_RAW,
218154bfbd51SWill Andrews 	.pr_domain =		&inetdomain,
218254bfbd51SWill Andrews 	.pr_protocol =		IPPROTO_CARP,
218354bfbd51SWill Andrews 	.pr_flags =		PR_ATOMIC|PR_ADDR,
218454bfbd51SWill Andrews 	.pr_input =		carp_input,
218573d76e77SKevin Lo 	.pr_output =		rip_output,
218654bfbd51SWill Andrews 	.pr_ctloutput =		rip_ctloutput,
218754bfbd51SWill Andrews 	.pr_usrreqs =		&rip_usrreqs
218854bfbd51SWill Andrews };
218954bfbd51SWill Andrews #endif
219054bfbd51SWill Andrews 
219154bfbd51SWill Andrews #ifdef INET6
219254bfbd51SWill Andrews extern	struct domain inet6domain;
21938f5a8818SKevin Lo static struct protosw in6_carp_protosw = {
219454bfbd51SWill Andrews 	.pr_type =		SOCK_RAW,
219554bfbd51SWill Andrews 	.pr_domain =		&inet6domain,
219654bfbd51SWill Andrews 	.pr_protocol =		IPPROTO_CARP,
219754bfbd51SWill Andrews 	.pr_flags =		PR_ATOMIC|PR_ADDR,
219854bfbd51SWill Andrews 	.pr_input =		carp6_input,
219973d76e77SKevin Lo 	.pr_output =		rip6_output,
220054bfbd51SWill Andrews 	.pr_ctloutput =		rip6_ctloutput,
220154bfbd51SWill Andrews 	.pr_usrreqs =		&rip6_usrreqs
220254bfbd51SWill Andrews };
220354bfbd51SWill Andrews #endif
220454bfbd51SWill Andrews 
220554bfbd51SWill Andrews static void
220654bfbd51SWill Andrews carp_mod_cleanup(void)
2207a9771948SGleb Smirnoff {
220854bfbd51SWill Andrews 
220954bfbd51SWill Andrews #ifdef INET
221054bfbd51SWill Andrews 	if (proto_reg[CARP_INET] == 0) {
221115249f73SWill Andrews 		(void)ipproto_unregister(IPPROTO_CARP);
221254bfbd51SWill Andrews 		pf_proto_unregister(PF_INET, IPPROTO_CARP, SOCK_RAW);
221354bfbd51SWill Andrews 		proto_reg[CARP_INET] = -1;
221454bfbd51SWill Andrews 	}
221554bfbd51SWill Andrews 	carp_iamatch_p = NULL;
221654bfbd51SWill Andrews #endif
221754bfbd51SWill Andrews #ifdef INET6
221854bfbd51SWill Andrews 	if (proto_reg[CARP_INET6] == 0) {
221915249f73SWill Andrews 		(void)ip6proto_unregister(IPPROTO_CARP);
222054bfbd51SWill Andrews 		pf_proto_unregister(PF_INET6, IPPROTO_CARP, SOCK_RAW);
222154bfbd51SWill Andrews 		proto_reg[CARP_INET6] = -1;
222254bfbd51SWill Andrews 	}
222354bfbd51SWill Andrews 	carp_iamatch6_p = NULL;
222454bfbd51SWill Andrews 	carp_macmatch6_p = NULL;
222554bfbd51SWill Andrews #endif
222608b68b0eSGleb Smirnoff 	carp_ioctl_p = NULL;
222708b68b0eSGleb Smirnoff 	carp_attach_p = NULL;
222808b68b0eSGleb Smirnoff 	carp_detach_p = NULL;
222908b68b0eSGleb Smirnoff 	carp_get_vhid_p = NULL;
223054bfbd51SWill Andrews 	carp_linkstate_p = NULL;
223154bfbd51SWill Andrews 	carp_forus_p = NULL;
223254bfbd51SWill Andrews 	carp_output_p = NULL;
2233f08535f8SGleb Smirnoff 	carp_demote_adj_p = NULL;
223424421c1cSGleb Smirnoff 	carp_master_p = NULL;
2235f08535f8SGleb Smirnoff 	mtx_unlock(&carp_mtx);
2236f08535f8SGleb Smirnoff 	taskqueue_drain(taskqueue_swi, &carp_sendall_task);
223754bfbd51SWill Andrews 	mtx_destroy(&carp_mtx);
223893d4534cSGleb Smirnoff 	sx_destroy(&carp_sx);
223954bfbd51SWill Andrews }
224054bfbd51SWill Andrews 
224154bfbd51SWill Andrews static int
224254bfbd51SWill Andrews carp_mod_load(void)
224354bfbd51SWill Andrews {
224415249f73SWill Andrews 	int err;
224554bfbd51SWill Andrews 
2246d92d54d5SGleb Smirnoff 	mtx_init(&carp_mtx, "carp_mtx", NULL, MTX_DEF);
224793d4534cSGleb Smirnoff 	sx_init(&carp_sx, "carp_sx");
224808b68b0eSGleb Smirnoff 	LIST_INIT(&carp_list);
224908b68b0eSGleb Smirnoff 	carp_get_vhid_p = carp_get_vhid;
225054bfbd51SWill Andrews 	carp_forus_p = carp_forus;
225154bfbd51SWill Andrews 	carp_output_p = carp_output;
225208b68b0eSGleb Smirnoff 	carp_linkstate_p = carp_linkstate;
225308b68b0eSGleb Smirnoff 	carp_ioctl_p = carp_ioctl;
225408b68b0eSGleb Smirnoff 	carp_attach_p = carp_attach;
225508b68b0eSGleb Smirnoff 	carp_detach_p = carp_detach;
2256f08535f8SGleb Smirnoff 	carp_demote_adj_p = carp_demote_adj;
225724421c1cSGleb Smirnoff 	carp_master_p = carp_master;
225854bfbd51SWill Andrews #ifdef INET6
225954bfbd51SWill Andrews 	carp_iamatch6_p = carp_iamatch6;
226054bfbd51SWill Andrews 	carp_macmatch6_p = carp_macmatch6;
226154bfbd51SWill Andrews 	proto_reg[CARP_INET6] = pf_proto_register(PF_INET6,
226254bfbd51SWill Andrews 	    (struct protosw *)&in6_carp_protosw);
226308b68b0eSGleb Smirnoff 	if (proto_reg[CARP_INET6]) {
226454bfbd51SWill Andrews 		printf("carp: error %d attaching to PF_INET6\n",
226554bfbd51SWill Andrews 		    proto_reg[CARP_INET6]);
226654bfbd51SWill Andrews 		carp_mod_cleanup();
22676baf7a24SGleb Smirnoff 		return (proto_reg[CARP_INET6]);
226854bfbd51SWill Andrews 	}
226915249f73SWill Andrews 	err = ip6proto_register(IPPROTO_CARP);
227015249f73SWill Andrews 	if (err) {
227115249f73SWill Andrews 		printf("carp: error %d registering with INET6\n", err);
227215249f73SWill Andrews 		carp_mod_cleanup();
22736baf7a24SGleb Smirnoff 		return (err);
227415249f73SWill Andrews 	}
227554bfbd51SWill Andrews #endif
227654bfbd51SWill Andrews #ifdef INET
227754bfbd51SWill Andrews 	carp_iamatch_p = carp_iamatch;
227854bfbd51SWill Andrews 	proto_reg[CARP_INET] = pf_proto_register(PF_INET, &in_carp_protosw);
227908b68b0eSGleb Smirnoff 	if (proto_reg[CARP_INET]) {
228054bfbd51SWill Andrews 		printf("carp: error %d attaching to PF_INET\n",
228154bfbd51SWill Andrews 		    proto_reg[CARP_INET]);
228254bfbd51SWill Andrews 		carp_mod_cleanup();
22836baf7a24SGleb Smirnoff 		return (proto_reg[CARP_INET]);
228454bfbd51SWill Andrews 	}
228515249f73SWill Andrews 	err = ipproto_register(IPPROTO_CARP);
228615249f73SWill Andrews 	if (err) {
228715249f73SWill Andrews 		printf("carp: error %d registering with INET\n", err);
228815249f73SWill Andrews 		carp_mod_cleanup();
22896baf7a24SGleb Smirnoff 		return (err);
229015249f73SWill Andrews 	}
229154bfbd51SWill Andrews #endif
229208b68b0eSGleb Smirnoff 	return (0);
229354bfbd51SWill Andrews }
2294a9771948SGleb Smirnoff 
229554bfbd51SWill Andrews static int
229654bfbd51SWill Andrews carp_modevent(module_t mod, int type, void *data)
229754bfbd51SWill Andrews {
229854bfbd51SWill Andrews 	switch (type) {
229954bfbd51SWill Andrews 	case MOD_LOAD:
230054bfbd51SWill Andrews 		return carp_mod_load();
230154bfbd51SWill Andrews 		/* NOTREACHED */
2302a9771948SGleb Smirnoff 	case MOD_UNLOAD:
230308b68b0eSGleb Smirnoff 		mtx_lock(&carp_mtx);
230408b68b0eSGleb Smirnoff 		if (LIST_EMPTY(&carp_list))
230554bfbd51SWill Andrews 			carp_mod_cleanup();
230608b68b0eSGleb Smirnoff 		else {
230708b68b0eSGleb Smirnoff 			mtx_unlock(&carp_mtx);
230854bfbd51SWill Andrews 			return (EBUSY);
230908b68b0eSGleb Smirnoff 		}
2310a9771948SGleb Smirnoff 		break;
2311a9771948SGleb Smirnoff 
2312a9771948SGleb Smirnoff 	default:
23130fa08018SGleb Smirnoff 		return (EINVAL);
2314a9771948SGleb Smirnoff 	}
2315a9771948SGleb Smirnoff 
23160fa08018SGleb Smirnoff 	return (0);
2317a9771948SGleb Smirnoff }
2318a9771948SGleb Smirnoff 
2319a9771948SGleb Smirnoff static moduledata_t carp_mod = {
2320a9771948SGleb Smirnoff 	"carp",
2321a9771948SGleb Smirnoff 	carp_modevent,
23229823d527SKevin Lo 	0
2323a9771948SGleb Smirnoff };
2324a9771948SGleb Smirnoff 
2325e24fa11dSWill Andrews DECLARE_MODULE(carp, carp_mod, SI_SUB_PROTO_DOMAIN, SI_ORDER_ANY);
2326