File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / sudo / plugins / sudoers / audit.c
Revision 1.1.1.2 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue May 29 12:26:49 2012 UTC (12 years, 1 month ago) by misho
Branches: sudo, MAIN
CVS tags: v1_8_5p1, HEAD
sudo 1.8.5p1

    1: /*
    2:  * Copyright (c) 2009-2010 Todd C. Miller <Todd.Miller@courtesan.com>
    3:  *
    4:  * Permission to use, copy, modify, and distribute this software for any
    5:  * purpose with or without fee is hereby granted, provided that the above
    6:  * copyright notice and this permission notice appear in all copies.
    7:  *
    8:  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
    9:  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
   10:  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
   11:  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
   12:  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
   13:  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
   14:  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
   15:  */
   16: 
   17: #include <config.h>
   18: 
   19: #include <sys/types.h>
   20: #include <stdio.h>
   21: #ifdef STDC_HEADERS
   22: # include <stdlib.h>
   23: # include <stddef.h>
   24: #else
   25: # ifdef HAVE_STDLIB_H
   26: #  include <stdlib.h>
   27: # endif
   28: #endif /* STDC_HEADERS */
   29: #include <stdarg.h>
   30: 
   31: #include "missing.h"
   32: #include "logging.h"
   33: #include "sudo_debug.h"
   34: 
   35: #ifdef HAVE_BSM_AUDIT
   36: # include "bsm_audit.h"
   37: #endif
   38: #ifdef HAVE_LINUX_AUDIT
   39: # include "linux_audit.h"
   40: #endif
   41: 
   42: void
   43: audit_success(char *exec_args[])
   44: {
   45:     debug_decl(audit_success, SUDO_DEBUG_AUDIT)
   46: 
   47:     if (exec_args != NULL) {
   48: #ifdef HAVE_BSM_AUDIT
   49: 	bsm_audit_success(exec_args);
   50: #endif
   51: #ifdef HAVE_LINUX_AUDIT
   52: 	linux_audit_command(exec_args, 1);
   53: #endif
   54:     }
   55: 
   56:     debug_return;
   57: }
   58: 
   59: void
   60: audit_failure(char *exec_args[], char const *const fmt, ...)
   61: {
   62:     va_list ap;
   63:     debug_decl(audit_success, SUDO_DEBUG_AUDIT)
   64: 
   65:     if (exec_args != NULL) {
   66: 	va_start(ap, fmt);
   67: #ifdef HAVE_BSM_AUDIT
   68: 	bsm_audit_failure(exec_args, fmt, ap);
   69: #endif
   70: #ifdef HAVE_LINUX_AUDIT
   71: 	linux_audit_command(exec_args, 0);
   72: #endif
   73: 	va_end(ap);
   74:     }
   75: 
   76:     debug_return;
   77: }

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>