1*7c478bd9Sstevel@tonic-gate /* 2*7c478bd9Sstevel@tonic-gate * CDDL HEADER START 3*7c478bd9Sstevel@tonic-gate * 4*7c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the 5*7c478bd9Sstevel@tonic-gate * Common Development and Distribution License, Version 1.0 only 6*7c478bd9Sstevel@tonic-gate * (the "License"). You may not use this file except in compliance 7*7c478bd9Sstevel@tonic-gate * with the License. 8*7c478bd9Sstevel@tonic-gate * 9*7c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10*7c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 11*7c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 12*7c478bd9Sstevel@tonic-gate * and limitations under the License. 13*7c478bd9Sstevel@tonic-gate * 14*7c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 15*7c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16*7c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 17*7c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 18*7c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 19*7c478bd9Sstevel@tonic-gate * 20*7c478bd9Sstevel@tonic-gate * CDDL HEADER END 21*7c478bd9Sstevel@tonic-gate */ 22*7c478bd9Sstevel@tonic-gate /* 23*7c478bd9Sstevel@tonic-gate * Copyright 2003 Sun Microsystems, Inc. All rights reserved. 24*7c478bd9Sstevel@tonic-gate * Use is subject to license terms. 25*7c478bd9Sstevel@tonic-gate */ 26*7c478bd9Sstevel@tonic-gate 27*7c478bd9Sstevel@tonic-gate #ifndef _AUDITRD_H 28*7c478bd9Sstevel@tonic-gate #define _AUDITRD_H 29*7c478bd9Sstevel@tonic-gate 30*7c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 31*7c478bd9Sstevel@tonic-gate 32*7c478bd9Sstevel@tonic-gate #ifdef __cplusplus 33*7c478bd9Sstevel@tonic-gate extern "C" { 34*7c478bd9Sstevel@tonic-gate #endif 35*7c478bd9Sstevel@tonic-gate 36*7c478bd9Sstevel@tonic-gate /* 37*7c478bd9Sstevel@tonic-gate * Global data for auditreduce 38*7c478bd9Sstevel@tonic-gate */ 39*7c478bd9Sstevel@tonic-gate 40*7c478bd9Sstevel@tonic-gate /* 41*7c478bd9Sstevel@tonic-gate * Message selection options 42*7c478bd9Sstevel@tonic-gate */ 43*7c478bd9Sstevel@tonic-gate unsigned short m_type; /* 'm' message type */ 44*7c478bd9Sstevel@tonic-gate gid_t m_groupr; /* 'g' group-id */ 45*7c478bd9Sstevel@tonic-gate gid_t m_groupe; /* 'f' effective group-id */ 46*7c478bd9Sstevel@tonic-gate uid_t m_usera; /* 'u' user id */ 47*7c478bd9Sstevel@tonic-gate uid_t m_usere; /* 'e' effective user-id */ 48*7c478bd9Sstevel@tonic-gate uid_t m_userr; /* 'r' real user-id */ 49*7c478bd9Sstevel@tonic-gate time_t m_after; /* 'a' after a time */ 50*7c478bd9Sstevel@tonic-gate time_t m_before; /* 'b' before a time */ 51*7c478bd9Sstevel@tonic-gate audit_state_t mask; /* used with m_class */ 52*7c478bd9Sstevel@tonic-gate char *zonename; /* 'z' zonename */ 53*7c478bd9Sstevel@tonic-gate #ifdef TSOL 54*7c478bd9Sstevel@tonic-gate brange_t m_slabel; /* 's' sensitivity label range */ 55*7c478bd9Sstevel@tonic-gate #endif /* TSOL */ 56*7c478bd9Sstevel@tonic-gate int flags; 57*7c478bd9Sstevel@tonic-gate int checkflags; 58*7c478bd9Sstevel@tonic-gate int socket_flag; 59*7c478bd9Sstevel@tonic-gate int ip_type; 60*7c478bd9Sstevel@tonic-gate int ip_ipv6[4]; /* ipv6 type object */ 61*7c478bd9Sstevel@tonic-gate int obj_flag; /* 'o' object type */ 62*7c478bd9Sstevel@tonic-gate int obj_id; /* object identifier */ 63*7c478bd9Sstevel@tonic-gate gid_t obj_group; /* object group */ 64*7c478bd9Sstevel@tonic-gate uid_t obj_owner; /* object owner */ 65*7c478bd9Sstevel@tonic-gate int subj_id; /* subject identifier */ 66*7c478bd9Sstevel@tonic-gate char ipc_type; /* 'o' object type - tell what type of IPC */ 67*7c478bd9Sstevel@tonic-gate 68*7c478bd9Sstevel@tonic-gate /* 69*7c478bd9Sstevel@tonic-gate * File selection options 70*7c478bd9Sstevel@tonic-gate */ 71*7c478bd9Sstevel@tonic-gate char *f_machine; /* 'M' machine (suffix) type */ 72*7c478bd9Sstevel@tonic-gate char *f_root; /* 'R' audit root */ 73*7c478bd9Sstevel@tonic-gate char *f_server; /* 'S' server */ 74*7c478bd9Sstevel@tonic-gate char *f_outfile; /* 'W' output file */ 75*7c478bd9Sstevel@tonic-gate static char *f_outtemp; /* 'W' temporary file name */ 76*7c478bd9Sstevel@tonic-gate int f_all; /* 'A' all records from a file */ 77*7c478bd9Sstevel@tonic-gate int f_complete; /* 'C' only completed files */ 78*7c478bd9Sstevel@tonic-gate int f_delete; /* 'D' delete when done */ 79*7c478bd9Sstevel@tonic-gate int f_quiet; /* 'Q' sshhhh! */ 80*7c478bd9Sstevel@tonic-gate int f_verbose; /* 'V' verbose */ 81*7c478bd9Sstevel@tonic-gate int f_stdin; /* '-' read from stdin */ 82*7c478bd9Sstevel@tonic-gate int f_cmdline; /* files specified on the command line */ 83*7c478bd9Sstevel@tonic-gate int new_mode; /* 'N' new object selection mode */ 84*7c478bd9Sstevel@tonic-gate 85*7c478bd9Sstevel@tonic-gate /* 86*7c478bd9Sstevel@tonic-gate * Global error reporting 87*7c478bd9Sstevel@tonic-gate */ 88*7c478bd9Sstevel@tonic-gate char *error_str; /* current error message */ 89*7c478bd9Sstevel@tonic-gate char errbuf[256]; /* for creating error messages with sprintf */ 90*7c478bd9Sstevel@tonic-gate char *ar = "auditreduce:"; 91*7c478bd9Sstevel@tonic-gate static int root_pid; /* remember original process's pid */ 92*7c478bd9Sstevel@tonic-gate 93*7c478bd9Sstevel@tonic-gate /* 94*7c478bd9Sstevel@tonic-gate * Global control blocks 95*7c478bd9Sstevel@tonic-gate */ 96*7c478bd9Sstevel@tonic-gate audit_pcb_t *audit_pcbs; /* ptr to array of pcbs that hold files (fcbs) */ 97*7c478bd9Sstevel@tonic-gate 98*7c478bd9Sstevel@tonic-gate int pcbsize; /* size of audit_pcb[] */ 99*7c478bd9Sstevel@tonic-gate int pcbnum; /* number of pcbs in audit_pcb[] that are active */ 100*7c478bd9Sstevel@tonic-gate 101*7c478bd9Sstevel@tonic-gate /* 102*7c478bd9Sstevel@tonic-gate * Time values 103*7c478bd9Sstevel@tonic-gate */ 104*7c478bd9Sstevel@tonic-gate time_t f_start; /* time of first record written */ 105*7c478bd9Sstevel@tonic-gate time_t f_end; /* time of last record written */ 106*7c478bd9Sstevel@tonic-gate time_t time_now; /* time the program began */ 107*7c478bd9Sstevel@tonic-gate 108*7c478bd9Sstevel@tonic-gate /* 109*7c478bd9Sstevel@tonic-gate * Global counting vars 110*7c478bd9Sstevel@tonic-gate */ 111*7c478bd9Sstevel@tonic-gate int filenum; /* number of files to process */ 112*7c478bd9Sstevel@tonic-gate 113*7c478bd9Sstevel@tonic-gate /* 114*7c478bd9Sstevel@tonic-gate * Global variable, class of current record being processed. 115*7c478bd9Sstevel@tonic-gate */ 116*7c478bd9Sstevel@tonic-gate int global_class; 117*7c478bd9Sstevel@tonic-gate 118*7c478bd9Sstevel@tonic-gate #ifdef __cplusplus 119*7c478bd9Sstevel@tonic-gate } 120*7c478bd9Sstevel@tonic-gate #endif 121*7c478bd9Sstevel@tonic-gate 122*7c478bd9Sstevel@tonic-gate #endif /* _AUDITRD_H */ 123