2007-04-10 00:27:25 +00:00
|
|
|
/*-
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lint
|
|
|
|
static const char rcsid[] =
|
|
|
|
"$FreeBSD$";
|
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/sockio.h>
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include <net/ethernet.h>
|
|
|
|
#include <net/if.h>
|
2007-04-17 00:35:11 +00:00
|
|
|
#include <net/if_lagg.h>
|
2007-04-10 00:27:25 +00:00
|
|
|
#include <net/route.h>
|
|
|
|
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <err.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#include "ifconfig.h"
|
|
|
|
|
2007-07-05 09:18:57 +00:00
|
|
|
char lacpbuf[120]; /* LACP peer '[(a,a,a),(p,p,p)]' */
|
|
|
|
|
2007-04-10 00:27:25 +00:00
|
|
|
static void
|
2007-04-17 00:35:11 +00:00
|
|
|
setlaggport(const char *val, int d, int s, const struct afswtch *afp)
|
2007-04-10 00:27:25 +00:00
|
|
|
{
|
2007-04-17 00:35:11 +00:00
|
|
|
struct lagg_reqport rp;
|
2007-04-10 00:27:25 +00:00
|
|
|
|
|
|
|
bzero(&rp, sizeof(rp));
|
|
|
|
strlcpy(rp.rp_ifname, name, sizeof(rp.rp_ifname));
|
|
|
|
strlcpy(rp.rp_portname, val, sizeof(rp.rp_portname));
|
|
|
|
|
2007-04-17 00:35:11 +00:00
|
|
|
if (ioctl(s, SIOCSLAGGPORT, &rp))
|
|
|
|
err(1, "SIOCSLAGGPORT");
|
2007-04-10 00:27:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-04-17 00:35:11 +00:00
|
|
|
unsetlaggport(const char *val, int d, int s, const struct afswtch *afp)
|
2007-04-10 00:27:25 +00:00
|
|
|
{
|
2007-04-17 00:35:11 +00:00
|
|
|
struct lagg_reqport rp;
|
2007-04-10 00:27:25 +00:00
|
|
|
|
|
|
|
bzero(&rp, sizeof(rp));
|
|
|
|
strlcpy(rp.rp_ifname, name, sizeof(rp.rp_ifname));
|
|
|
|
strlcpy(rp.rp_portname, val, sizeof(rp.rp_portname));
|
|
|
|
|
2007-04-17 00:35:11 +00:00
|
|
|
if (ioctl(s, SIOCSLAGGDELPORT, &rp))
|
|
|
|
err(1, "SIOCSLAGGDELPORT");
|
2007-04-10 00:27:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-04-17 00:35:11 +00:00
|
|
|
setlaggproto(const char *val, int d, int s, const struct afswtch *afp)
|
2007-04-10 00:27:25 +00:00
|
|
|
{
|
2007-06-12 10:07:57 +00:00
|
|
|
struct lagg_protos lpr[] = LAGG_PROTOS;
|
2007-04-17 00:35:11 +00:00
|
|
|
struct lagg_reqall ra;
|
2007-04-10 00:27:25 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
bzero(&ra, sizeof(ra));
|
2007-04-17 00:35:11 +00:00
|
|
|
ra.ra_proto = LAGG_PROTO_MAX;
|
2007-04-10 00:27:25 +00:00
|
|
|
|
2007-06-12 10:07:57 +00:00
|
|
|
for (i = 0; i < (sizeof(lpr) / sizeof(lpr[0])); i++) {
|
|
|
|
if (strcmp(val, lpr[i].lpr_name) == 0) {
|
|
|
|
ra.ra_proto = lpr[i].lpr_proto;
|
2007-04-10 00:27:25 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2007-04-17 00:35:11 +00:00
|
|
|
if (ra.ra_proto == LAGG_PROTO_MAX)
|
|
|
|
errx(1, "Invalid aggregation protocol: %s", val);
|
2007-04-10 00:27:25 +00:00
|
|
|
|
|
|
|
strlcpy(ra.ra_ifname, name, sizeof(ra.ra_ifname));
|
2007-04-17 00:35:11 +00:00
|
|
|
if (ioctl(s, SIOCSLAGG, &ra) != 0)
|
|
|
|
err(1, "SIOCSLAGG");
|
2007-04-10 00:27:25 +00:00
|
|
|
}
|
|
|
|
|
2007-07-05 09:18:57 +00:00
|
|
|
static char *
|
|
|
|
lacp_format_mac(const uint8_t *mac, char *buf, size_t buflen)
|
|
|
|
{
|
|
|
|
snprintf(buf, buflen, "%02X-%02X-%02X-%02X-%02X-%02X",
|
|
|
|
(int)mac[0], (int)mac[1], (int)mac[2], (int)mac[3],
|
|
|
|
(int)mac[4], (int)mac[5]);
|
|
|
|
|
|
|
|
return (buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
|
|
|
lacp_format_peer(struct lacp_opreq *req, const char *sep)
|
|
|
|
{
|
|
|
|
char macbuf1[20];
|
|
|
|
char macbuf2[20];
|
|
|
|
|
|
|
|
snprintf(lacpbuf, sizeof(lacpbuf),
|
|
|
|
"[(%04X,%s,%04X,%04X,%04X),%s(%04X,%s,%04X,%04X,%04X)]",
|
|
|
|
req->actor_prio,
|
|
|
|
lacp_format_mac(req->actor_mac, macbuf1, sizeof(macbuf1)),
|
|
|
|
req->actor_key, req->actor_portprio, req->actor_portno, sep,
|
|
|
|
req->partner_prio,
|
|
|
|
lacp_format_mac(req->partner_mac, macbuf2, sizeof(macbuf2)),
|
|
|
|
req->partner_key, req->partner_portprio, req->partner_portno);
|
|
|
|
|
|
|
|
return(lacpbuf);
|
|
|
|
}
|
|
|
|
|
2007-04-10 00:27:25 +00:00
|
|
|
static void
|
2007-04-17 00:35:11 +00:00
|
|
|
lagg_status(int s)
|
2007-04-10 00:27:25 +00:00
|
|
|
{
|
2007-06-12 10:07:57 +00:00
|
|
|
struct lagg_protos lpr[] = LAGG_PROTOS;
|
2007-04-17 00:35:11 +00:00
|
|
|
struct lagg_reqport rp, rpbuf[LAGG_MAX_PORTS];
|
|
|
|
struct lagg_reqall ra;
|
2007-07-05 09:18:57 +00:00
|
|
|
struct lacp_opreq *lp;
|
2007-04-10 00:27:25 +00:00
|
|
|
const char *proto = "<unknown>";
|
|
|
|
int i, isport = 0;
|
|
|
|
|
|
|
|
bzero(&rp, sizeof(rp));
|
|
|
|
bzero(&ra, sizeof(ra));
|
|
|
|
|
|
|
|
strlcpy(rp.rp_ifname, name, sizeof(rp.rp_ifname));
|
|
|
|
strlcpy(rp.rp_portname, name, sizeof(rp.rp_portname));
|
|
|
|
|
2007-04-17 00:35:11 +00:00
|
|
|
if (ioctl(s, SIOCGLAGGPORT, &rp) == 0)
|
2007-04-10 00:27:25 +00:00
|
|
|
isport = 1;
|
|
|
|
|
|
|
|
strlcpy(ra.ra_ifname, name, sizeof(ra.ra_ifname));
|
|
|
|
ra.ra_size = sizeof(rpbuf);
|
|
|
|
ra.ra_port = rpbuf;
|
|
|
|
|
2007-04-17 00:35:11 +00:00
|
|
|
if (ioctl(s, SIOCGLAGG, &ra) == 0) {
|
2007-07-05 09:18:57 +00:00
|
|
|
lp = (struct lacp_opreq *)&ra.ra_lacpreq;
|
|
|
|
|
2007-06-12 10:07:57 +00:00
|
|
|
for (i = 0; i < (sizeof(lpr) / sizeof(lpr[0])); i++) {
|
|
|
|
if (ra.ra_proto == lpr[i].lpr_proto) {
|
|
|
|
proto = lpr[i].lpr_name;
|
2007-04-10 00:27:25 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-05 09:18:57 +00:00
|
|
|
printf("\tlaggproto %s", proto);
|
2007-04-10 00:27:25 +00:00
|
|
|
if (isport)
|
2007-04-17 00:35:11 +00:00
|
|
|
printf(" laggdev %s", rp.rp_ifname);
|
2007-04-10 00:27:25 +00:00
|
|
|
putchar('\n');
|
2007-07-05 09:18:57 +00:00
|
|
|
if (verbose && ra.ra_proto == LAGG_PROTO_LACP)
|
|
|
|
printf("\tlag id: %s\n",
|
|
|
|
lacp_format_peer(lp, "\n\t\t "));
|
2007-04-10 00:27:25 +00:00
|
|
|
|
|
|
|
for (i = 0; i < ra.ra_ports; i++) {
|
2007-07-05 09:18:57 +00:00
|
|
|
lp = (struct lacp_opreq *)&rpbuf[i].rp_lacpreq;
|
|
|
|
printf("\tlaggport: %s ", rpbuf[i].rp_portname);
|
|
|
|
printb("flags", rpbuf[i].rp_flags, LAGG_PORT_BITS);
|
|
|
|
if (verbose && ra.ra_proto == LAGG_PROTO_LACP)
|
|
|
|
printf(" state=%X", lp->actor_state);
|
2007-04-10 00:27:25 +00:00
|
|
|
putchar('\n');
|
2007-07-05 09:18:57 +00:00
|
|
|
if (verbose && ra.ra_proto == LAGG_PROTO_LACP)
|
|
|
|
printf("\t\t%s\n",
|
|
|
|
lacp_format_peer(lp, "\n\t\t "));
|
2007-04-10 00:27:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (0 /* XXX */) {
|
2007-04-17 00:35:11 +00:00
|
|
|
printf("\tsupported aggregation protocols:\n");
|
2007-06-12 10:07:57 +00:00
|
|
|
for (i = 0; i < (sizeof(lpr) / sizeof(lpr[0])); i++)
|
|
|
|
printf("\t\tlaggproto %s\n", lpr[i].lpr_name);
|
2007-04-10 00:27:25 +00:00
|
|
|
}
|
|
|
|
} else if (isport)
|
2007-04-17 00:35:11 +00:00
|
|
|
printf("\tlagg: laggdev %s\n", rp.rp_ifname);
|
2007-04-10 00:27:25 +00:00
|
|
|
}
|
|
|
|
|
2007-04-17 00:35:11 +00:00
|
|
|
static struct cmd lagg_cmds[] = {
|
|
|
|
DEF_CMD_ARG("laggport", setlaggport),
|
|
|
|
DEF_CMD_ARG("-laggport", unsetlaggport),
|
|
|
|
DEF_CMD_ARG("laggproto", setlaggproto),
|
2007-04-10 00:27:25 +00:00
|
|
|
};
|
2007-04-17 00:35:11 +00:00
|
|
|
static struct afswtch af_lagg = {
|
|
|
|
.af_name = "af_lagg",
|
2007-04-10 00:27:25 +00:00
|
|
|
.af_af = AF_UNSPEC,
|
2007-04-17 00:35:11 +00:00
|
|
|
.af_other_status = lagg_status,
|
2007-04-10 00:27:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static __constructor void
|
2007-04-17 00:35:11 +00:00
|
|
|
lagg_ctor(void)
|
2007-04-10 00:27:25 +00:00
|
|
|
{
|
|
|
|
#define N(a) (sizeof(a) / sizeof(a[0]))
|
|
|
|
int i;
|
|
|
|
|
2007-04-17 00:35:11 +00:00
|
|
|
for (i = 0; i < N(lagg_cmds); i++)
|
|
|
|
cmd_register(&lagg_cmds[i]);
|
|
|
|
af_register(&af_lagg);
|
2007-04-10 00:27:25 +00:00
|
|
|
#undef N
|
|
|
|
}
|