1 /* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License, Version 1.0 only 6 * (the "License"). You may not use this file except in compliance 7 * with the License. 8 * 9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10 * or http://www.opensolaris.org/os/licensing. 11 * See the License for the specific language governing permissions 12 * and limitations under the License. 13 * 14 * When distributing Covered Code, include this CDDL HEADER in each 15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16 * If applicable, add the following below this CDDL HEADER, with the 17 * fields enclosed by brackets "[]" replaced with your own identifying 18 * information: Portions Copyright [yyyy] [name of copyright owner] 19 * 20 * CDDL HEADER END 21 */ 22 /* 23 * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 24 * Use is subject to license terms. 25 */ 26 27 #ifndef _GENERIC_H 28 #define _GENERIC_H 29 30 #ifdef __cplusplus 31 extern "C" { 32 #endif 33 34 extern int cannot_audit(int); 35 extern void aug_init(void); 36 extern dev_t aug_get_port(void); 37 extern int aug_get_machine(const char *, uint32_t *, uint32_t *); 38 extern void aug_save_auid(au_id_t); 39 extern void aug_save_uid(uid_t); 40 extern void aug_save_euid(uid_t); 41 extern void aug_save_gid(gid_t); 42 extern void aug_save_egid(gid_t); 43 extern void aug_save_pid(pid_t); 44 extern void aug_save_asid(au_asid_t); 45 extern void aug_save_tid(dev_t, int); 46 extern void aug_save_tid_ex(dev_t, uint32_t *, uint32_t); 47 extern int aug_save_me(void); 48 extern int aug_save_namask(void); 49 extern void aug_save_event(au_event_t); 50 extern void aug_save_sorf(int); 51 extern void aug_save_text(char *); 52 extern void aug_save_text1(char *); 53 extern void aug_save_text2(char *); 54 extern void aug_save_na(int); 55 extern void aug_save_user(char *); 56 extern void aug_save_path(char *); 57 extern int aug_save_policy(void); 58 extern void aug_save_afunc(int (*)(int)); 59 extern int aug_audit(void); 60 extern int aug_na_selected(void); 61 extern int aug_selected(void); 62 extern int aug_daemon_session(void); 63 64 #ifdef __cplusplus 65 } 66 #endif 67 68 #endif /* _GENERIC_H */ 69