/*
* Copyright (c) 2002 Michael Shalayeff
* 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 ``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 HIS RELATIVES 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 MIND, 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.
*/
if (!ndo->ndo_vflag)
return;
if (ndo->ndo_vflag)
flags |= PF_OPT_VERBOSE;
if (ndo->ndo_vflag > 1)
flags |= PF_OPT_VERBOSE2;
if (!ndo->ndo_nflag)
flags |= PF_OPT_USEDNS;
switch (hdr->action) {
case PFSYNC_ACT_CLR:
if (sizeof(*c) <= len) {
c = (void *)((char *)hdr + PFSYNC_HDRLEN);
printf("\n\tcreatorid: %08x", htonl(c->creatorid));
if (c->ifname[0] != '\0')
printf(" interface: %s", c->ifname);
}
case PFSYNC_ACT_INS:
case PFSYNC_ACT_UPD:
case PFSYNC_ACT_DEL:
for (i = 1, s = (void *)((char *)hdr + PFSYNC_HDRLEN);
i <= hdr->count && i * sizeof(*s) <= len; i++, s++) {
putchar('\n');
print_state(s, flags);
if (ndo->ndo_vflag > 1 && hdr->action == PFSYNC_ACT_UPD)
printf(" updates: %d", s->updates);
}
break;
case PFSYNC_ACT_UPD_C:
for (i = 1, u = (void *)((char *)hdr + PFSYNC_HDRLEN);
i <= hdr->count && i * sizeof(*u) <= len; i++, u++) {
memcpy(&id, &u->id, sizeof(id));
printf("\n\tid: %" PRIu64 " creatorid: %08x",
be64toh(id), ntohl(u->creatorid));
if (ndo->ndo_vflag > 1)
printf(" updates: %d", u->updates);
}
break;
case PFSYNC_ACT_DEL_C:
for (i = 1, d = (void *)((char *)hdr + PFSYNC_HDRLEN);
i <= hdr->count && i * sizeof(*d) <= len; i++, d++) {
memcpy(&id, &d->id, sizeof(id));
printf("\n\tid: %" PRIu64 " creatorid: %08x",
be64toh(id), ntohl(d->creatorid));
}
break;
case PFSYNC_ACT_UREQ:
for (i = 1, r = (void *)((char *)hdr + PFSYNC_HDRLEN);
i <= hdr->count && i * sizeof(*r) <= len; i++, r++) {
memcpy(&id, &r->id, sizeof(id));
printf("\n\tid: %" PRIu64 " creatorid: %08x",
be64toh(id), ntohl(r->creatorid));
}
break;
case PFSYNC_ACT_BUS:
if (sizeof(*b) <= len) {
b = (void *)((char *)hdr + PFSYNC_HDRLEN);
printf("\n\tcreatorid: %08x", htonl(b->creatorid));
sec = b->endtime % 60;
b->endtime /= 60;
min = b->endtime % 60;
b->endtime /= 60;
printf(" age %.2u:%.2u:%.2u", b->endtime, min, sec);
switch (b->status) {
case PFSYNC_BUS_START:
printf(" status: start");
break;
case PFSYNC_BUS_END:
printf(" status: end");
break;
default:
printf(" status: ?");
break;
}
}
break;
case PFSYNC_ACT_TDB_UPD:
for (i = 1, t = (void *)((char *)hdr + PFSYNC_HDRLEN);
i <= hdr->count && i * sizeof(*t) <= len; i++, t++)
printf("\n\tspi: %08x rpl: %u cur_bytes: %" PRIu64,
htonl(t->spi), htonl(t->rpl),
be64toh(t->cur_bytes));
/* XXX add dst and sproto? */
break;
default:
break;
}
}