File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / sudo / plugins / sudoers / audit.c
Revision 1.1.1.5 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Sun Jun 15 16:12:54 2014 UTC (10 years, 1 month ago) by misho
Branches: sudo, MAIN
CVS tags: v1_8_10p3_0, v1_8_10p3, HEAD
sudo v 1.8.10p3

    1: /*
    2:  * Copyright (c) 2009-2012 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: #ifdef HAVE_STDBOOL_H
   30: # include <stdbool.h>
   31: #else
   32: # include "compat/stdbool.h"
   33: #endif /* HAVE_STDBOOL_H */
   34: #include <stdarg.h>
   35: 
   36: #define DEFAULT_TEXT_DOMAIN	"sudoers"
   37: #include "gettext.h"		/* must be included before missing.h */
   38: 
   39: #include "missing.h"
   40: #include "logging.h"
   41: #include "sudo_debug.h"
   42: 
   43: #ifdef HAVE_BSM_AUDIT
   44: # include "bsm_audit.h"
   45: #endif
   46: #ifdef HAVE_LINUX_AUDIT
   47: # include "linux_audit.h"
   48: #endif
   49: 
   50: void
   51: audit_success(char *exec_args[])
   52: {
   53:     debug_decl(audit_success, SUDO_DEBUG_AUDIT)
   54: 
   55:     if (exec_args != NULL) {
   56: #ifdef HAVE_BSM_AUDIT
   57: 	bsm_audit_success(exec_args);
   58: #endif
   59: #ifdef HAVE_LINUX_AUDIT
   60: 	linux_audit_command(exec_args, 1);
   61: #endif
   62:     }
   63: 
   64:     debug_return;
   65: }
   66: 
   67: void
   68: audit_failure(char *exec_args[], char const *const fmt, ...)
   69: {
   70:     va_list ap;
   71:     int oldlocale;
   72:     debug_decl(audit_success, SUDO_DEBUG_AUDIT)
   73: 
   74:     /* Audit error messages should be in the sudoers locale. */
   75:     sudoers_setlocale(SUDOERS_LOCALE_SUDOERS, &oldlocale);
   76: 
   77:     if (exec_args != NULL) {
   78: 	va_start(ap, fmt);
   79: #ifdef HAVE_BSM_AUDIT
   80: 	bsm_audit_failure(exec_args, _(fmt), ap);
   81: #endif
   82: #ifdef HAVE_LINUX_AUDIT
   83: 	linux_audit_command(exec_args, 0);
   84: #endif
   85: 	va_end(ap);
   86:     }
   87: 
   88:     sudoers_setlocale(oldlocale, NULL);
   89: 
   90:     debug_return;
   91: }

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