Annotation of embedaddon/sudo/plugins/sudoers/audit.c, revision 1.1.1.3.2.1

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

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