#include <sys/types.h>
#include <bsm/audit.h>
#include <bsm/libbsm.h>
#include <bsm/audit_record.h>
void
adr_start(adr_t *adr, char *p)
{
adr->adr_stream = p;
adr->adr_now = p;
}
int
adr_count(adr_t *adr)
{
return (((intptr_t)adr->adr_now) - ((intptr_t)adr->adr_stream));
}
void
adr_char(adr_t *adr, char *cp, int count)
{
while (count-- > 0)
*adr->adr_now++ = *cp++;
}
void
adr_short(adr_t *adr, short *sp, int count)
{
for (; count-- > 0; sp++) {
*adr->adr_now++ = (char)((*sp >> 8) & 0x00ff);
*adr->adr_now++ = (char)(*sp & 0x00ff);
}
}
void
adr_ushort(adr_t *adr, ushort_t *sp, int count)
{
for (; count-- > 0; sp++) {
*adr->adr_now++ = (char)((*sp >> 8) & 0x00ff);
*adr->adr_now++ = (char)(*sp & 0x00ff);
}
}
#pragma weak adr_long = adr_int32
void
adr_long(adr_t *adr, int32_t *lp, int count);
void
adr_int32(adr_t *adr, int32_t *lp, int count)
{
int i;
uint32_t l;
for (; count-- > 0; lp++) {
for (i = 0, l = *(uint32_t *)lp; i < 4; i++) {
*adr->adr_now++ =
(char)((uint32_t)(l & 0xff000000) >> 24);
l <<= 8;
}
}
}
void
adr_uid(adr_t *adr, uid_t *up, int count)
{
int i;
uid_t l;
for (; count-- > 0; up++) {
for (i = 0, l = *(uint32_t *)up; i < 4; i++) {
*adr->adr_now++ =
(char)((uint32_t)(l & 0xff000000) >> 24);
l <<= 8;
}
}
}
void
adr_int64(adr_t *adr, int64_t *lp, int count)
{
int i;
uint64_t l;
for (; count-- > 0; lp++) {
for (i = 0, l = *(uint64_t *)lp; i < 8; i++) {
*adr->adr_now++ = (char)
((uint64_t)(l & 0xff00000000000000ULL) >> 56);
l <<= 8;
}
}
}