#include <sys/param.h>
#include <sys/ioctl.h>
#include <net/ethernet.h>
#include <net/if.h>
#include <net/if_lagg.h>
#include <net/ieee8023ad_lacp.h>
#include <assert.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include "libifconfig.h"
#include "libifconfig_internal.h"
struct _ifconfig_lagg_status {
struct ifconfig_lagg_status l;
struct lagg_reqall ra;
struct lagg_reqopts ro;
struct lagg_reqflags rf;
struct lagg_reqport rpbuf[LAGG_MAX_PORTS];
};
int
ifconfig_lagg_get_laggport_status(ifconfig_handle_t *h,
const char *name, struct lagg_reqport *rp)
{
strlcpy(rp->rp_ifname, name, sizeof(rp->rp_portname));
strlcpy(rp->rp_portname, name, sizeof(rp->rp_portname));
return (ifconfig_ioctlwrap(h, AF_LOCAL, SIOCGLAGGPORT, rp));
}
int
ifconfig_lagg_get_lagg_status(ifconfig_handle_t *h,
const char *name, struct ifconfig_lagg_status **lagg_status)
{
struct _ifconfig_lagg_status *ls;
ls = calloc(1, sizeof(struct _ifconfig_lagg_status));
if (ls == NULL) {
h->error.errtype = OTHER;
h->error.errcode = ENOMEM;
return (-1);
}
ls->l.ra = &ls->ra;
ls->l.ro = &ls->ro;
ls->l.rf = &ls->rf;
*lagg_status = &ls->l;
ls->ra.ra_port = ls->rpbuf;
ls->ra.ra_size = sizeof(ls->rpbuf);
strlcpy(ls->ro.ro_ifname, name, sizeof(ls->ro.ro_ifname));
ifconfig_ioctlwrap(h, AF_LOCAL, SIOCGLAGGOPTS, &ls->ro);
strlcpy(ls->rf.rf_ifname, name, sizeof(ls->rf.rf_ifname));
if (ifconfig_ioctlwrap(h, AF_LOCAL, SIOCGLAGGFLAGS, &ls->rf) != 0) {
ls->rf.rf_flags = 0;
}
strlcpy(ls->ra.ra_ifname, name, sizeof(ls->ra.ra_ifname));
if (ifconfig_ioctlwrap(h, AF_LOCAL, SIOCGLAGG, &ls->ra) != 0) {
free(ls);
return (-1);
}
return (0);
}
void
ifconfig_lagg_free_lagg_status(struct ifconfig_lagg_status *laggstat)
{
free(laggstat);
}