#include <sys/param.h>
#include <sys/errno.h>
#include <sys/stat.h>
#include <err.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
#include "mfiutil.h"
void
mfi_autolearn_period(FILE *fp, uint32_t period)
{
unsigned int d, h;
d = period / (24 * 3600);
h = (period % (24 * 3600)) / 3600;
if (d != 0) {
fprintf(fp, "%u day%s", d, d == 1 ? "" : "s");
if (h != 0)
fprintf(fp, ", ");
}
if (h != 0)
fprintf(fp, "%u hour%s", h, h == 1 ? "" : "s");
if (d == 0 && h == 0)
fprintf(fp, "less than 1 hour");
}
void
mfi_next_learn_time(uint32_t next_learn_time, char *buf, size_t sz)
{
time_t basetime;
struct tm tm;
size_t len;
memset(&tm, 0, sizeof(tm));
tm.tm_year = 100;
basetime = timegm(&tm);
basetime += (time_t)next_learn_time;
len = strlcpy(buf, ctime(&basetime), sz);
if (len < sz)
buf[len - 1] = '\0';
}
void
mfi_autolearn_mode(FILE *fp, uint8_t mode)
{
switch (mode) {
case 0:
fprintf(fp, "enabled");
break;
case 1:
fprintf(fp, "disabled");
break;
case 2:
fprintf(fp, "warn via event");
break;
default:
fprintf(fp, "mode 0x%02x", mode);
break;
}
}
int
mfi_bbu_get_props(int fd, struct mfi_bbu_properties *props, uint8_t *statusp)
{
return (mfi_dcmd_command(fd, MFI_DCMD_BBU_GET_PROP, props,
sizeof(*props), NULL, 0, statusp));
}
int
mfi_bbu_set_props(int fd, struct mfi_bbu_properties *props, uint8_t *statusp)
{
return (mfi_dcmd_command(fd, MFI_DCMD_BBU_SET_PROP, props,
sizeof(*props), NULL, 0, statusp));
}
static int
start_bbu_learn(int ac, char **av __unused)
{
uint8_t status;
int error, fd;
status = MFI_STAT_OK;
error = 0;
if (ac != 1) {
warnx("start learn: unexpected arguments");
return (EINVAL);
}
fd = mfi_open(mfi_device, O_RDWR);
if (fd < 0) {
error = errno;
warn("mfi_open");
return (error);
}
if (mfi_dcmd_command(fd, MFI_DCMD_BBU_START_LEARN, NULL, 0, NULL, 0,
&status) < 0) {
error = errno;
warn("Failed to start BBU learn");
} else if (status != MFI_STAT_OK) {
warnx("Failed to start BBU learn: %s", mfi_status(status));
error = EIO;
}
return (error);
}
MFI_COMMAND(start, learn, start_bbu_learn);
static int
update_bbu_props(int ac, char **av)
{
struct mfi_bbu_properties props;
unsigned long delay;
uint8_t status;
int error, fd;
char *mode, *endptr;
status = MFI_STAT_OK;
error = 0;
if (ac != 3) {
warnx("bbu: property and value required");
return (EINVAL);
}
fd = mfi_open(mfi_device, O_RDWR);
if (fd < 0) {
error = errno;
warn("mfi_open");
return (error);
}
if (mfi_bbu_get_props(fd, &props, &status) < 0) {
error = errno;
warn("Failed to get BBU properties");
goto done;
} else if (status != MFI_STAT_OK) {
warnx("Failed to get BBU properties: %s", mfi_status(status));
error = EIO;
goto done;
}
if (strcmp(av[1], "learn-delay") == 0) {
delay = strtoul(av[2], &endptr, 10);
if (strlen(av[2]) == 0 || *endptr != '\0' || delay > 255) {
warnx("Invalid learn delay '%s'", av[2]);
error = EINVAL;
goto done;
}
props.learn_delay_interval = delay;
} else if (strcmp(av[1], "autolearn-mode") == 0) {
mode = av[2];
if (strcmp(av[2], "enable") == 0)
props.auto_learn_mode = 0;
else if (strcmp(av[2], "disable") == 0)
props.auto_learn_mode = 1;
else if (mode[0] >= '0' && mode[0] <= '2' && mode[1] == '\0')
props.auto_learn_mode = mode[0] - '0';
else {
warnx("Invalid mode '%s'", mode);
error = EINVAL;
goto done;
}
} else if (strcmp(av[1], "bbu-mode") == 0) {
if (props.bbu_mode == 0) {
warnx("This BBU does not implement different modes");
error = EINVAL;
goto done;
}
mode = av[2];
if (mode[0] < '1' || mode[0] > '5' || mode[1] != '\0') {
warnx("Invalid mode '%s'", mode);
error = EINVAL;
goto done;
}
props.bbu_mode = mode[0] - '0';
} else {
warnx("bbu: Invalid command '%s'", av[1]);
error = EINVAL;
goto done;
}
if (mfi_bbu_set_props(fd, &props, &status) < 0) {
error = errno;
warn("Failed to set BBU properties");
goto done;
} else if (status != MFI_STAT_OK) {
warnx("Failed to set BBU properties: %s", mfi_status(status));
error = EIO;
goto done;
}
done:
close(fd);
return (error);
}
MFI_COMMAND(top, bbu, update_bbu_props);