Initial vendor import of the TrustedBSD OpenBSM distribution, version
1.0 alpha 1, an implementation of the documented Sun Basic Security
Module (BSM) Audit API and file format, as well as local extensions to
support the Mac OS X and FreeBSD operating systems. Also included are
command line tools for audit trail reduction and conversion to text,
as well as documentation of the commands, file format, and APIs. This
distribution is the foundation for the TrustedBSD Audit implementation,
and is a pre-release.
This is the first in a series of commits to introduce support for
Common Criteria CAPP security event audit support.
This software has been made possible through the generous
contributions of Apple Computer, Inc., SPARTA, Inc., as well as
members of the TrustedBSD Project, including Wayne Salamon <wsalamon>
and Tom Rhodes <trhodes>. The original OpenBSM implementation was
created by McAfee Research under contract to Apple Computer, Inc., as
part of their CC CAPP security evaluation.
Many thanks to: wsalamon, trhodes
Obtained from: TrustedBSD Project
2006-01-31 19:40:12 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2004 Apple Computer, Inc.
|
2006-09-21 07:07:33 +00:00
|
|
|
* Copyright (c) 2006 Robert N. M. Watson
|
Initial vendor import of the TrustedBSD OpenBSM distribution, version
1.0 alpha 1, an implementation of the documented Sun Basic Security
Module (BSM) Audit API and file format, as well as local extensions to
support the Mac OS X and FreeBSD operating systems. Also included are
command line tools for audit trail reduction and conversion to text,
as well as documentation of the commands, file format, and APIs. This
distribution is the foundation for the TrustedBSD Audit implementation,
and is a pre-release.
This is the first in a series of commits to introduce support for
Common Criteria CAPP security event audit support.
This software has been made possible through the generous
contributions of Apple Computer, Inc., SPARTA, Inc., as well as
members of the TrustedBSD Project, including Wayne Salamon <wsalamon>
and Tom Rhodes <trhodes>. The original OpenBSM implementation was
created by McAfee Research under contract to Apple Computer, Inc., as
part of their CC CAPP security evaluation.
Many thanks to: wsalamon, trhodes
Obtained from: TrustedBSD Project
2006-01-31 19:40:12 +00:00
|
|
|
* 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.
|
|
|
|
* 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
|
|
|
|
* its contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "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 APPLE OR ITS CONTRIBUTORS 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 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.
|
|
|
|
*
|
2006-09-21 07:07:33 +00:00
|
|
|
* $P4: //depot/projects/trustedbsd/openbsm/libbsm/bsm_control.c#15 $
|
Initial vendor import of the TrustedBSD OpenBSM distribution, version
1.0 alpha 1, an implementation of the documented Sun Basic Security
Module (BSM) Audit API and file format, as well as local extensions to
support the Mac OS X and FreeBSD operating systems. Also included are
command line tools for audit trail reduction and conversion to text,
as well as documentation of the commands, file format, and APIs. This
distribution is the foundation for the TrustedBSD Audit implementation,
and is a pre-release.
This is the first in a series of commits to introduce support for
Common Criteria CAPP security event audit support.
This software has been made possible through the generous
contributions of Apple Computer, Inc., SPARTA, Inc., as well as
members of the TrustedBSD Project, including Wayne Salamon <wsalamon>
and Tom Rhodes <trhodes>. The original OpenBSM implementation was
created by McAfee Research under contract to Apple Computer, Inc., as
part of their CC CAPP security evaluation.
Many thanks to: wsalamon, trhodes
Obtained from: TrustedBSD Project
2006-01-31 19:40:12 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <bsm/libbsm.h>
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <pthread.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2006-09-21 07:07:33 +00:00
|
|
|
#include <config/config.h>
|
|
|
|
#ifndef HAVE_STRLCAT
|
|
|
|
#include <compat/strlcat.h>
|
|
|
|
#endif
|
|
|
|
|
Initial vendor import of the TrustedBSD OpenBSM distribution, version
1.0 alpha 1, an implementation of the documented Sun Basic Security
Module (BSM) Audit API and file format, as well as local extensions to
support the Mac OS X and FreeBSD operating systems. Also included are
command line tools for audit trail reduction and conversion to text,
as well as documentation of the commands, file format, and APIs. This
distribution is the foundation for the TrustedBSD Audit implementation,
and is a pre-release.
This is the first in a series of commits to introduce support for
Common Criteria CAPP security event audit support.
This software has been made possible through the generous
contributions of Apple Computer, Inc., SPARTA, Inc., as well as
members of the TrustedBSD Project, including Wayne Salamon <wsalamon>
and Tom Rhodes <trhodes>. The original OpenBSM implementation was
created by McAfee Research under contract to Apple Computer, Inc., as
part of their CC CAPP security evaluation.
Many thanks to: wsalamon, trhodes
Obtained from: TrustedBSD Project
2006-01-31 19:40:12 +00:00
|
|
|
/*
|
|
|
|
* Parse the contents of the audit_control file to return the audit control
|
2006-09-21 07:07:33 +00:00
|
|
|
* parameters. These static fields are protected by 'mutex'.
|
Initial vendor import of the TrustedBSD OpenBSM distribution, version
1.0 alpha 1, an implementation of the documented Sun Basic Security
Module (BSM) Audit API and file format, as well as local extensions to
support the Mac OS X and FreeBSD operating systems. Also included are
command line tools for audit trail reduction and conversion to text,
as well as documentation of the commands, file format, and APIs. This
distribution is the foundation for the TrustedBSD Audit implementation,
and is a pre-release.
This is the first in a series of commits to introduce support for
Common Criteria CAPP security event audit support.
This software has been made possible through the generous
contributions of Apple Computer, Inc., SPARTA, Inc., as well as
members of the TrustedBSD Project, including Wayne Salamon <wsalamon>
and Tom Rhodes <trhodes>. The original OpenBSM implementation was
created by McAfee Research under contract to Apple Computer, Inc., as
part of their CC CAPP security evaluation.
Many thanks to: wsalamon, trhodes
Obtained from: TrustedBSD Project
2006-01-31 19:40:12 +00:00
|
|
|
*/
|
|
|
|
static FILE *fp = NULL;
|
|
|
|
static char linestr[AU_LINE_MAX];
|
|
|
|
static char *delim = ":";
|
|
|
|
|
|
|
|
static char inacdir = 0;
|
|
|
|
static char ptrmoved = 0;
|
|
|
|
|
|
|
|
static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Returns the string value corresponding to the given label from the
|
|
|
|
* configuration file.
|
|
|
|
*
|
|
|
|
* Must be called with mutex held.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
getstrfromtype_locked(char *name, char **str)
|
|
|
|
{
|
|
|
|
char *type, *nl;
|
|
|
|
char *tokptr;
|
|
|
|
char *last;
|
|
|
|
|
|
|
|
*str = NULL;
|
|
|
|
|
|
|
|
if ((fp == NULL) && ((fp = fopen(AUDIT_CONTROL_FILE, "r")) == NULL))
|
|
|
|
return (-1); /* Error */
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
if (fgets(linestr, AU_LINE_MAX, fp) == NULL) {
|
|
|
|
if (ferror(fp))
|
|
|
|
return (-1);
|
|
|
|
return (0); /* EOF */
|
|
|
|
}
|
|
|
|
|
|
|
|
if (linestr[0] == '#')
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Remove trailing new line character. */
|
|
|
|
if ((nl = strrchr(linestr, '\n')) != NULL)
|
|
|
|
*nl = '\0';
|
|
|
|
|
|
|
|
tokptr = linestr;
|
|
|
|
if ((type = strtok_r(tokptr, delim, &last)) != NULL) {
|
|
|
|
if (strcmp(name, type) == 0) {
|
|
|
|
/* Found matching name. */
|
|
|
|
*str = strtok_r(NULL, delim, &last);
|
|
|
|
if (*str == NULL) {
|
|
|
|
errno = EINVAL;
|
|
|
|
return (-1); /* Parse error in file */
|
|
|
|
}
|
|
|
|
return (0); /* Success */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-09-21 07:07:33 +00:00
|
|
|
/*
|
|
|
|
* Convert a policy to a string. Return -1 on failure, or >= 0 representing
|
|
|
|
* the actual size of the string placed in the buffer (excluding terminating
|
|
|
|
* nul).
|
|
|
|
*/
|
|
|
|
ssize_t
|
|
|
|
au_poltostr(long policy, size_t maxsize, char *buf)
|
|
|
|
{
|
|
|
|
int first;
|
|
|
|
|
|
|
|
if (maxsize < 1)
|
|
|
|
return (-1);
|
|
|
|
first = 1;
|
|
|
|
buf[0] = '\0';
|
|
|
|
|
|
|
|
if (policy & AUDIT_CNT) {
|
|
|
|
if (strlcat(buf, "cnt", maxsize) >= maxsize)
|
|
|
|
return (-1);
|
|
|
|
first = 0;
|
|
|
|
}
|
|
|
|
if (policy & AUDIT_AHLT) {
|
|
|
|
if (!first) {
|
|
|
|
if (strlcat(buf, ",", maxsize) >= maxsize)
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if (strlcat(buf, "ahlt", maxsize) >= maxsize)
|
|
|
|
return (-1);
|
|
|
|
first = 0;
|
|
|
|
}
|
|
|
|
if (policy & AUDIT_ARGV) {
|
|
|
|
if (!first) {
|
|
|
|
if (strlcat(buf, ",", maxsize) >= maxsize)
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if (strlcat(buf, "argv", maxsize) >= maxsize)
|
|
|
|
return (-1);
|
|
|
|
first = 0;
|
|
|
|
}
|
|
|
|
if (policy & AUDIT_ARGE) {
|
|
|
|
if (!first) {
|
|
|
|
if (strlcat(buf, ",", maxsize) >= maxsize)
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if (strlcat(buf, "arge", maxsize) >= maxsize)
|
|
|
|
return (-1);
|
|
|
|
first = 0;
|
|
|
|
}
|
|
|
|
if (policy & AUDIT_SEQ) {
|
|
|
|
if (!first) {
|
|
|
|
if (strlcat(buf, ",", maxsize) >= maxsize)
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if (strlcat(buf, "seq", maxsize) >= maxsize)
|
|
|
|
return (-1);
|
|
|
|
first = 0;
|
|
|
|
}
|
|
|
|
if (policy & AUDIT_WINDATA) {
|
|
|
|
if (!first) {
|
|
|
|
if (strlcat(buf, ",", maxsize) >= maxsize)
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if (strlcat(buf, "windata", maxsize) >= maxsize)
|
|
|
|
return (-1);
|
|
|
|
first = 0;
|
|
|
|
}
|
|
|
|
if (policy & AUDIT_USER) {
|
|
|
|
if (!first) {
|
|
|
|
if (strlcat(buf, ",", maxsize) >= maxsize)
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if (strlcat(buf, "user", maxsize) >= maxsize)
|
|
|
|
return (-1);
|
|
|
|
first = 0;
|
|
|
|
}
|
|
|
|
if (policy & AUDIT_GROUP) {
|
|
|
|
if (!first) {
|
|
|
|
if (strlcat(buf, ",", maxsize) >= maxsize)
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if (strlcat(buf, "group", maxsize) >= maxsize)
|
|
|
|
return (-1);
|
|
|
|
first = 0;
|
|
|
|
}
|
|
|
|
if (policy & AUDIT_TRAIL) {
|
|
|
|
if (!first) {
|
|
|
|
if (strlcat(buf, ",", maxsize) >= maxsize)
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if (strlcat(buf, "trail", maxsize) >= maxsize)
|
|
|
|
return (-1);
|
|
|
|
first = 0;
|
|
|
|
}
|
|
|
|
if (policy & AUDIT_PATH) {
|
|
|
|
if (!first) {
|
|
|
|
if (strlcat(buf, ",", maxsize) >= maxsize)
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if (strlcat(buf, "path", maxsize) >= maxsize)
|
|
|
|
return (-1);
|
|
|
|
first = 0;
|
|
|
|
}
|
|
|
|
if (policy & AUDIT_SCNT) {
|
|
|
|
if (!first) {
|
|
|
|
if (strlcat(buf, ",", maxsize) >= maxsize)
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if (strlcat(buf, "scnt", maxsize) >= maxsize)
|
|
|
|
return (-1);
|
|
|
|
first = 0;
|
|
|
|
}
|
|
|
|
if (policy & AUDIT_PUBLIC) {
|
|
|
|
if (!first) {
|
|
|
|
if (strlcat(buf, ",", maxsize) >= maxsize)
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if (strlcat(buf, "public", maxsize) >= maxsize)
|
|
|
|
return (-1);
|
|
|
|
first = 0;
|
|
|
|
}
|
|
|
|
if (policy & AUDIT_ZONENAME) {
|
|
|
|
if (!first) {
|
|
|
|
if (strlcat(buf, ",", maxsize) >= maxsize)
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if (strlcat(buf, "zonename", maxsize) >= maxsize)
|
|
|
|
return (-1);
|
|
|
|
first = 0;
|
|
|
|
}
|
|
|
|
if (policy & AUDIT_PERZONE) {
|
|
|
|
if (!first) {
|
|
|
|
if (strlcat(buf, ",", maxsize) >= maxsize)
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if (strlcat(buf, "perzone", maxsize) >= maxsize)
|
|
|
|
return (-1);
|
|
|
|
first = 0;
|
|
|
|
}
|
|
|
|
return (strlen(buf));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Convert a string to a policy. Return -1 on failure (with errno EINVAL,
|
|
|
|
* ENOMEM) or 0 on success.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
au_strtopol(const char *polstr, long *policy)
|
|
|
|
{
|
|
|
|
char *bufp, *string;
|
|
|
|
char *buffer;
|
|
|
|
|
|
|
|
*policy = 0;
|
|
|
|
buffer = strdup(polstr);
|
|
|
|
if (buffer == NULL)
|
|
|
|
return (-1);
|
|
|
|
|
|
|
|
bufp = buffer;
|
|
|
|
while ((string = strsep(&bufp, ",")) != NULL) {
|
|
|
|
if (strcmp(string, "cnt") == 0)
|
|
|
|
*policy |= AUDIT_CNT;
|
|
|
|
else if (strcmp(string, "ahlt") == 0)
|
|
|
|
*policy |= AUDIT_AHLT;
|
|
|
|
else if (strcmp(string, "argv") == 0)
|
|
|
|
*policy |= AUDIT_ARGV;
|
|
|
|
else if (strcmp(string, "arge") == 0)
|
|
|
|
*policy |= AUDIT_ARGE;
|
|
|
|
else if (strcmp(string, "seq") == 0)
|
|
|
|
*policy |= AUDIT_SEQ;
|
|
|
|
else if (strcmp(string, "winau_fstat") == 0)
|
|
|
|
*policy |= AUDIT_WINDATA;
|
|
|
|
else if (strcmp(string, "user") == 0)
|
|
|
|
*policy |= AUDIT_USER;
|
|
|
|
else if (strcmp(string, "group") == 0)
|
|
|
|
*policy |= AUDIT_GROUP;
|
|
|
|
else if (strcmp(string, "trail") == 0)
|
|
|
|
*policy |= AUDIT_TRAIL;
|
|
|
|
else if (strcmp(string, "path") == 0)
|
|
|
|
*policy |= AUDIT_PATH;
|
|
|
|
else if (strcmp(string, "scnt") == 0)
|
|
|
|
*policy |= AUDIT_SCNT;
|
|
|
|
else if (strcmp(string, "public") == 0)
|
|
|
|
*policy |= AUDIT_PUBLIC;
|
|
|
|
else if (strcmp(string, "zonename") == 0)
|
|
|
|
*policy |= AUDIT_ZONENAME;
|
|
|
|
else if (strcmp(string, "perzone") == 0)
|
|
|
|
*policy |= AUDIT_PERZONE;
|
|
|
|
else {
|
|
|
|
free(buffer);
|
|
|
|
errno = EINVAL;
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free(buffer);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
Initial vendor import of the TrustedBSD OpenBSM distribution, version
1.0 alpha 1, an implementation of the documented Sun Basic Security
Module (BSM) Audit API and file format, as well as local extensions to
support the Mac OS X and FreeBSD operating systems. Also included are
command line tools for audit trail reduction and conversion to text,
as well as documentation of the commands, file format, and APIs. This
distribution is the foundation for the TrustedBSD Audit implementation,
and is a pre-release.
This is the first in a series of commits to introduce support for
Common Criteria CAPP security event audit support.
This software has been made possible through the generous
contributions of Apple Computer, Inc., SPARTA, Inc., as well as
members of the TrustedBSD Project, including Wayne Salamon <wsalamon>
and Tom Rhodes <trhodes>. The original OpenBSM implementation was
created by McAfee Research under contract to Apple Computer, Inc., as
part of their CC CAPP security evaluation.
Many thanks to: wsalamon, trhodes
Obtained from: TrustedBSD Project
2006-01-31 19:40:12 +00:00
|
|
|
/*
|
|
|
|
* Rewind the file pointer to beginning.
|
|
|
|
*/
|
2006-09-21 07:07:33 +00:00
|
|
|
static void
|
|
|
|
setac_locked(void)
|
Initial vendor import of the TrustedBSD OpenBSM distribution, version
1.0 alpha 1, an implementation of the documented Sun Basic Security
Module (BSM) Audit API and file format, as well as local extensions to
support the Mac OS X and FreeBSD operating systems. Also included are
command line tools for audit trail reduction and conversion to text,
as well as documentation of the commands, file format, and APIs. This
distribution is the foundation for the TrustedBSD Audit implementation,
and is a pre-release.
This is the first in a series of commits to introduce support for
Common Criteria CAPP security event audit support.
This software has been made possible through the generous
contributions of Apple Computer, Inc., SPARTA, Inc., as well as
members of the TrustedBSD Project, including Wayne Salamon <wsalamon>
and Tom Rhodes <trhodes>. The original OpenBSM implementation was
created by McAfee Research under contract to Apple Computer, Inc., as
part of their CC CAPP security evaluation.
Many thanks to: wsalamon, trhodes
Obtained from: TrustedBSD Project
2006-01-31 19:40:12 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
ptrmoved = 1;
|
|
|
|
if (fp != NULL)
|
|
|
|
fseek(fp, 0, SEEK_SET);
|
2006-09-21 07:07:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
setac(void)
|
|
|
|
{
|
|
|
|
|
|
|
|
pthread_mutex_lock(&mutex);
|
|
|
|
setac_locked();
|
Initial vendor import of the TrustedBSD OpenBSM distribution, version
1.0 alpha 1, an implementation of the documented Sun Basic Security
Module (BSM) Audit API and file format, as well as local extensions to
support the Mac OS X and FreeBSD operating systems. Also included are
command line tools for audit trail reduction and conversion to text,
as well as documentation of the commands, file format, and APIs. This
distribution is the foundation for the TrustedBSD Audit implementation,
and is a pre-release.
This is the first in a series of commits to introduce support for
Common Criteria CAPP security event audit support.
This software has been made possible through the generous
contributions of Apple Computer, Inc., SPARTA, Inc., as well as
members of the TrustedBSD Project, including Wayne Salamon <wsalamon>
and Tom Rhodes <trhodes>. The original OpenBSM implementation was
created by McAfee Research under contract to Apple Computer, Inc., as
part of their CC CAPP security evaluation.
Many thanks to: wsalamon, trhodes
Obtained from: TrustedBSD Project
2006-01-31 19:40:12 +00:00
|
|
|
pthread_mutex_unlock(&mutex);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2006-09-21 07:07:33 +00:00
|
|
|
* Close the audit_control file.
|
Initial vendor import of the TrustedBSD OpenBSM distribution, version
1.0 alpha 1, an implementation of the documented Sun Basic Security
Module (BSM) Audit API and file format, as well as local extensions to
support the Mac OS X and FreeBSD operating systems. Also included are
command line tools for audit trail reduction and conversion to text,
as well as documentation of the commands, file format, and APIs. This
distribution is the foundation for the TrustedBSD Audit implementation,
and is a pre-release.
This is the first in a series of commits to introduce support for
Common Criteria CAPP security event audit support.
This software has been made possible through the generous
contributions of Apple Computer, Inc., SPARTA, Inc., as well as
members of the TrustedBSD Project, including Wayne Salamon <wsalamon>
and Tom Rhodes <trhodes>. The original OpenBSM implementation was
created by McAfee Research under contract to Apple Computer, Inc., as
part of their CC CAPP security evaluation.
Many thanks to: wsalamon, trhodes
Obtained from: TrustedBSD Project
2006-01-31 19:40:12 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
endac(void)
|
|
|
|
{
|
|
|
|
|
|
|
|
pthread_mutex_lock(&mutex);
|
|
|
|
ptrmoved = 1;
|
|
|
|
if (fp != NULL) {
|
|
|
|
fclose(fp);
|
|
|
|
fp = NULL;
|
|
|
|
}
|
|
|
|
pthread_mutex_unlock(&mutex);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return audit directory information from the audit control file.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
getacdir(char *name, int len)
|
|
|
|
{
|
|
|
|
char *dir;
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
/*
|
2006-09-21 07:07:33 +00:00
|
|
|
* Check if another function was called between successive calls to
|
|
|
|
* getacdir.
|
Initial vendor import of the TrustedBSD OpenBSM distribution, version
1.0 alpha 1, an implementation of the documented Sun Basic Security
Module (BSM) Audit API and file format, as well as local extensions to
support the Mac OS X and FreeBSD operating systems. Also included are
command line tools for audit trail reduction and conversion to text,
as well as documentation of the commands, file format, and APIs. This
distribution is the foundation for the TrustedBSD Audit implementation,
and is a pre-release.
This is the first in a series of commits to introduce support for
Common Criteria CAPP security event audit support.
This software has been made possible through the generous
contributions of Apple Computer, Inc., SPARTA, Inc., as well as
members of the TrustedBSD Project, including Wayne Salamon <wsalamon>
and Tom Rhodes <trhodes>. The original OpenBSM implementation was
created by McAfee Research under contract to Apple Computer, Inc., as
part of their CC CAPP security evaluation.
Many thanks to: wsalamon, trhodes
Obtained from: TrustedBSD Project
2006-01-31 19:40:12 +00:00
|
|
|
*/
|
2006-09-21 07:07:33 +00:00
|
|
|
pthread_mutex_lock(&mutex);
|
Initial vendor import of the TrustedBSD OpenBSM distribution, version
1.0 alpha 1, an implementation of the documented Sun Basic Security
Module (BSM) Audit API and file format, as well as local extensions to
support the Mac OS X and FreeBSD operating systems. Also included are
command line tools for audit trail reduction and conversion to text,
as well as documentation of the commands, file format, and APIs. This
distribution is the foundation for the TrustedBSD Audit implementation,
and is a pre-release.
This is the first in a series of commits to introduce support for
Common Criteria CAPP security event audit support.
This software has been made possible through the generous
contributions of Apple Computer, Inc., SPARTA, Inc., as well as
members of the TrustedBSD Project, including Wayne Salamon <wsalamon>
and Tom Rhodes <trhodes>. The original OpenBSM implementation was
created by McAfee Research under contract to Apple Computer, Inc., as
part of their CC CAPP security evaluation.
Many thanks to: wsalamon, trhodes
Obtained from: TrustedBSD Project
2006-01-31 19:40:12 +00:00
|
|
|
if (inacdir && ptrmoved) {
|
|
|
|
ptrmoved = 0;
|
|
|
|
if (fp != NULL)
|
|
|
|
fseek(fp, 0, SEEK_SET);
|
|
|
|
ret = 2;
|
|
|
|
}
|
|
|
|
if (getstrfromtype_locked(DIR_CONTROL_ENTRY, &dir) < 0) {
|
|
|
|
pthread_mutex_unlock(&mutex);
|
|
|
|
return (-2);
|
|
|
|
}
|
2006-09-21 07:07:33 +00:00
|
|
|
if (dir == NULL) {
|
|
|
|
pthread_mutex_unlock(&mutex);
|
Initial vendor import of the TrustedBSD OpenBSM distribution, version
1.0 alpha 1, an implementation of the documented Sun Basic Security
Module (BSM) Audit API and file format, as well as local extensions to
support the Mac OS X and FreeBSD operating systems. Also included are
command line tools for audit trail reduction and conversion to text,
as well as documentation of the commands, file format, and APIs. This
distribution is the foundation for the TrustedBSD Audit implementation,
and is a pre-release.
This is the first in a series of commits to introduce support for
Common Criteria CAPP security event audit support.
This software has been made possible through the generous
contributions of Apple Computer, Inc., SPARTA, Inc., as well as
members of the TrustedBSD Project, including Wayne Salamon <wsalamon>
and Tom Rhodes <trhodes>. The original OpenBSM implementation was
created by McAfee Research under contract to Apple Computer, Inc., as
part of their CC CAPP security evaluation.
Many thanks to: wsalamon, trhodes
Obtained from: TrustedBSD Project
2006-01-31 19:40:12 +00:00
|
|
|
return (-1);
|
2006-09-21 07:07:33 +00:00
|
|
|
}
|
|
|
|
if (strlen(dir) >= len) {
|
|
|
|
pthread_mutex_unlock(&mutex);
|
Initial vendor import of the TrustedBSD OpenBSM distribution, version
1.0 alpha 1, an implementation of the documented Sun Basic Security
Module (BSM) Audit API and file format, as well as local extensions to
support the Mac OS X and FreeBSD operating systems. Also included are
command line tools for audit trail reduction and conversion to text,
as well as documentation of the commands, file format, and APIs. This
distribution is the foundation for the TrustedBSD Audit implementation,
and is a pre-release.
This is the first in a series of commits to introduce support for
Common Criteria CAPP security event audit support.
This software has been made possible through the generous
contributions of Apple Computer, Inc., SPARTA, Inc., as well as
members of the TrustedBSD Project, including Wayne Salamon <wsalamon>
and Tom Rhodes <trhodes>. The original OpenBSM implementation was
created by McAfee Research under contract to Apple Computer, Inc., as
part of their CC CAPP security evaluation.
Many thanks to: wsalamon, trhodes
Obtained from: TrustedBSD Project
2006-01-31 19:40:12 +00:00
|
|
|
return (-3);
|
2006-09-21 07:07:33 +00:00
|
|
|
}
|
Initial vendor import of the TrustedBSD OpenBSM distribution, version
1.0 alpha 1, an implementation of the documented Sun Basic Security
Module (BSM) Audit API and file format, as well as local extensions to
support the Mac OS X and FreeBSD operating systems. Also included are
command line tools for audit trail reduction and conversion to text,
as well as documentation of the commands, file format, and APIs. This
distribution is the foundation for the TrustedBSD Audit implementation,
and is a pre-release.
This is the first in a series of commits to introduce support for
Common Criteria CAPP security event audit support.
This software has been made possible through the generous
contributions of Apple Computer, Inc., SPARTA, Inc., as well as
members of the TrustedBSD Project, including Wayne Salamon <wsalamon>
and Tom Rhodes <trhodes>. The original OpenBSM implementation was
created by McAfee Research under contract to Apple Computer, Inc., as
part of their CC CAPP security evaluation.
Many thanks to: wsalamon, trhodes
Obtained from: TrustedBSD Project
2006-01-31 19:40:12 +00:00
|
|
|
strcpy(name, dir);
|
2006-09-21 07:07:33 +00:00
|
|
|
pthread_mutex_unlock(&mutex);
|
Initial vendor import of the TrustedBSD OpenBSM distribution, version
1.0 alpha 1, an implementation of the documented Sun Basic Security
Module (BSM) Audit API and file format, as well as local extensions to
support the Mac OS X and FreeBSD operating systems. Also included are
command line tools for audit trail reduction and conversion to text,
as well as documentation of the commands, file format, and APIs. This
distribution is the foundation for the TrustedBSD Audit implementation,
and is a pre-release.
This is the first in a series of commits to introduce support for
Common Criteria CAPP security event audit support.
This software has been made possible through the generous
contributions of Apple Computer, Inc., SPARTA, Inc., as well as
members of the TrustedBSD Project, including Wayne Salamon <wsalamon>
and Tom Rhodes <trhodes>. The original OpenBSM implementation was
created by McAfee Research under contract to Apple Computer, Inc., as
part of their CC CAPP security evaluation.
Many thanks to: wsalamon, trhodes
Obtained from: TrustedBSD Project
2006-01-31 19:40:12 +00:00
|
|
|
return (ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2006-09-21 07:07:33 +00:00
|
|
|
* Return the minimum free diskspace value from the audit control file.
|
Initial vendor import of the TrustedBSD OpenBSM distribution, version
1.0 alpha 1, an implementation of the documented Sun Basic Security
Module (BSM) Audit API and file format, as well as local extensions to
support the Mac OS X and FreeBSD operating systems. Also included are
command line tools for audit trail reduction and conversion to text,
as well as documentation of the commands, file format, and APIs. This
distribution is the foundation for the TrustedBSD Audit implementation,
and is a pre-release.
This is the first in a series of commits to introduce support for
Common Criteria CAPP security event audit support.
This software has been made possible through the generous
contributions of Apple Computer, Inc., SPARTA, Inc., as well as
members of the TrustedBSD Project, including Wayne Salamon <wsalamon>
and Tom Rhodes <trhodes>. The original OpenBSM implementation was
created by McAfee Research under contract to Apple Computer, Inc., as
part of their CC CAPP security evaluation.
Many thanks to: wsalamon, trhodes
Obtained from: TrustedBSD Project
2006-01-31 19:40:12 +00:00
|
|
|
*/
|
|
|
|
int
|
|
|
|
getacmin(int *min_val)
|
|
|
|
{
|
|
|
|
char *min;
|
|
|
|
|
|
|
|
pthread_mutex_lock(&mutex);
|
2006-09-21 07:07:33 +00:00
|
|
|
setac_locked();
|
Initial vendor import of the TrustedBSD OpenBSM distribution, version
1.0 alpha 1, an implementation of the documented Sun Basic Security
Module (BSM) Audit API and file format, as well as local extensions to
support the Mac OS X and FreeBSD operating systems. Also included are
command line tools for audit trail reduction and conversion to text,
as well as documentation of the commands, file format, and APIs. This
distribution is the foundation for the TrustedBSD Audit implementation,
and is a pre-release.
This is the first in a series of commits to introduce support for
Common Criteria CAPP security event audit support.
This software has been made possible through the generous
contributions of Apple Computer, Inc., SPARTA, Inc., as well as
members of the TrustedBSD Project, including Wayne Salamon <wsalamon>
and Tom Rhodes <trhodes>. The original OpenBSM implementation was
created by McAfee Research under contract to Apple Computer, Inc., as
part of their CC CAPP security evaluation.
Many thanks to: wsalamon, trhodes
Obtained from: TrustedBSD Project
2006-01-31 19:40:12 +00:00
|
|
|
if (getstrfromtype_locked(MINFREE_CONTROL_ENTRY, &min) < 0) {
|
|
|
|
pthread_mutex_unlock(&mutex);
|
|
|
|
return (-2);
|
|
|
|
}
|
2006-09-21 07:07:33 +00:00
|
|
|
if (min == NULL) {
|
|
|
|
pthread_mutex_unlock(&mutex);
|
Initial vendor import of the TrustedBSD OpenBSM distribution, version
1.0 alpha 1, an implementation of the documented Sun Basic Security
Module (BSM) Audit API and file format, as well as local extensions to
support the Mac OS X and FreeBSD operating systems. Also included are
command line tools for audit trail reduction and conversion to text,
as well as documentation of the commands, file format, and APIs. This
distribution is the foundation for the TrustedBSD Audit implementation,
and is a pre-release.
This is the first in a series of commits to introduce support for
Common Criteria CAPP security event audit support.
This software has been made possible through the generous
contributions of Apple Computer, Inc., SPARTA, Inc., as well as
members of the TrustedBSD Project, including Wayne Salamon <wsalamon>
and Tom Rhodes <trhodes>. The original OpenBSM implementation was
created by McAfee Research under contract to Apple Computer, Inc., as
part of their CC CAPP security evaluation.
Many thanks to: wsalamon, trhodes
Obtained from: TrustedBSD Project
2006-01-31 19:40:12 +00:00
|
|
|
return (1);
|
2006-09-21 07:07:33 +00:00
|
|
|
}
|
Initial vendor import of the TrustedBSD OpenBSM distribution, version
1.0 alpha 1, an implementation of the documented Sun Basic Security
Module (BSM) Audit API and file format, as well as local extensions to
support the Mac OS X and FreeBSD operating systems. Also included are
command line tools for audit trail reduction and conversion to text,
as well as documentation of the commands, file format, and APIs. This
distribution is the foundation for the TrustedBSD Audit implementation,
and is a pre-release.
This is the first in a series of commits to introduce support for
Common Criteria CAPP security event audit support.
This software has been made possible through the generous
contributions of Apple Computer, Inc., SPARTA, Inc., as well as
members of the TrustedBSD Project, including Wayne Salamon <wsalamon>
and Tom Rhodes <trhodes>. The original OpenBSM implementation was
created by McAfee Research under contract to Apple Computer, Inc., as
part of their CC CAPP security evaluation.
Many thanks to: wsalamon, trhodes
Obtained from: TrustedBSD Project
2006-01-31 19:40:12 +00:00
|
|
|
*min_val = atoi(min);
|
2006-09-21 07:07:33 +00:00
|
|
|
pthread_mutex_unlock(&mutex);
|
Initial vendor import of the TrustedBSD OpenBSM distribution, version
1.0 alpha 1, an implementation of the documented Sun Basic Security
Module (BSM) Audit API and file format, as well as local extensions to
support the Mac OS X and FreeBSD operating systems. Also included are
command line tools for audit trail reduction and conversion to text,
as well as documentation of the commands, file format, and APIs. This
distribution is the foundation for the TrustedBSD Audit implementation,
and is a pre-release.
This is the first in a series of commits to introduce support for
Common Criteria CAPP security event audit support.
This software has been made possible through the generous
contributions of Apple Computer, Inc., SPARTA, Inc., as well as
members of the TrustedBSD Project, including Wayne Salamon <wsalamon>
and Tom Rhodes <trhodes>. The original OpenBSM implementation was
created by McAfee Research under contract to Apple Computer, Inc., as
part of their CC CAPP security evaluation.
Many thanks to: wsalamon, trhodes
Obtained from: TrustedBSD Project
2006-01-31 19:40:12 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return the system audit value from the audit contol file.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
getacflg(char *auditstr, int len)
|
|
|
|
{
|
|
|
|
char *str;
|
|
|
|
|
|
|
|
pthread_mutex_lock(&mutex);
|
2006-09-21 07:07:33 +00:00
|
|
|
setac_locked();
|
Initial vendor import of the TrustedBSD OpenBSM distribution, version
1.0 alpha 1, an implementation of the documented Sun Basic Security
Module (BSM) Audit API and file format, as well as local extensions to
support the Mac OS X and FreeBSD operating systems. Also included are
command line tools for audit trail reduction and conversion to text,
as well as documentation of the commands, file format, and APIs. This
distribution is the foundation for the TrustedBSD Audit implementation,
and is a pre-release.
This is the first in a series of commits to introduce support for
Common Criteria CAPP security event audit support.
This software has been made possible through the generous
contributions of Apple Computer, Inc., SPARTA, Inc., as well as
members of the TrustedBSD Project, including Wayne Salamon <wsalamon>
and Tom Rhodes <trhodes>. The original OpenBSM implementation was
created by McAfee Research under contract to Apple Computer, Inc., as
part of their CC CAPP security evaluation.
Many thanks to: wsalamon, trhodes
Obtained from: TrustedBSD Project
2006-01-31 19:40:12 +00:00
|
|
|
if (getstrfromtype_locked(FLAGS_CONTROL_ENTRY, &str) < 0) {
|
|
|
|
pthread_mutex_unlock(&mutex);
|
|
|
|
return (-2);
|
|
|
|
}
|
2006-09-21 07:07:33 +00:00
|
|
|
if (str == NULL) {
|
|
|
|
pthread_mutex_unlock(&mutex);
|
Initial vendor import of the TrustedBSD OpenBSM distribution, version
1.0 alpha 1, an implementation of the documented Sun Basic Security
Module (BSM) Audit API and file format, as well as local extensions to
support the Mac OS X and FreeBSD operating systems. Also included are
command line tools for audit trail reduction and conversion to text,
as well as documentation of the commands, file format, and APIs. This
distribution is the foundation for the TrustedBSD Audit implementation,
and is a pre-release.
This is the first in a series of commits to introduce support for
Common Criteria CAPP security event audit support.
This software has been made possible through the generous
contributions of Apple Computer, Inc., SPARTA, Inc., as well as
members of the TrustedBSD Project, including Wayne Salamon <wsalamon>
and Tom Rhodes <trhodes>. The original OpenBSM implementation was
created by McAfee Research under contract to Apple Computer, Inc., as
part of their CC CAPP security evaluation.
Many thanks to: wsalamon, trhodes
Obtained from: TrustedBSD Project
2006-01-31 19:40:12 +00:00
|
|
|
return (1);
|
2006-09-21 07:07:33 +00:00
|
|
|
}
|
|
|
|
if (strlen(str) >= len) {
|
|
|
|
pthread_mutex_unlock(&mutex);
|
Initial vendor import of the TrustedBSD OpenBSM distribution, version
1.0 alpha 1, an implementation of the documented Sun Basic Security
Module (BSM) Audit API and file format, as well as local extensions to
support the Mac OS X and FreeBSD operating systems. Also included are
command line tools for audit trail reduction and conversion to text,
as well as documentation of the commands, file format, and APIs. This
distribution is the foundation for the TrustedBSD Audit implementation,
and is a pre-release.
This is the first in a series of commits to introduce support for
Common Criteria CAPP security event audit support.
This software has been made possible through the generous
contributions of Apple Computer, Inc., SPARTA, Inc., as well as
members of the TrustedBSD Project, including Wayne Salamon <wsalamon>
and Tom Rhodes <trhodes>. The original OpenBSM implementation was
created by McAfee Research under contract to Apple Computer, Inc., as
part of their CC CAPP security evaluation.
Many thanks to: wsalamon, trhodes
Obtained from: TrustedBSD Project
2006-01-31 19:40:12 +00:00
|
|
|
return (-3);
|
2006-09-21 07:07:33 +00:00
|
|
|
}
|
Initial vendor import of the TrustedBSD OpenBSM distribution, version
1.0 alpha 1, an implementation of the documented Sun Basic Security
Module (BSM) Audit API and file format, as well as local extensions to
support the Mac OS X and FreeBSD operating systems. Also included are
command line tools for audit trail reduction and conversion to text,
as well as documentation of the commands, file format, and APIs. This
distribution is the foundation for the TrustedBSD Audit implementation,
and is a pre-release.
This is the first in a series of commits to introduce support for
Common Criteria CAPP security event audit support.
This software has been made possible through the generous
contributions of Apple Computer, Inc., SPARTA, Inc., as well as
members of the TrustedBSD Project, including Wayne Salamon <wsalamon>
and Tom Rhodes <trhodes>. The original OpenBSM implementation was
created by McAfee Research under contract to Apple Computer, Inc., as
part of their CC CAPP security evaluation.
Many thanks to: wsalamon, trhodes
Obtained from: TrustedBSD Project
2006-01-31 19:40:12 +00:00
|
|
|
strcpy(auditstr, str);
|
2006-09-21 07:07:33 +00:00
|
|
|
pthread_mutex_unlock(&mutex);
|
Initial vendor import of the TrustedBSD OpenBSM distribution, version
1.0 alpha 1, an implementation of the documented Sun Basic Security
Module (BSM) Audit API and file format, as well as local extensions to
support the Mac OS X and FreeBSD operating systems. Also included are
command line tools for audit trail reduction and conversion to text,
as well as documentation of the commands, file format, and APIs. This
distribution is the foundation for the TrustedBSD Audit implementation,
and is a pre-release.
This is the first in a series of commits to introduce support for
Common Criteria CAPP security event audit support.
This software has been made possible through the generous
contributions of Apple Computer, Inc., SPARTA, Inc., as well as
members of the TrustedBSD Project, including Wayne Salamon <wsalamon>
and Tom Rhodes <trhodes>. The original OpenBSM implementation was
created by McAfee Research under contract to Apple Computer, Inc., as
part of their CC CAPP security evaluation.
Many thanks to: wsalamon, trhodes
Obtained from: TrustedBSD Project
2006-01-31 19:40:12 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return the non attributable flags from the audit contol file.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
getacna(char *auditstr, int len)
|
|
|
|
{
|
|
|
|
char *str;
|
|
|
|
|
|
|
|
pthread_mutex_lock(&mutex);
|
2006-09-21 07:07:33 +00:00
|
|
|
setac_locked();
|
Initial vendor import of the TrustedBSD OpenBSM distribution, version
1.0 alpha 1, an implementation of the documented Sun Basic Security
Module (BSM) Audit API and file format, as well as local extensions to
support the Mac OS X and FreeBSD operating systems. Also included are
command line tools for audit trail reduction and conversion to text,
as well as documentation of the commands, file format, and APIs. This
distribution is the foundation for the TrustedBSD Audit implementation,
and is a pre-release.
This is the first in a series of commits to introduce support for
Common Criteria CAPP security event audit support.
This software has been made possible through the generous
contributions of Apple Computer, Inc., SPARTA, Inc., as well as
members of the TrustedBSD Project, including Wayne Salamon <wsalamon>
and Tom Rhodes <trhodes>. The original OpenBSM implementation was
created by McAfee Research under contract to Apple Computer, Inc., as
part of their CC CAPP security evaluation.
Many thanks to: wsalamon, trhodes
Obtained from: TrustedBSD Project
2006-01-31 19:40:12 +00:00
|
|
|
if (getstrfromtype_locked(NA_CONTROL_ENTRY, &str) < 0) {
|
|
|
|
pthread_mutex_unlock(&mutex);
|
|
|
|
return (-2);
|
|
|
|
}
|
2006-09-21 07:07:33 +00:00
|
|
|
if (str == NULL) {
|
|
|
|
pthread_mutex_unlock(&mutex);
|
Initial vendor import of the TrustedBSD OpenBSM distribution, version
1.0 alpha 1, an implementation of the documented Sun Basic Security
Module (BSM) Audit API and file format, as well as local extensions to
support the Mac OS X and FreeBSD operating systems. Also included are
command line tools for audit trail reduction and conversion to text,
as well as documentation of the commands, file format, and APIs. This
distribution is the foundation for the TrustedBSD Audit implementation,
and is a pre-release.
This is the first in a series of commits to introduce support for
Common Criteria CAPP security event audit support.
This software has been made possible through the generous
contributions of Apple Computer, Inc., SPARTA, Inc., as well as
members of the TrustedBSD Project, including Wayne Salamon <wsalamon>
and Tom Rhodes <trhodes>. The original OpenBSM implementation was
created by McAfee Research under contract to Apple Computer, Inc., as
part of their CC CAPP security evaluation.
Many thanks to: wsalamon, trhodes
Obtained from: TrustedBSD Project
2006-01-31 19:40:12 +00:00
|
|
|
return (1);
|
2006-09-21 07:07:33 +00:00
|
|
|
}
|
|
|
|
if (strlen(str) >= len) {
|
|
|
|
pthread_mutex_unlock(&mutex);
|
Initial vendor import of the TrustedBSD OpenBSM distribution, version
1.0 alpha 1, an implementation of the documented Sun Basic Security
Module (BSM) Audit API and file format, as well as local extensions to
support the Mac OS X and FreeBSD operating systems. Also included are
command line tools for audit trail reduction and conversion to text,
as well as documentation of the commands, file format, and APIs. This
distribution is the foundation for the TrustedBSD Audit implementation,
and is a pre-release.
This is the first in a series of commits to introduce support for
Common Criteria CAPP security event audit support.
This software has been made possible through the generous
contributions of Apple Computer, Inc., SPARTA, Inc., as well as
members of the TrustedBSD Project, including Wayne Salamon <wsalamon>
and Tom Rhodes <trhodes>. The original OpenBSM implementation was
created by McAfee Research under contract to Apple Computer, Inc., as
part of their CC CAPP security evaluation.
Many thanks to: wsalamon, trhodes
Obtained from: TrustedBSD Project
2006-01-31 19:40:12 +00:00
|
|
|
return (-3);
|
2006-09-21 07:07:33 +00:00
|
|
|
}
|
Initial vendor import of the TrustedBSD OpenBSM distribution, version
1.0 alpha 1, an implementation of the documented Sun Basic Security
Module (BSM) Audit API and file format, as well as local extensions to
support the Mac OS X and FreeBSD operating systems. Also included are
command line tools for audit trail reduction and conversion to text,
as well as documentation of the commands, file format, and APIs. This
distribution is the foundation for the TrustedBSD Audit implementation,
and is a pre-release.
This is the first in a series of commits to introduce support for
Common Criteria CAPP security event audit support.
This software has been made possible through the generous
contributions of Apple Computer, Inc., SPARTA, Inc., as well as
members of the TrustedBSD Project, including Wayne Salamon <wsalamon>
and Tom Rhodes <trhodes>. The original OpenBSM implementation was
created by McAfee Research under contract to Apple Computer, Inc., as
part of their CC CAPP security evaluation.
Many thanks to: wsalamon, trhodes
Obtained from: TrustedBSD Project
2006-01-31 19:40:12 +00:00
|
|
|
strcpy(auditstr, str);
|
2006-09-21 07:07:33 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return the policy field from the audit control file.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
getacpol(char *auditstr, size_t len)
|
|
|
|
{
|
|
|
|
char *str;
|
Initial vendor import of the TrustedBSD OpenBSM distribution, version
1.0 alpha 1, an implementation of the documented Sun Basic Security
Module (BSM) Audit API and file format, as well as local extensions to
support the Mac OS X and FreeBSD operating systems. Also included are
command line tools for audit trail reduction and conversion to text,
as well as documentation of the commands, file format, and APIs. This
distribution is the foundation for the TrustedBSD Audit implementation,
and is a pre-release.
This is the first in a series of commits to introduce support for
Common Criteria CAPP security event audit support.
This software has been made possible through the generous
contributions of Apple Computer, Inc., SPARTA, Inc., as well as
members of the TrustedBSD Project, including Wayne Salamon <wsalamon>
and Tom Rhodes <trhodes>. The original OpenBSM implementation was
created by McAfee Research under contract to Apple Computer, Inc., as
part of their CC CAPP security evaluation.
Many thanks to: wsalamon, trhodes
Obtained from: TrustedBSD Project
2006-01-31 19:40:12 +00:00
|
|
|
|
2006-09-21 07:07:33 +00:00
|
|
|
pthread_mutex_lock(&mutex);
|
|
|
|
setac_locked();
|
|
|
|
if (getstrfromtype_locked(POLICY_CONTROL_ENTRY, &str) < 0) {
|
|
|
|
pthread_mutex_unlock(&mutex);
|
|
|
|
return (-2);
|
|
|
|
}
|
|
|
|
if (str == NULL) {
|
|
|
|
pthread_mutex_unlock(&mutex);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if (strlen(str) >= len) {
|
|
|
|
pthread_mutex_unlock(&mutex);
|
|
|
|
return (-3);
|
|
|
|
}
|
|
|
|
strcpy(auditstr, str);
|
|
|
|
pthread_mutex_unlock(&mutex);
|
Initial vendor import of the TrustedBSD OpenBSM distribution, version
1.0 alpha 1, an implementation of the documented Sun Basic Security
Module (BSM) Audit API and file format, as well as local extensions to
support the Mac OS X and FreeBSD operating systems. Also included are
command line tools for audit trail reduction and conversion to text,
as well as documentation of the commands, file format, and APIs. This
distribution is the foundation for the TrustedBSD Audit implementation,
and is a pre-release.
This is the first in a series of commits to introduce support for
Common Criteria CAPP security event audit support.
This software has been made possible through the generous
contributions of Apple Computer, Inc., SPARTA, Inc., as well as
members of the TrustedBSD Project, including Wayne Salamon <wsalamon>
and Tom Rhodes <trhodes>. The original OpenBSM implementation was
created by McAfee Research under contract to Apple Computer, Inc., as
part of their CC CAPP security evaluation.
Many thanks to: wsalamon, trhodes
Obtained from: TrustedBSD Project
2006-01-31 19:40:12 +00:00
|
|
|
return (0);
|
|
|
|
}
|