00001 /*---------------------------------------------------------------------------- 00002 * Copyright (c) 2006, Novell, Inc. 00003 * All rights reserved. 00004 * 00005 * Redistribution and use in source and binary forms, with or without 00006 * modification, are permitted provided that the following conditions are 00007 * met: 00008 * 00009 * * Redistributions of source code must retain the above copyright 00010 * notice, this list of conditions and the following disclaimer. 00011 * * Redistributions in binary form must reproduce the above copyright 00012 * notice, this list of conditions and the following disclaimer in the 00013 * documentation and/or other materials provided with the distribution. 00014 * * Neither the name of the Novell nor the names of its contributors 00015 * may be used to endorse or promote products derived from this 00016 * software without specific prior written permission. 00017 * 00018 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 00019 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 00020 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 00021 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR 00022 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 00023 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 00024 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 00025 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 00026 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 00027 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 00028 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00029 *--------------------------------------------------------------------------*/ 00030 00039 #include <xdas.h> 00040 #include <xdas_util.h> 00041 #include <xdas_debug.h> 00042 00043 #include "libxdas_impl.h" 00044 00045 #include <stddef.h> 00046 00047 /*--------------------------------------------------------------------------- 00048 */ 00049 XDASXPC int XDASAPI xdas_import_event_records( 00050 int * minor_status, 00051 xdas_audit_ref_t das_ref, 00052 xdas_buffer_t audit_record_buffer, 00053 size_t * position_in_buffer) 00054 { 00055 xdas_session * xs; 00056 int bit_bucket; 00057 size_t st_bit_bucket; 00058 00059 /* check parameters */ 00060 if (!minor_status) 00061 minor_status = &bit_bucket; 00062 if (!position_in_buffer) 00063 position_in_buffer = &st_bit_bucket; 00064 00065 *minor_status = 0; 00066 *position_in_buffer = 0; 00067 00068 xdas_assert(das_ref != 0); 00069 if (das_ref == 0) 00070 return XDAS_S_CALL_INACCESSIBLE_READ | XDAS_S_INVALID_DAS_REF; 00071 00072 xs = xdas_validate_session(das_ref); 00073 xdas_assert(xs != 0); 00074 if (xs == 0) 00075 return XDAS_S_CALL_BAD_STRUCTURE | XDAS_S_INVALID_DAS_REF; 00076 00077 if (!xdas_session_has_rights(xs, XDAS_AUDIT_SERVICE | XDAS_AUDIT_IMPORT)) 00078 return XDAS_S_AUTHORIZATION_FAILURE; 00079 00080 return xdas_internal_import_event_records(minor_status, xs, 00081 audit_record_buffer, position_in_buffer); 00082 } 00083