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 (the "License"). 6 * You may not use this file except in compliance with the License. 7 * 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9 * or http://www.opensolaris.org/os/licensing. 10 * See the License for the specific language governing permissions 11 * and limitations under the License. 12 * 13 * When distributing Covered Code, include this CDDL HEADER in each 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15 * If applicable, add the following below this CDDL HEADER, with the 16 * fields enclosed by brackets "[]" replaced with your own identifying 17 * information: Portions Copyright [yyyy] [name of copyright owner] 18 * 19 * CDDL HEADER END 20 */ 21 /* 22 * Copyright 2006 Sun Microsystems, Inc. All rights reserved. 23 * Use is subject to license terms. 24 */ 25 26 #ifndef _BSM_LIBBSM_H 27 #define _BSM_LIBBSM_H 28 29 #pragma ident "%Z%%M% %I% %E% SMI" 30 31 #include <secdb.h> 32 #include <stdio.h> 33 #include <errno.h> 34 #include <sys/types.h> 35 #include <bsm/audit.h> 36 #include <bsm/audit_record.h> 37 38 #ifdef __cplusplus 39 extern "C" { 40 #endif 41 42 #ifndef TEXT_DOMAIN 43 #define TEXT_DOMAIN "SUNW_OST_OSLIB" 44 #endif 45 46 extern const char *bsm_dom; 47 48 /* 49 * For audit_event(5) 50 */ 51 struct au_event_ent { 52 au_event_t ae_number; 53 char *ae_name; 54 char *ae_desc; 55 au_class_t ae_class; 56 }; 57 typedef struct au_event_ent au_event_ent_t; 58 59 /* 60 * For audit_class(5) 61 */ 62 struct au_class_ent { 63 char *ac_name; 64 au_class_t ac_class; 65 char *ac_desc; 66 }; 67 typedef struct au_class_ent au_class_ent_t; 68 69 /* 70 * For audit_user(5) 71 */ 72 struct au_user_ent { 73 char *au_name; 74 au_mask_t au_always; 75 au_mask_t au_never; 76 }; 77 typedef struct au_user_ent au_user_ent_t; 78 79 /* 80 * Internal representation of audit user in libnsl 81 */ 82 typedef struct au_user_str_s { 83 char *au_name; 84 char *au_always; 85 char *au_never; 86 } au_user_str_t; 87 88 /* 89 * opaque context value for getacval.c 90 */ 91 typedef struct au_acinfo au_acinfo_t; 92 93 /* 94 * adrf's version of adr_t 95 */ 96 typedef struct adrf_s { 97 adr_t *adrf_adr; 98 FILE *adrf_fp; 99 } adrf_t; 100 101 /* 102 * Functions that manipulate bytes from an audit file 103 */ 104 105 extern void adr_char(adr_t *, char *, int); 106 extern int adr_count(adr_t *); 107 extern void adr_int32(adr_t *, int32_t *, int); 108 extern void adr_int64(adr_t *, int64_t *, int); 109 extern void adr_short(adr_t *, short *, int); 110 extern void adr_start(adr_t *, char *); 111 112 extern int adrf_char(adrf_t *, char *, int); 113 extern int adrf_int32(adrf_t *, int32_t *, int); 114 extern int adrf_int64(adrf_t *, int64_t *, int); 115 extern int adrf_short(adrf_t *, short *, int); 116 extern void adrf_start(adrf_t *, adr_t *, FILE *); 117 extern int adrf_u_char(adrf_t *, uchar_t *, int); 118 extern int adrf_u_int32(adrf_t *, uint32_t *, int); 119 extern int adrf_u_int64(adrf_t *, uint64_t *, int); 120 extern int adrf_u_short(adrf_t *, ushort_t *, int); 121 122 /* 123 * Functions that manipulate bytes from an audit character stream. 124 */ 125 126 extern void adrm_start(adr_t *, char *); 127 extern void adrm_char(adr_t *, char *, int); 128 extern void adrm_short(adr_t *, short *, int); 129 extern void adrm_int64(adr_t *, int64_t *, int); 130 extern void adrm_int32(adr_t *, int32_t *, int); 131 extern void adrm_u_int32(adr_t *, uint32_t *, int); 132 extern void adrm_u_char(adr_t *, uchar_t *, int); 133 extern void adrm_u_int64(adr_t *, uint64_t *, int); 134 extern void adrm_u_short(adr_t *, ushort_t *, int); 135 extern void adrm_putint32(adr_t *, int32_t *, int); 136 137 /* 138 * Functions that do I/O for audit files 139 */ 140 141 extern int au_close(int, int, short); 142 extern int au_open(void); 143 extern int au_write(int, token_t *); 144 145 /* 146 * Functions than manipulate audit events 147 */ 148 149 extern void setauevent(void); 150 extern void endauevent(void); 151 extern int setaueventfile(char *); 152 153 extern au_event_ent_t *getauevent(void); 154 extern au_event_ent_t *getauevent_r(au_event_ent_t *); 155 extern au_event_ent_t *getauevnam(char *); 156 extern au_event_ent_t *getauevnam_r(au_event_ent_t *, char *); 157 extern au_event_ent_t *getauevnum(au_event_t); 158 extern au_event_ent_t *getauevnum_r(au_event_ent_t *, au_event_t); 159 extern au_event_t getauevnonam(char *); 160 extern int au_preselect(au_event_t, au_mask_t *, int, int); 161 extern int cacheauevent(au_event_ent_t **, au_event_t); 162 163 /* 164 * Functions that manipulate audit classes 165 */ 166 167 extern void setauclass(void); 168 extern void endauclass(void); 169 extern int setauclassfile(char *); 170 171 extern int cacheauclass(au_class_ent_t **, au_class_t); 172 extern int cacheauclassnam(au_class_ent_t **, char *); 173 extern au_class_ent_t *getauclassent(void); 174 extern au_class_ent_t *getauclassent_r(au_class_ent_t *); 175 extern au_class_ent_t *getauclassnam(char *); 176 extern au_class_ent_t *getauclassnam_r(au_class_ent_t *, char *); 177 178 /* 179 * Functions that manipulate audit attributes of users 180 */ 181 182 void setauuser(void); 183 void endauuser(void); 184 int setauuserfile(char *); 185 186 au_user_ent_t *getauuserent(void); 187 au_user_ent_t *getauuserent_r(au_user_ent_t *); 188 au_user_ent_t *getauusernam(char *); 189 au_user_ent_t *getauusernam_r(au_user_ent_t *, char *); 190 191 /* 192 * Functions that manipulate the audit control file 193 */ 194 195 void endac(void); 196 void setac(void); 197 int testac(void); 198 199 int getacdir(char *, int); 200 int getacmin(int *); 201 int getacna(char *, int); 202 int getacflg(char *, int); 203 204 /* 205 * Functions that manipulate the audit control file 206 */ 207 208 209 au_acinfo_t *_openac(char *); 210 void _endac(au_acinfo_t *); 211 void _rewindac(au_acinfo_t *); 212 213 int _getacdir(au_acinfo_t *, char *, int); 214 int _getaclib(au_acinfo_t *, kva_t **); 215 int _getacmin(au_acinfo_t *, int *); 216 int _getacna(au_acinfo_t *, char *, int); 217 int _getacflg(au_acinfo_t *, char *, int); 218 int _getacplug(au_acinfo_t *, kva_t **); 219 220 /* 221 * Functions that manipulate audit masks 222 */ 223 224 extern int au_user_mask(char *, au_mask_t *); 225 extern int getauditflagsbin(char *, au_mask_t *); 226 extern int getauditflagschar(char *, au_mask_t *, int); 227 extern int getfauditflags(au_mask_t *, au_mask_t *, au_mask_t *); 228 229 /* 230 * Functions that do system calls 231 */ 232 233 extern int audit(char *, int); 234 extern int auditon(int, caddr_t, int); 235 extern int auditstat(au_stat_t *); 236 extern int auditsvc(int, int); 237 extern int auditdoor(int); 238 extern int audituser(char *); 239 extern int getaudit(auditinfo_t *); 240 extern int getaudit_addr(auditinfo_addr_t *, int); 241 extern int getauid(au_id_t *); 242 extern int getkernstate(au_mask_t *); 243 extern int getuseraudit(au_id_t, au_mask_t *); 244 extern int setaudit(auditinfo_t *); 245 extern int setaudit_addr(auditinfo_addr_t *, int); 246 extern int setauid(au_id_t *); 247 extern int setkernstate(au_mask_t *); 248 extern int setuseraudit(au_id_t, au_mask_t *); 249 250 #define BSM_TEXTBUFSZ 256 /* size of string for generic text token */ 251 252 /* 253 * Defines for au_preselect(3) 254 */ 255 #define AU_PRS_SUCCESS 1 256 #define AU_PRS_FAILURE 2 257 #define AU_PRS_BOTH (AU_PRS_SUCCESS|AU_PRS_FAILURE) 258 259 #define AU_PRS_USECACHE 0 260 #define AU_PRS_REREAD 1 261 262 /* 263 * Defines for cacheauclass and cacheauevent 264 */ 265 #define AU_CACHE_FREE 0x0000 266 #define AU_CACHE_NAME 0x0001 267 #define AU_CACHE_NUMBER 0x0002 268 269 /* Flags for user-level audit routines: au_open, au_close, au_to_ */ 270 #define AU_TO_NO_WRITE 0 271 #define AU_TO_WRITE 1 272 273 /* system audit files for auditd */ 274 #define AUDITCLASSFILE "/etc/security/audit_class" 275 #define AUDITCONTROLFILE "/etc/security/audit_control" 276 #define AUDITDATAFILE "/etc/security/audit_data" 277 #define AUDITEVENTFILE "/etc/security/audit_event" 278 #define AUDITUSERFILE "/etc/security/audit_user" 279 280 /* array sizes for audit library structures */ 281 #define AU_CLASS_NAME_MAX 8 282 #define AU_CLASS_DESC_MAX 72 283 #define AU_EVENT_NAME_MAX 30 284 #define AU_EVENT_DESC_MAX 50 285 #define AU_EVENT_LINE_MAX 256 286 287 /* 288 * Some macros used internally by the nsswitch code 289 */ 290 #define AUDITUSER_FILENAME "/etc/security/audit_user" 291 #define AUDITUSER_DB_NAME "audit_user.org_dir" 292 #define AUDITUSER_DB_NCOL 3 /* total columns */ 293 #define AUDITUSER_DB_NKEYCOL 1 /* total searchable columns */ 294 #define AUDITUSER_DB_TBLT "audit_user_tbl" 295 #define AUDITUSER_SUCCESS 0 296 #define AUDITUSER_PARSE_ERANGE 1 297 #define AUDITUSER_NOT_FOUND 2 298 299 #define AUDITUSER_COL0_KW "name" 300 #define AUDITUSER_COL1_KW "always" 301 #define AUDITUSER_COL2_KW "never" 302 303 /* 304 * indices of searchable columns 305 */ 306 #define AUDITUSER_KEYCOL0 0 /* name */ 307 308 309 #ifdef __cplusplus 310 } 311 #endif 312 313 #endif /* _BSM_LIBBSM_H */ 314