2008-05-07 23:55:24 +04:00
|
|
|
/* $NetBSD: agr.c,v 1.9 2008/05/07 19:55:24 dyoung Exp $ */
|
2005-03-18 14:11:50 +03:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Copyright (c)2005 YAMAMOTO Takashi,
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#if !defined(lint)
|
2008-05-07 23:55:24 +04:00
|
|
|
__RCSID("$NetBSD: agr.c,v 1.9 2008/05/07 19:55:24 dyoung Exp $");
|
2005-03-18 14:11:50 +03:00
|
|
|
#endif /* !defined(lint) */
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
|
|
|
|
#include <net/if.h>
|
|
|
|
#include <net/agr/if_agrioctl.h>
|
|
|
|
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <err.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
2008-05-06 08:33:42 +04:00
|
|
|
#include <stdio.h>
|
2005-03-18 14:11:50 +03:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <util.h>
|
|
|
|
|
2008-05-06 08:33:42 +04:00
|
|
|
#include "env.h"
|
|
|
|
#include "parse.h"
|
2005-03-19 06:56:06 +03:00
|
|
|
#include "extern.h"
|
2005-03-18 14:11:50 +03:00
|
|
|
#include "agr.h"
|
|
|
|
|
|
|
|
static int checkifname(const char *);
|
|
|
|
static void assertifname(const char *);
|
|
|
|
|
2008-05-07 23:55:24 +04:00
|
|
|
static const struct kwinst agrkw[] = {
|
|
|
|
{.k_word = "agrport", .k_type = KW_T_NUM, .k_neg = true,
|
|
|
|
.k_num = AGRCMD_ADDPORT, .k_negnum = AGRCMD_REMPORT,
|
|
|
|
.k_exec = agrsetport}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct pkw agr = PKW_INITIALIZER(&agr, "agr", NULL, NULL,
|
|
|
|
agrkw, __arraycount(agrkw), NULL);
|
|
|
|
|
2005-03-18 14:11:50 +03:00
|
|
|
static int
|
2005-03-19 20:31:48 +03:00
|
|
|
checkifname(const char *ifname)
|
2005-03-18 14:11:50 +03:00
|
|
|
{
|
|
|
|
|
2005-03-19 20:31:48 +03:00
|
|
|
return strncmp(ifname, "agr", 3) != 0 ||
|
|
|
|
!isdigit((unsigned char)ifname[3]);
|
2005-03-18 14:11:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-03-19 20:31:48 +03:00
|
|
|
assertifname(const char *ifname)
|
2005-03-18 14:11:50 +03:00
|
|
|
{
|
|
|
|
|
2005-03-19 20:31:48 +03:00
|
|
|
if (checkifname(ifname)) {
|
2005-03-18 14:11:50 +03:00
|
|
|
errx(EXIT_FAILURE, "valid only with agr(4) interfaces");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-06 08:33:42 +04:00
|
|
|
int
|
|
|
|
agrsetport(prop_dictionary_t env, prop_dictionary_t xenv)
|
2005-03-18 14:11:50 +03:00
|
|
|
{
|
2008-04-22 21:18:11 +04:00
|
|
|
char buf[IFNAMSIZ];
|
2005-03-18 14:11:50 +03:00
|
|
|
struct agrreq ar;
|
2008-05-06 08:33:42 +04:00
|
|
|
int s;
|
2008-05-07 01:13:20 +04:00
|
|
|
const char *port;
|
2008-05-06 08:33:42 +04:00
|
|
|
const char *ifname;
|
|
|
|
struct ifreq ifr;
|
2008-05-07 01:13:20 +04:00
|
|
|
int64_t cmd;
|
2005-03-18 14:11:50 +03:00
|
|
|
|
2008-05-06 08:33:42 +04:00
|
|
|
if ((s = getsock(AF_UNSPEC)) == -1)
|
|
|
|
err(EXIT_FAILURE, "%s: getsock", __func__);
|
2005-03-18 14:11:50 +03:00
|
|
|
|
2008-05-07 01:13:20 +04:00
|
|
|
if (!prop_dictionary_get_int64(env, "agrcmd", &cmd)) {
|
2008-05-06 08:33:42 +04:00
|
|
|
warnx("%s.%d", __func__, __LINE__);
|
|
|
|
errno = ENOENT;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2008-05-07 01:13:20 +04:00
|
|
|
if (!prop_dictionary_get_cstring_nocopy(env, "agrport", &port)) {
|
2008-05-06 08:33:42 +04:00
|
|
|
warnx("%s.%d", __func__, __LINE__);
|
|
|
|
errno = ENOENT;
|
|
|
|
return -1;
|
|
|
|
}
|
2008-05-07 01:13:20 +04:00
|
|
|
strlcpy(buf, port, sizeof(buf));
|
2008-04-22 21:18:11 +04:00
|
|
|
|
2008-05-06 08:33:42 +04:00
|
|
|
memset(&ifr, 0, sizeof(ifr));
|
|
|
|
if ((ifname = getifname(env)) == NULL)
|
|
|
|
err(EXIT_FAILURE, "%s: getifname", __func__);
|
2008-05-07 05:13:51 +04:00
|
|
|
assertifname(ifname);
|
2008-05-06 08:33:42 +04:00
|
|
|
estrlcpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
|
2005-03-18 14:11:50 +03:00
|
|
|
memset(&ar, 0, sizeof(ar));
|
|
|
|
ar.ar_version = AGRREQ_VERSION;
|
2008-05-07 01:13:20 +04:00
|
|
|
ar.ar_cmd = cmd;
|
2008-04-22 21:18:11 +04:00
|
|
|
ar.ar_buf = buf;
|
|
|
|
ar.ar_buflen = strlen(buf);
|
|
|
|
ifr.ifr_data = &ar;
|
2005-03-18 14:11:50 +03:00
|
|
|
|
2008-04-22 21:18:11 +04:00
|
|
|
if (ioctl(s, SIOCSETAGR, &ifr) == -1)
|
2005-03-18 14:11:50 +03:00
|
|
|
err(EXIT_FAILURE, "SIOCSETAGR");
|
2008-05-06 08:33:42 +04:00
|
|
|
return 0;
|
2005-03-18 14:11:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-05-06 21:29:04 +04:00
|
|
|
agr_status(prop_dictionary_t env, prop_dictionary_t oenv)
|
2005-03-18 14:11:50 +03:00
|
|
|
{
|
|
|
|
struct agrreq ar;
|
|
|
|
void *buf = NULL;
|
|
|
|
size_t buflen = 0;
|
|
|
|
struct agrportlist *apl;
|
|
|
|
struct agrportinfo *api;
|
|
|
|
int i;
|
2008-05-06 08:33:42 +04:00
|
|
|
int s;
|
|
|
|
const char *ifname;
|
|
|
|
struct ifreq ifr;
|
2005-03-18 14:11:50 +03:00
|
|
|
|
2008-05-06 08:33:42 +04:00
|
|
|
if ((s = getsock(AF_UNSPEC)) == -1)
|
|
|
|
err(EXIT_FAILURE, "%s: getsock", __func__);
|
|
|
|
|
|
|
|
memset(&ifr, 0, sizeof(ifr));
|
|
|
|
if ((ifname = getifname(env)) == NULL)
|
|
|
|
err(EXIT_FAILURE, "%s: getifname", __func__);
|
|
|
|
if (checkifname(ifname))
|
2005-03-18 14:11:50 +03:00
|
|
|
return;
|
2008-05-06 08:33:42 +04:00
|
|
|
estrlcpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
|
2005-03-18 14:11:50 +03:00
|
|
|
|
|
|
|
again:
|
|
|
|
memset(&ar, 0, sizeof(ar));
|
|
|
|
ar.ar_version = AGRREQ_VERSION;
|
|
|
|
ar.ar_cmd = AGRCMD_PORTLIST;
|
|
|
|
ar.ar_buf = buf;
|
|
|
|
ar.ar_buflen = buflen;
|
2008-05-06 08:33:42 +04:00
|
|
|
ifr.ifr_data = &ar;
|
2005-03-18 14:11:50 +03:00
|
|
|
|
|
|
|
if (ioctl(s, SIOCGETAGR, &ifr) == -1) {
|
|
|
|
if (errno != E2BIG) {
|
|
|
|
warn("SIOCGETAGR");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
free(buf);
|
|
|
|
buf = NULL;
|
|
|
|
buflen = 0;
|
|
|
|
goto again;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (buf == NULL) {
|
|
|
|
buflen = ar.ar_buflen;
|
|
|
|
buf = malloc(buflen);
|
|
|
|
if (buf == NULL) {
|
|
|
|
err(EXIT_FAILURE, "agr_status");
|
|
|
|
}
|
|
|
|
goto again;
|
|
|
|
}
|
|
|
|
|
|
|
|
apl = buf;
|
|
|
|
api = (void *)(apl + 1);
|
|
|
|
|
|
|
|
for (i = 0; i < apl->apl_nports; i++) {
|
|
|
|
char tmp[256];
|
|
|
|
|
|
|
|
snprintb(tmp, sizeof(tmp), AGRPORTINFO_BITS, api->api_flags);
|
|
|
|
printf("\tagrport: %s, flags=%s\n", api->api_ifname, tmp);
|
|
|
|
api++;
|
|
|
|
}
|
|
|
|
}
|