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 #pragma ident "%Z%%M% %I% %E% SMI" 31 32 #ifdef __cplusplus 33 extern "C" { 34 #endif 35 36 extern int cannot_audit(int); 37 extern void aug_init(void); 38 extern dev_t aug_get_port(void); 39 extern int aug_get_machine(const char *, uint32_t *, uint32_t *); 40 extern void aug_save_auid(au_id_t); 41 extern void aug_save_uid(uid_t); 42 extern void aug_save_euid(uid_t); 43 extern void aug_save_gid(gid_t); 44 extern void aug_save_egid(gid_t); 45 extern void aug_save_pid(pid_t); 46 extern void aug_save_asid(au_asid_t); 47 extern void aug_save_tid(dev_t, int); 48 extern void aug_save_tid_ex(dev_t, uint32_t *, uint32_t); 49 extern int aug_save_me(void); 50 extern int aug_save_namask(void); 51 extern void aug_save_event(au_event_t); 52 extern void aug_save_sorf(int); 53 extern void aug_save_text(char *); 54 extern void aug_save_text1(char *); 55 extern void aug_save_text2(char *); 56 extern void aug_save_na(int); 57 extern void aug_save_user(char *); 58 extern void aug_save_path(char *); 59 extern int aug_save_policy(void); 60 extern void aug_save_afunc(int (*)(int)); 61 extern int aug_audit(void); 62 extern int aug_na_selected(void); 63 extern int aug_selected(void); 64 extern int aug_daemon_session(void); 65 66 #ifdef __cplusplus 67 } 68 #endif 69 70 #endif /* _GENERIC_H */ 71