xref: /freebsd/sbin/ifconfig/carp.c (revision 10aa369afd9946da18ae51b07aeadc3314fba56d)
1 /*	$FreeBSD$ */
2 /*	from $OpenBSD: ifconfig.c,v 1.82 2003/10/19 05:43:35 mcbride Exp $ */
3 
4 /*-
5  * SPDX-License-Identifier: BSD-2-Clause
6  *
7  * Copyright (c) 2002 Michael Shalayeff. All rights reserved.
8  * Copyright (c) 2003 Ryan McBride. All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22  * IN NO EVENT SHALL THE AUTHOR OR HIS RELATIVES BE LIABLE FOR ANY DIRECT,
23  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25  * SERVICES; LOSS OF MIND, USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
27  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
28  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
29  * THE POSSIBILITY OF SUCH DAMAGE.
30  */
31 
32 #include <sys/param.h>
33 #include <sys/ioctl.h>
34 #include <sys/socket.h>
35 #include <sys/sockio.h>
36 
37 #include <stdlib.h>
38 #include <unistd.h>
39 
40 #include <net/if.h>
41 #include <netinet/in.h>
42 #include <netinet/in_var.h>
43 #include <netinet/ip_carp.h>
44 
45 #include <arpa/inet.h>
46 
47 #include <ctype.h>
48 #include <stdbool.h>
49 #include <stdio.h>
50 #include <string.h>
51 #include <stdlib.h>
52 #include <unistd.h>
53 #include <err.h>
54 #include <errno.h>
55 #include <netdb.h>
56 
57 #include <libifconfig.h>
58 
59 #include "ifconfig.h"
60 
61 static const char *carp_states[] = { CARP_STATES };
62 
63 static void carp_status(int s);
64 static void setcarp_vhid(const char *, int, int, const struct afswtch *rafp);
65 static void setcarp_callback(int, void *);
66 static void setcarp_advbase(const char *,int, int, const struct afswtch *rafp);
67 static void setcarp_advskew(const char *, int, int, const struct afswtch *rafp);
68 static void setcarp_passwd(const char *, int, int, const struct afswtch *rafp);
69 
70 static int carpr_vhid = -1;
71 static int carpr_advskew = -1;
72 static int carpr_advbase = -1;
73 static int carpr_state = -1;
74 static struct in_addr carp_addr;
75 static struct in6_addr carp_addr6;
76 static unsigned char const *carpr_key;
77 
78 static void
79 carp_status(int s)
80 {
81 	struct ifconfig_carp carpr[CARP_MAXVHID];
82 	char addr_buf[NI_MAXHOST];
83 
84 	if (ifconfig_carp_get_info(lifh, name, carpr, CARP_MAXVHID) == -1)
85 		return;
86 
87 	for (size_t i = 0; i < carpr[0].carpr_count; i++) {
88 		printf("\tcarp: %s vhid %d advbase %d advskew %d",
89 		    carp_states[carpr[i].carpr_state], carpr[i].carpr_vhid,
90 		    carpr[i].carpr_advbase, carpr[i].carpr_advskew);
91 		if (printkeys && carpr[i].carpr_key[0] != '\0')
92 			printf(" key \"%s\"\n", carpr[i].carpr_key);
93 		else
94 			printf("\n");
95 
96 		inet_ntop(AF_INET6, &carpr[i].carpr_addr6, addr_buf,
97 		    sizeof(addr_buf));
98 
99 		printf("\t      peer %s peer6 %s\n",
100 		    inet_ntoa(carpr[i].carpr_addr), addr_buf);
101 	}
102 }
103 
104 static void
105 setcarp_vhid(const char *val, int d, int s, const struct afswtch *afp)
106 {
107 
108 	carpr_vhid = atoi(val);
109 
110 	if (carpr_vhid <= 0 || carpr_vhid > CARP_MAXVHID)
111 		errx(1, "vhid must be greater than 0 and less than %u",
112 		    CARP_MAXVHID);
113 
114 	if (afp->af_setvhid == NULL)
115 		errx(1, "%s doesn't support carp(4)", afp->af_name);
116 	afp->af_setvhid(carpr_vhid);
117 	callback_register(setcarp_callback, NULL);
118 }
119 
120 static void
121 setcarp_callback(int s, void *arg __unused)
122 {
123 	struct ifconfig_carp carpr = { };
124 
125 	if (ifconfig_carp_get_vhid(lifh, name, &carpr, carpr_vhid) == -1) {
126 		if (ifconfig_err_errno(lifh) != ENOENT)
127 			return;
128 	}
129 
130 	carpr.carpr_vhid = carpr_vhid;
131 	if (carpr_key != NULL)
132 		/* XXX Should hash the password into the key here? */
133 		strlcpy(carpr.carpr_key, carpr_key, CARP_KEY_LEN);
134 	if (carpr_advskew > -1)
135 		carpr.carpr_advskew = carpr_advskew;
136 	if (carpr_advbase > -1)
137 		carpr.carpr_advbase = carpr_advbase;
138 	if (carpr_state > -1)
139 		carpr.carpr_state = carpr_state;
140 	if (carp_addr.s_addr != INADDR_ANY)
141 		carpr.carpr_addr = carp_addr;
142 	if (! IN6_IS_ADDR_UNSPECIFIED(&carp_addr6))
143 		memcpy(&carpr.carpr_addr6, &carp_addr6,
144 		    sizeof(carp_addr6));
145 
146 	if (ifconfig_carp_set_info(lifh, name, &carpr))
147 		err(1, "SIOCSVH");
148 }
149 
150 static void
151 setcarp_passwd(const char *val, int d, int s, const struct afswtch *afp)
152 {
153 
154 	if (carpr_vhid == -1)
155 		errx(1, "passwd requires vhid");
156 
157 	carpr_key = val;
158 }
159 
160 static void
161 setcarp_advskew(const char *val, int d, int s, const struct afswtch *afp)
162 {
163 
164 	if (carpr_vhid == -1)
165 		errx(1, "advskew requires vhid");
166 
167 	carpr_advskew = atoi(val);
168 }
169 
170 static void
171 setcarp_advbase(const char *val, int d, int s, const struct afswtch *afp)
172 {
173 
174 	if (carpr_vhid == -1)
175 		errx(1, "advbase requires vhid");
176 
177 	carpr_advbase = atoi(val);
178 }
179 
180 static void
181 setcarp_state(const char *val, int d, int s, const struct afswtch *afp)
182 {
183 	int i;
184 
185 	if (carpr_vhid == -1)
186 		errx(1, "state requires vhid");
187 
188 	for (i = 0; i <= CARP_MAXSTATE; i++)
189 		if (strcasecmp(carp_states[i], val) == 0) {
190 			carpr_state = i;
191 			return;
192 		}
193 
194 	errx(1, "unknown state");
195 }
196 
197 static void
198 setcarp_peer(const char *val, int d, int s, const struct afswtch *afp)
199 {
200 	carp_addr.s_addr = inet_addr(val);
201 }
202 
203 static void
204 setcarp_mcast(const char *val, int d, int s, const struct afswtch *afp)
205 {
206 	carp_addr.s_addr = htonl(INADDR_CARP_GROUP);
207 }
208 
209 static void
210 setcarp_peer6(const char *val, int d, int s, const struct afswtch *afp)
211 {
212 	struct addrinfo hints, *res;
213 
214 	memset(&hints, 0, sizeof(hints));
215 	hints.ai_family = AF_INET6;
216 	hints.ai_flags = AI_NUMERICHOST;
217 
218 	if (getaddrinfo(val, NULL, &hints, &res) != 0)
219 		errx(1, "Invalid IPv6 address %s", val);
220 
221 	memcpy(&carp_addr6, &((struct sockaddr_in6 *)res->ai_addr)->sin6_addr,
222 	    sizeof(carp_addr6));
223 	freeaddrinfo(res);
224 }
225 
226 static void
227 setcarp_mcast6(const char *val, int d, int s, const struct afswtch *afp)
228 {
229 	bzero(&carp_addr6, sizeof(carp_addr6));
230 	carp_addr6.s6_addr[0] = 0xff;
231 	carp_addr6.s6_addr[1] = 0x02;
232 	carp_addr6.s6_addr[15] = 0x12;
233 }
234 
235 static struct cmd carp_cmds[] = {
236 	DEF_CMD_ARG("advbase",	setcarp_advbase),
237 	DEF_CMD_ARG("advskew",	setcarp_advskew),
238 	DEF_CMD_ARG("pass",	setcarp_passwd),
239 	DEF_CMD_ARG("vhid",	setcarp_vhid),
240 	DEF_CMD_ARG("state",	setcarp_state),
241 	DEF_CMD_ARG("peer",	setcarp_peer),
242 	DEF_CMD("mcast",	0,	setcarp_mcast),
243 	DEF_CMD_ARG("peer6",	setcarp_peer6),
244 	DEF_CMD("mcast6", 	0,	setcarp_mcast6),
245 };
246 static struct afswtch af_carp = {
247 	.af_name	= "af_carp",
248 	.af_af		= AF_UNSPEC,
249 	.af_other_status = carp_status,
250 };
251 
252 static __constructor void
253 carp_ctor(void)
254 {
255 	int i;
256 
257 	/* Default to multicast. */
258 	setcarp_mcast(NULL, 0, 0, NULL);
259 	setcarp_mcast6(NULL, 0, 0, NULL);
260 
261 	for (i = 0; i < nitems(carp_cmds);  i++)
262 		cmd_register(&carp_cmds[i]);
263 	af_register(&af_carp);
264 }
265