17c478bd9Sstevel@tonic-gate /* 27c478bd9Sstevel@tonic-gate * CDDL HEADER START 37c478bd9Sstevel@tonic-gate * 47c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the 545916cd2Sjpk * Common Development and Distribution License (the "License"). 645916cd2Sjpk * You may not use this file except in compliance with the License. 77c478bd9Sstevel@tonic-gate * 87c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 97c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 107c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 117c478bd9Sstevel@tonic-gate * and limitations under the License. 127c478bd9Sstevel@tonic-gate * 137c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 147c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 157c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 167c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 177c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 187c478bd9Sstevel@tonic-gate * 197c478bd9Sstevel@tonic-gate * CDDL HEADER END 207c478bd9Sstevel@tonic-gate */ 217c478bd9Sstevel@tonic-gate /* 22134a1f4eSCasper H.S. Dik * Copyright (c) 1992, 2010, Oracle and/or its affiliates. All rights reserved. 237c478bd9Sstevel@tonic-gate */ 247c478bd9Sstevel@tonic-gate 257c478bd9Sstevel@tonic-gate /* 267c478bd9Sstevel@tonic-gate * This file contains the audit hook support code for auditing. 277c478bd9Sstevel@tonic-gate */ 287c478bd9Sstevel@tonic-gate 297c478bd9Sstevel@tonic-gate #include <sys/types.h> 307c478bd9Sstevel@tonic-gate #include <sys/proc.h> 317c478bd9Sstevel@tonic-gate #include <sys/vnode.h> 327c478bd9Sstevel@tonic-gate #include <sys/vfs.h> 337c478bd9Sstevel@tonic-gate #include <sys/file.h> 347c478bd9Sstevel@tonic-gate #include <sys/user.h> 357c478bd9Sstevel@tonic-gate #include <sys/stropts.h> 367c478bd9Sstevel@tonic-gate #include <sys/systm.h> 377c478bd9Sstevel@tonic-gate #include <sys/pathname.h> 387c478bd9Sstevel@tonic-gate #include <sys/syscall.h> 397c478bd9Sstevel@tonic-gate #include <sys/fcntl.h> 407c478bd9Sstevel@tonic-gate #include <sys/ipc_impl.h> 417c478bd9Sstevel@tonic-gate #include <sys/msg_impl.h> 427c478bd9Sstevel@tonic-gate #include <sys/sem_impl.h> 437c478bd9Sstevel@tonic-gate #include <sys/shm_impl.h> 447c478bd9Sstevel@tonic-gate #include <sys/kmem.h> /* for KM_SLEEP */ 457c478bd9Sstevel@tonic-gate #include <sys/socket.h> 467c478bd9Sstevel@tonic-gate #include <sys/cmn_err.h> /* snprintf... */ 477c478bd9Sstevel@tonic-gate #include <sys/debug.h> 487c478bd9Sstevel@tonic-gate #include <sys/thread.h> 497c478bd9Sstevel@tonic-gate #include <netinet/in.h> 507c478bd9Sstevel@tonic-gate #include <c2/audit.h> /* needs to be included before user.h */ 517c478bd9Sstevel@tonic-gate #include <c2/audit_kernel.h> /* for M_DONTWAIT */ 527c478bd9Sstevel@tonic-gate #include <c2/audit_kevents.h> 537c478bd9Sstevel@tonic-gate #include <c2/audit_record.h> 547c478bd9Sstevel@tonic-gate #include <sys/strsubr.h> 557c478bd9Sstevel@tonic-gate #include <sys/tihdr.h> 567c478bd9Sstevel@tonic-gate #include <sys/tiuser.h> 577c478bd9Sstevel@tonic-gate #include <sys/timod.h> 587c478bd9Sstevel@tonic-gate #include <sys/model.h> /* for model_t */ 597c478bd9Sstevel@tonic-gate #include <sys/disp.h> /* for servicing_interrupt() */ 607c478bd9Sstevel@tonic-gate #include <sys/devpolicy.h> 617c478bd9Sstevel@tonic-gate #include <sys/crypto/ioctladmin.h> 62134a1f4eSCasper H.S. Dik #include <sys/cred_impl.h> 63c28749e9Skais #include <inet/kssl/kssl.h> 64799bd290Spwernau #include <net/pfpolicy.h> 657c478bd9Sstevel@tonic-gate 667c478bd9Sstevel@tonic-gate static void add_return_token(caddr_t *, unsigned int scid, int err, int rval); 677c478bd9Sstevel@tonic-gate 687c478bd9Sstevel@tonic-gate static void audit_pathbuild(struct pathname *pnp); 697c478bd9Sstevel@tonic-gate 707c478bd9Sstevel@tonic-gate 717c478bd9Sstevel@tonic-gate /* 727c478bd9Sstevel@tonic-gate * ROUTINE: AUDIT_SAVEPATH 737c478bd9Sstevel@tonic-gate * PURPOSE: 747c478bd9Sstevel@tonic-gate * CALLBY: LOOKUPPN 757c478bd9Sstevel@tonic-gate * 767c478bd9Sstevel@tonic-gate * NOTE: We have reached the end of a path in fs/lookup.c. 777c478bd9Sstevel@tonic-gate * We get two pieces of information here: 787c478bd9Sstevel@tonic-gate * the vnode of the last component (vp) and 797c478bd9Sstevel@tonic-gate * the status of the last access (flag). 807c478bd9Sstevel@tonic-gate * TODO: 817c478bd9Sstevel@tonic-gate * QUESTION: 827c478bd9Sstevel@tonic-gate */ 837c478bd9Sstevel@tonic-gate 847c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 857c478bd9Sstevel@tonic-gate int 867c478bd9Sstevel@tonic-gate audit_savepath( 877c478bd9Sstevel@tonic-gate struct pathname *pnp, /* pathname to lookup */ 887c478bd9Sstevel@tonic-gate struct vnode *vp, /* vnode of the last component */ 89*4a0fa546SMarek Pospisil struct vnode *pvp, /* vnode of the last parent component */ 907c478bd9Sstevel@tonic-gate int flag, /* status of the last access */ 917c478bd9Sstevel@tonic-gate cred_t *cr) /* cred of requestor */ 927c478bd9Sstevel@tonic-gate { 937c478bd9Sstevel@tonic-gate 947c478bd9Sstevel@tonic-gate t_audit_data_t *tad; /* current thread */ 959e9e6ab8Spaulson au_kcontext_t *kctx = GET_KCTX_PZ; 967c478bd9Sstevel@tonic-gate 977c478bd9Sstevel@tonic-gate tad = U2A(u); 987c478bd9Sstevel@tonic-gate 997c478bd9Sstevel@tonic-gate /* 100*4a0fa546SMarek Pospisil * Noise elimination in audit trails - this event will be discarded if: 101*4a0fa546SMarek Pospisil * - the public policy is not active AND 102*4a0fa546SMarek Pospisil * - the system call is a public operation AND 103*4a0fa546SMarek Pospisil * - the file was not found: VFS lookup failed with ENOENT error AND 104*4a0fa546SMarek Pospisil * - the missing file would have been located in the public directory 105*4a0fa546SMarek Pospisil * owned by root if it had existed 106*4a0fa546SMarek Pospisil */ 107*4a0fa546SMarek Pospisil if (tad->tad_flag != 0 && flag == ENOENT && pvp != NULL && 108*4a0fa546SMarek Pospisil (tad->tad_ctrl & TAD_PUBLIC_EV) && 109*4a0fa546SMarek Pospisil !(kctx->auk_policy & AUDIT_PUBLIC)) { 110*4a0fa546SMarek Pospisil struct vattr attr; 111*4a0fa546SMarek Pospisil 112*4a0fa546SMarek Pospisil attr.va_mask = AT_ALL; 113*4a0fa546SMarek Pospisil if (VOP_GETATTR(pvp, &attr, 0, CRED(), NULL) == 0) { 114*4a0fa546SMarek Pospisil if (object_is_public(&attr)) { 115*4a0fa546SMarek Pospisil tad->tad_ctrl |= TAD_NOAUDIT; 116*4a0fa546SMarek Pospisil } 117*4a0fa546SMarek Pospisil } 118*4a0fa546SMarek Pospisil } 119*4a0fa546SMarek Pospisil 120*4a0fa546SMarek Pospisil /* 1217c478bd9Sstevel@tonic-gate * this event being audited or do we need path information 1227c478bd9Sstevel@tonic-gate * later? This might be for a chdir/chroot or open (add path 1237c478bd9Sstevel@tonic-gate * to file pointer. If the path has already been found for an 1247c478bd9Sstevel@tonic-gate * open/creat then we don't need to process the path. 1257c478bd9Sstevel@tonic-gate * 126*4a0fa546SMarek Pospisil * S2E_SP (TAD_SAVPATH) flag comes from audit_s2e[].au_ctrl. Used with 1277c478bd9Sstevel@tonic-gate * chroot, chdir, open, creat system call processing. It determines 1287c478bd9Sstevel@tonic-gate * if audit_savepath() will discard the path or we need it later. 129*4a0fa546SMarek Pospisil * TAD_PATHFND means path already included in this audit record. It 1307c478bd9Sstevel@tonic-gate * is used in cases where multiple path lookups are done per 1317c478bd9Sstevel@tonic-gate * system call. The policy flag, AUDIT_PATH, controls if multiple 1327c478bd9Sstevel@tonic-gate * paths are allowed. 133*4a0fa546SMarek Pospisil * S2E_NPT (TAD_NOPATH) flag comes from audit_s2e[].au_ctrl. Used with 1347c478bd9Sstevel@tonic-gate * exit processing to inhibit any paths that may be added due to 1357c478bd9Sstevel@tonic-gate * closes. 1367c478bd9Sstevel@tonic-gate */ 137*4a0fa546SMarek Pospisil if ((tad->tad_flag == 0 && !(tad->tad_ctrl & TAD_SAVPATH)) || 138*4a0fa546SMarek Pospisil ((tad->tad_ctrl & TAD_PATHFND) && 1397c478bd9Sstevel@tonic-gate !(kctx->auk_policy & AUDIT_PATH)) || 140*4a0fa546SMarek Pospisil (tad->tad_ctrl & TAD_NOPATH)) { 1417c478bd9Sstevel@tonic-gate return (0); 1427c478bd9Sstevel@tonic-gate } 1437c478bd9Sstevel@tonic-gate 144*4a0fa546SMarek Pospisil tad->tad_ctrl |= TAD_NOPATH; /* prevent possible reentry */ 14545916cd2Sjpk 1467c478bd9Sstevel@tonic-gate audit_pathbuild(pnp); 1477c478bd9Sstevel@tonic-gate 1487c478bd9Sstevel@tonic-gate /* 1497c478bd9Sstevel@tonic-gate * are we auditing only if error, or if it is not open or create 1507c478bd9Sstevel@tonic-gate * otherwise audit_setf will do it 1517c478bd9Sstevel@tonic-gate */ 1527c478bd9Sstevel@tonic-gate 1537c478bd9Sstevel@tonic-gate if (tad->tad_flag) { 1548fd04b83SRoger A. Faulkner if (flag && 1558fd04b83SRoger A. Faulkner (tad->tad_scid == SYS_open || 1567c478bd9Sstevel@tonic-gate tad->tad_scid == SYS_open64 || 1578fd04b83SRoger A. Faulkner tad->tad_scid == SYS_openat || 1588fd04b83SRoger A. Faulkner tad->tad_scid == SYS_openat64)) { 159*4a0fa546SMarek Pospisil tad->tad_ctrl |= TAD_TRUE_CREATE; 1607c478bd9Sstevel@tonic-gate } 1617c478bd9Sstevel@tonic-gate 1627c478bd9Sstevel@tonic-gate /* add token to audit record for this name */ 1637c478bd9Sstevel@tonic-gate au_uwrite(au_to_path(tad->tad_aupath)); 1647c478bd9Sstevel@tonic-gate 1657c478bd9Sstevel@tonic-gate /* add the attributes of the object */ 1667c478bd9Sstevel@tonic-gate if (vp) { 1677c478bd9Sstevel@tonic-gate /* 1687c478bd9Sstevel@tonic-gate * only capture attributes when there is no error 1697c478bd9Sstevel@tonic-gate * lookup will not return the vnode of the failing 1707c478bd9Sstevel@tonic-gate * component. 1717c478bd9Sstevel@tonic-gate * 1727c478bd9Sstevel@tonic-gate * if there was a lookup error, then don't add 1737c478bd9Sstevel@tonic-gate * attribute. if lookup in vn_create(), 1747c478bd9Sstevel@tonic-gate * then don't add attribute, 1757c478bd9Sstevel@tonic-gate * it will be added at end of vn_create(). 1767c478bd9Sstevel@tonic-gate */ 177*4a0fa546SMarek Pospisil if (!flag && !(tad->tad_ctrl & TAD_NOATTRB)) 1787c478bd9Sstevel@tonic-gate audit_attributes(vp); 1797c478bd9Sstevel@tonic-gate } 1807c478bd9Sstevel@tonic-gate } 1817c478bd9Sstevel@tonic-gate 1828fd04b83SRoger A. Faulkner /* free up space if we're not going to save path (open, creat) */ 183*4a0fa546SMarek Pospisil if ((tad->tad_ctrl & TAD_SAVPATH) == 0) { 1847c478bd9Sstevel@tonic-gate if (tad->tad_aupath != NULL) { 1857c478bd9Sstevel@tonic-gate au_pathrele(tad->tad_aupath); 1867c478bd9Sstevel@tonic-gate tad->tad_aupath = NULL; 1877c478bd9Sstevel@tonic-gate } 1887c478bd9Sstevel@tonic-gate } 189*4a0fa546SMarek Pospisil if (tad->tad_ctrl & TAD_MLD) 190*4a0fa546SMarek Pospisil tad->tad_ctrl |= TAD_PATHFND; 1917c478bd9Sstevel@tonic-gate 192*4a0fa546SMarek Pospisil tad->tad_ctrl &= ~TAD_NOPATH; /* restore */ 1937c478bd9Sstevel@tonic-gate return (0); 1947c478bd9Sstevel@tonic-gate } 1957c478bd9Sstevel@tonic-gate 1967c478bd9Sstevel@tonic-gate static void 1977c478bd9Sstevel@tonic-gate audit_pathbuild(struct pathname *pnp) 1987c478bd9Sstevel@tonic-gate { 1997c478bd9Sstevel@tonic-gate char *pp; /* pointer to path */ 2007c478bd9Sstevel@tonic-gate int len; /* length of incoming segment */ 2017c478bd9Sstevel@tonic-gate int newsect; /* path requires a new section */ 2027c478bd9Sstevel@tonic-gate struct audit_path *pfxapp; /* prefix for path */ 2037c478bd9Sstevel@tonic-gate struct audit_path *newapp; /* new audit_path */ 2047c478bd9Sstevel@tonic-gate t_audit_data_t *tad; /* current thread */ 2057c478bd9Sstevel@tonic-gate p_audit_data_t *pad; /* current process */ 2067c478bd9Sstevel@tonic-gate 2077c478bd9Sstevel@tonic-gate tad = U2A(u); 2087c478bd9Sstevel@tonic-gate ASSERT(tad != NULL); 2097c478bd9Sstevel@tonic-gate pad = P2A(curproc); 2107c478bd9Sstevel@tonic-gate ASSERT(pad != NULL); 2117c478bd9Sstevel@tonic-gate 2127c478bd9Sstevel@tonic-gate len = (pnp->pn_path - pnp->pn_buf) + 1; /* +1 for terminator */ 2137c478bd9Sstevel@tonic-gate ASSERT(len > 0); 2147c478bd9Sstevel@tonic-gate 2157c478bd9Sstevel@tonic-gate /* adjust for path prefix: tad_aupath, ATPATH, CRD, or CWD */ 2167c478bd9Sstevel@tonic-gate mutex_enter(&pad->pad_lock); 2177c478bd9Sstevel@tonic-gate if (tad->tad_aupath != NULL) { 2187c478bd9Sstevel@tonic-gate pfxapp = tad->tad_aupath; 219*4a0fa546SMarek Pospisil } else if ((tad->tad_ctrl & TAD_ATCALL) && pnp->pn_buf[0] != '/') { 2207c478bd9Sstevel@tonic-gate ASSERT(tad->tad_atpath != NULL); 2217c478bd9Sstevel@tonic-gate pfxapp = tad->tad_atpath; 222*4a0fa546SMarek Pospisil } else if (tad->tad_ctrl & TAD_ABSPATH) { 2237c478bd9Sstevel@tonic-gate pfxapp = pad->pad_root; 2247c478bd9Sstevel@tonic-gate } else { 2257c478bd9Sstevel@tonic-gate pfxapp = pad->pad_cwd; 2267c478bd9Sstevel@tonic-gate } 2277c478bd9Sstevel@tonic-gate au_pathhold(pfxapp); 2287c478bd9Sstevel@tonic-gate mutex_exit(&pad->pad_lock); 2297c478bd9Sstevel@tonic-gate 2307c478bd9Sstevel@tonic-gate /* get an expanded buffer to hold the anchored path */ 231*4a0fa546SMarek Pospisil newsect = tad->tad_ctrl & TAD_ATTPATH; 2327c478bd9Sstevel@tonic-gate newapp = au_pathdup(pfxapp, newsect, len); 2337c478bd9Sstevel@tonic-gate au_pathrele(pfxapp); 2347c478bd9Sstevel@tonic-gate 2357c478bd9Sstevel@tonic-gate pp = newapp->audp_sect[newapp->audp_cnt] - len; 2367c478bd9Sstevel@tonic-gate if (!newsect) { 2377c478bd9Sstevel@tonic-gate /* overlay previous NUL terminator */ 2387c478bd9Sstevel@tonic-gate *(pp - 1) = '/'; 2397c478bd9Sstevel@tonic-gate } 2407c478bd9Sstevel@tonic-gate 2417c478bd9Sstevel@tonic-gate /* now add string of processed path */ 2427c478bd9Sstevel@tonic-gate bcopy(pnp->pn_buf, pp, len); 2437c478bd9Sstevel@tonic-gate pp[len - 1] = '\0'; 2447c478bd9Sstevel@tonic-gate 2457c478bd9Sstevel@tonic-gate /* perform path simplification as necessary */ 2467c478bd9Sstevel@tonic-gate audit_fixpath(newapp, len); 2477c478bd9Sstevel@tonic-gate 2487c478bd9Sstevel@tonic-gate if (tad->tad_aupath) 2497c478bd9Sstevel@tonic-gate au_pathrele(tad->tad_aupath); 2507c478bd9Sstevel@tonic-gate tad->tad_aupath = newapp; 2517c478bd9Sstevel@tonic-gate 2527c478bd9Sstevel@tonic-gate /* for case where multiple lookups in one syscall (rename) */ 253*4a0fa546SMarek Pospisil tad->tad_ctrl &= ~(TAD_ABSPATH | TAD_ATTPATH); 2547c478bd9Sstevel@tonic-gate } 2557c478bd9Sstevel@tonic-gate 2567c478bd9Sstevel@tonic-gate 2577c478bd9Sstevel@tonic-gate /* 2587c478bd9Sstevel@tonic-gate * ROUTINE: AUDIT_ANCHORPATH 2597c478bd9Sstevel@tonic-gate * PURPOSE: 2607c478bd9Sstevel@tonic-gate * CALLBY: LOOKUPPN 2617c478bd9Sstevel@tonic-gate * NOTE: 2627c478bd9Sstevel@tonic-gate * anchor path at "/". We have seen a symbolic link or entering for the 2637c478bd9Sstevel@tonic-gate * first time we will throw away any saved path if path is anchored. 2647c478bd9Sstevel@tonic-gate * 2657c478bd9Sstevel@tonic-gate * flag = 0, path is relative. 266*4a0fa546SMarek Pospisil * flag = 1, path is absolute. Free any saved path and set flag to TAD_ABSPATH. 2677c478bd9Sstevel@tonic-gate * 2687c478bd9Sstevel@tonic-gate * If the (new) path is absolute, then we have to throw away whatever we have 269da6c28aaSamw * already accumulated since it is being superseded by new path which is 2707c478bd9Sstevel@tonic-gate * anchored at the root. 2717c478bd9Sstevel@tonic-gate * Note that if the path is relative, this function does nothing 2727c478bd9Sstevel@tonic-gate * TODO: 2737c478bd9Sstevel@tonic-gate * QUESTION: 2747c478bd9Sstevel@tonic-gate */ 2757c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 2767c478bd9Sstevel@tonic-gate void 2777c478bd9Sstevel@tonic-gate audit_anchorpath(struct pathname *pnp, int flag) 2787c478bd9Sstevel@tonic-gate { 2799e9e6ab8Spaulson au_kcontext_t *kctx = GET_KCTX_PZ; 2807c478bd9Sstevel@tonic-gate t_audit_data_t *tad; 2817c478bd9Sstevel@tonic-gate 2827c478bd9Sstevel@tonic-gate tad = U2A(u); 2837c478bd9Sstevel@tonic-gate 2847c478bd9Sstevel@tonic-gate /* 2857c478bd9Sstevel@tonic-gate * this event being audited or do we need path information 2867c478bd9Sstevel@tonic-gate * later? This might be for a chdir/chroot or open (add path 2877c478bd9Sstevel@tonic-gate * to file pointer. If the path has already been found for an 2887c478bd9Sstevel@tonic-gate * open/creat then we don't need to process the path. 2897c478bd9Sstevel@tonic-gate * 290*4a0fa546SMarek Pospisil * S2E_SP (TAD_SAVPATH) flag comes from audit_s2e[].au_ctrl. Used with 2917c478bd9Sstevel@tonic-gate * chroot, chdir, open, creat system call processing. It determines 2927c478bd9Sstevel@tonic-gate * if audit_savepath() will discard the path or we need it later. 293*4a0fa546SMarek Pospisil * TAD_PATHFND means path already included in this audit record. It 2947c478bd9Sstevel@tonic-gate * is used in cases where multiple path lookups are done per 2957c478bd9Sstevel@tonic-gate * system call. The policy flag, AUDIT_PATH, controls if multiple 2967c478bd9Sstevel@tonic-gate * paths are allowed. 297*4a0fa546SMarek Pospisil * S2E_NPT (TAD_NOPATH) flag comes from audit_s2e[].au_ctrl. Used with 2987c478bd9Sstevel@tonic-gate * exit processing to inhibit any paths that may be added due to 2997c478bd9Sstevel@tonic-gate * closes. 3007c478bd9Sstevel@tonic-gate */ 301*4a0fa546SMarek Pospisil if ((tad->tad_flag == 0 && !(tad->tad_ctrl & TAD_SAVPATH)) || 302*4a0fa546SMarek Pospisil ((tad->tad_ctrl & TAD_PATHFND) && 3037c478bd9Sstevel@tonic-gate !(kctx->auk_policy & AUDIT_PATH)) || 304*4a0fa546SMarek Pospisil (tad->tad_ctrl & TAD_NOPATH)) { 3057c478bd9Sstevel@tonic-gate return; 3067c478bd9Sstevel@tonic-gate } 3077c478bd9Sstevel@tonic-gate 3087c478bd9Sstevel@tonic-gate if (flag) { 309*4a0fa546SMarek Pospisil tad->tad_ctrl |= TAD_ABSPATH; 3107c478bd9Sstevel@tonic-gate if (tad->tad_aupath != NULL) { 3117c478bd9Sstevel@tonic-gate au_pathrele(tad->tad_aupath); 3127c478bd9Sstevel@tonic-gate tad->tad_aupath = NULL; 3137c478bd9Sstevel@tonic-gate } 3147c478bd9Sstevel@tonic-gate } 3157c478bd9Sstevel@tonic-gate } 3167c478bd9Sstevel@tonic-gate 3177c478bd9Sstevel@tonic-gate 3187c478bd9Sstevel@tonic-gate /* 3197c478bd9Sstevel@tonic-gate * symbolic link. Save previous components. 3207c478bd9Sstevel@tonic-gate * 3217c478bd9Sstevel@tonic-gate * the path seen so far looks like this 3227c478bd9Sstevel@tonic-gate * 3237c478bd9Sstevel@tonic-gate * +-----------------------+----------------+ 3247c478bd9Sstevel@tonic-gate * | path processed so far | remaining path | 3257c478bd9Sstevel@tonic-gate * +-----------------------+----------------+ 3267c478bd9Sstevel@tonic-gate * \-----------------------/ 3277c478bd9Sstevel@tonic-gate * save this string if 3287c478bd9Sstevel@tonic-gate * symbolic link relative 3297c478bd9Sstevel@tonic-gate * (but don't include symlink component) 3307c478bd9Sstevel@tonic-gate */ 3317c478bd9Sstevel@tonic-gate 3327c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 3337c478bd9Sstevel@tonic-gate 3347c478bd9Sstevel@tonic-gate 3357c478bd9Sstevel@tonic-gate /* 3367c478bd9Sstevel@tonic-gate * ROUTINE: AUDIT_SYMLINK 3377c478bd9Sstevel@tonic-gate * PURPOSE: 3387c478bd9Sstevel@tonic-gate * CALLBY: LOOKUPPN 3397c478bd9Sstevel@tonic-gate * NOTE: 3407c478bd9Sstevel@tonic-gate * TODO: 3417c478bd9Sstevel@tonic-gate * QUESTION: 3427c478bd9Sstevel@tonic-gate */ 3437c478bd9Sstevel@tonic-gate void 3447c478bd9Sstevel@tonic-gate audit_symlink(struct pathname *pnp, struct pathname *sympath) 3457c478bd9Sstevel@tonic-gate { 3467c478bd9Sstevel@tonic-gate char *sp; /* saved initial pp */ 3477c478bd9Sstevel@tonic-gate char *cp; /* start of symlink path */ 3487c478bd9Sstevel@tonic-gate uint_t len_path; /* processed path before symlink */ 3497c478bd9Sstevel@tonic-gate t_audit_data_t *tad; 3509e9e6ab8Spaulson au_kcontext_t *kctx = GET_KCTX_PZ; 3517c478bd9Sstevel@tonic-gate 3527c478bd9Sstevel@tonic-gate tad = U2A(u); 3537c478bd9Sstevel@tonic-gate 3547c478bd9Sstevel@tonic-gate /* 3557c478bd9Sstevel@tonic-gate * this event being audited or do we need path information 3567c478bd9Sstevel@tonic-gate * later? This might be for a chdir/chroot or open (add path 3577c478bd9Sstevel@tonic-gate * to file pointer. If the path has already been found for an 3587c478bd9Sstevel@tonic-gate * open/creat then we don't need to process the path. 3597c478bd9Sstevel@tonic-gate * 360*4a0fa546SMarek Pospisil * S2E_SP (TAD_SAVPATH) flag comes from audit_s2e[].au_ctrl. Used with 3617c478bd9Sstevel@tonic-gate * chroot, chdir, open, creat system call processing. It determines 3627c478bd9Sstevel@tonic-gate * if audit_savepath() will discard the path or we need it later. 363*4a0fa546SMarek Pospisil * TAD_PATHFND means path already included in this audit record. It 3647c478bd9Sstevel@tonic-gate * is used in cases where multiple path lookups are done per 3657c478bd9Sstevel@tonic-gate * system call. The policy flag, AUDIT_PATH, controls if multiple 3667c478bd9Sstevel@tonic-gate * paths are allowed. 367*4a0fa546SMarek Pospisil * S2E_NPT (TAD_NOPATH) flag comes from audit_s2e[].au_ctrl. Used with 3687c478bd9Sstevel@tonic-gate * exit processing to inhibit any paths that may be added due to 3697c478bd9Sstevel@tonic-gate * closes. 3707c478bd9Sstevel@tonic-gate */ 3717c478bd9Sstevel@tonic-gate if ((tad->tad_flag == 0 && 372*4a0fa546SMarek Pospisil !(tad->tad_ctrl & TAD_SAVPATH)) || 373*4a0fa546SMarek Pospisil ((tad->tad_ctrl & TAD_PATHFND) && 3747c478bd9Sstevel@tonic-gate !(kctx->auk_policy & AUDIT_PATH)) || 375*4a0fa546SMarek Pospisil (tad->tad_ctrl & TAD_NOPATH)) { 3767c478bd9Sstevel@tonic-gate return; 3777c478bd9Sstevel@tonic-gate } 3787c478bd9Sstevel@tonic-gate 3797c478bd9Sstevel@tonic-gate /* 3807c478bd9Sstevel@tonic-gate * if symbolic link is anchored at / then do nothing. 3817c478bd9Sstevel@tonic-gate * When we cycle back to begin: in lookuppn() we will 3827c478bd9Sstevel@tonic-gate * call audit_anchorpath() with a flag indicating if the 3837c478bd9Sstevel@tonic-gate * path is anchored at / or is relative. We will release 3847c478bd9Sstevel@tonic-gate * any saved path at that point. 3857c478bd9Sstevel@tonic-gate * 3867c478bd9Sstevel@tonic-gate * Note In the event that an error occurs in pn_combine then 3877c478bd9Sstevel@tonic-gate * we want to remain pointing at the component that caused the 3887c478bd9Sstevel@tonic-gate * path to overflow the pnp structure. 3897c478bd9Sstevel@tonic-gate */ 3907c478bd9Sstevel@tonic-gate if (sympath->pn_buf[0] == '/') 3917c478bd9Sstevel@tonic-gate return; 3927c478bd9Sstevel@tonic-gate 3937c478bd9Sstevel@tonic-gate /* backup over last component */ 3947c478bd9Sstevel@tonic-gate sp = cp = pnp->pn_path; 3957c478bd9Sstevel@tonic-gate while (*--cp != '/' && cp > pnp->pn_buf) 3967c478bd9Sstevel@tonic-gate ; 3977c478bd9Sstevel@tonic-gate 3987c478bd9Sstevel@tonic-gate len_path = cp - pnp->pn_buf; 3997c478bd9Sstevel@tonic-gate 4007c478bd9Sstevel@tonic-gate /* is there anything to save? */ 4017c478bd9Sstevel@tonic-gate if (len_path) { 402405e5d68Stz204579 pnp->pn_path = pnp->pn_buf; 4037c478bd9Sstevel@tonic-gate audit_pathbuild(pnp); 4047c478bd9Sstevel@tonic-gate pnp->pn_path = sp; 4057c478bd9Sstevel@tonic-gate } 4067c478bd9Sstevel@tonic-gate } 4077c478bd9Sstevel@tonic-gate 4087c478bd9Sstevel@tonic-gate /* 409*4a0fa546SMarek Pospisil * object_is_public : determine whether events for the object (corresponding to 410*4a0fa546SMarek Pospisil * the specified file/directory attr) should be audited or 411*4a0fa546SMarek Pospisil * ignored. 4127c478bd9Sstevel@tonic-gate * 413*4a0fa546SMarek Pospisil * returns: 1 - if audit policy and object attributes indicate that 414*4a0fa546SMarek Pospisil * file/directory is effectively public. read events for 4157c478bd9Sstevel@tonic-gate * the file should not be audited. 4167c478bd9Sstevel@tonic-gate * 0 - otherwise 4177c478bd9Sstevel@tonic-gate * 4187c478bd9Sstevel@tonic-gate * The required attributes to be considered a public object are: 4197c478bd9Sstevel@tonic-gate * - owned by root, AND 4207c478bd9Sstevel@tonic-gate * - world-readable (permissions for other include read), AND 4217c478bd9Sstevel@tonic-gate * - NOT world-writeable (permissions for other don't 4227c478bd9Sstevel@tonic-gate * include write) 4237c478bd9Sstevel@tonic-gate * (mode doesn't need to be checked for symlinks) 4247c478bd9Sstevel@tonic-gate */ 4257c478bd9Sstevel@tonic-gate int 426*4a0fa546SMarek Pospisil object_is_public(struct vattr *attr) 4277c478bd9Sstevel@tonic-gate { 4289e9e6ab8Spaulson au_kcontext_t *kctx = GET_KCTX_PZ; 4297c478bd9Sstevel@tonic-gate 4307c478bd9Sstevel@tonic-gate if (!(kctx->auk_policy & AUDIT_PUBLIC) && (attr->va_uid == 0) && 4317c478bd9Sstevel@tonic-gate ((attr->va_type == VLNK) || 4327c478bd9Sstevel@tonic-gate ((attr->va_mode & (VREAD>>6)) != 0) && 4337c478bd9Sstevel@tonic-gate ((attr->va_mode & (VWRITE>>6)) == 0))) { 4347c478bd9Sstevel@tonic-gate return (1); 4357c478bd9Sstevel@tonic-gate } 4367c478bd9Sstevel@tonic-gate return (0); 4377c478bd9Sstevel@tonic-gate } 4387c478bd9Sstevel@tonic-gate 4397c478bd9Sstevel@tonic-gate 4407c478bd9Sstevel@tonic-gate /* 4417c478bd9Sstevel@tonic-gate * ROUTINE: AUDIT_ATTRIBUTES 442da6c28aaSamw * PURPOSE: Audit the attributes so we can tell why the error occurred 4437c478bd9Sstevel@tonic-gate * CALLBY: AUDIT_SAVEPATH 4447c478bd9Sstevel@tonic-gate * AUDIT_VNCREATE_FINISH 4457c478bd9Sstevel@tonic-gate * AUS_FCHOWN...audit_event.c...audit_path.c 4467c478bd9Sstevel@tonic-gate * NOTE: 4477c478bd9Sstevel@tonic-gate * TODO: 4487c478bd9Sstevel@tonic-gate * QUESTION: 4497c478bd9Sstevel@tonic-gate */ 4507c478bd9Sstevel@tonic-gate void 4517c478bd9Sstevel@tonic-gate audit_attributes(struct vnode *vp) 4527c478bd9Sstevel@tonic-gate { 4537c478bd9Sstevel@tonic-gate struct vattr attr; 4547c478bd9Sstevel@tonic-gate struct t_audit_data *tad; 4557c478bd9Sstevel@tonic-gate 4567c478bd9Sstevel@tonic-gate tad = U2A(u); 4577c478bd9Sstevel@tonic-gate 4587c478bd9Sstevel@tonic-gate if (vp) { 4597c478bd9Sstevel@tonic-gate attr.va_mask = AT_ALL; 460da6c28aaSamw if (VOP_GETATTR(vp, &attr, 0, CRED(), NULL) != 0) 4617c478bd9Sstevel@tonic-gate return; 4627c478bd9Sstevel@tonic-gate 463*4a0fa546SMarek Pospisil if (object_is_public(&attr) && 464*4a0fa546SMarek Pospisil (tad->tad_ctrl & TAD_PUBLIC_EV)) { 4657c478bd9Sstevel@tonic-gate /* 4667c478bd9Sstevel@tonic-gate * This is a public object and a "public" event 4677c478bd9Sstevel@tonic-gate * (i.e., read only) -- either by definition 4687c478bd9Sstevel@tonic-gate * (e.g., stat, access...) or by virtue of write access 4697c478bd9Sstevel@tonic-gate * not being requested (e.g. mmap). 4707c478bd9Sstevel@tonic-gate * Flag it in the tad to prevent this audit at the end. 4717c478bd9Sstevel@tonic-gate */ 472*4a0fa546SMarek Pospisil tad->tad_ctrl |= TAD_NOAUDIT; 4737c478bd9Sstevel@tonic-gate } else { 4747c478bd9Sstevel@tonic-gate au_uwrite(au_to_attr(&attr)); 47545916cd2Sjpk audit_sec_attributes(&(u_ad), vp); 4767c478bd9Sstevel@tonic-gate } 4777c478bd9Sstevel@tonic-gate } 4787c478bd9Sstevel@tonic-gate } 4797c478bd9Sstevel@tonic-gate 4807c478bd9Sstevel@tonic-gate 4817c478bd9Sstevel@tonic-gate /* 4827c478bd9Sstevel@tonic-gate * ROUTINE: AUDIT_EXIT 4837c478bd9Sstevel@tonic-gate * PURPOSE: 4847c478bd9Sstevel@tonic-gate * CALLBY: EXIT 4857c478bd9Sstevel@tonic-gate * NOTE: 4867c478bd9Sstevel@tonic-gate * TODO: 4877c478bd9Sstevel@tonic-gate * QUESTION: why cmw code as offset by 2 but not here 4887c478bd9Sstevel@tonic-gate */ 4897c478bd9Sstevel@tonic-gate /* ARGSUSED */ 4907c478bd9Sstevel@tonic-gate void 4917c478bd9Sstevel@tonic-gate audit_exit(int code, int what) 4927c478bd9Sstevel@tonic-gate { 4937c478bd9Sstevel@tonic-gate struct t_audit_data *tad; 4947c478bd9Sstevel@tonic-gate tad = U2A(u); 4957c478bd9Sstevel@tonic-gate 4967c478bd9Sstevel@tonic-gate /* 4977c478bd9Sstevel@tonic-gate * tad_scid will be set by audit_start even if we are not auditing 4987c478bd9Sstevel@tonic-gate * the event. 4997c478bd9Sstevel@tonic-gate */ 5007c478bd9Sstevel@tonic-gate if (tad->tad_scid == SYS_exit) { 5017c478bd9Sstevel@tonic-gate /* 5027c478bd9Sstevel@tonic-gate * if we are auditing the exit system call, then complete 5037c478bd9Sstevel@tonic-gate * audit record generation (no return from system call). 5047c478bd9Sstevel@tonic-gate */ 5057c478bd9Sstevel@tonic-gate if (tad->tad_flag && tad->tad_event == AUE_EXIT) 5067c478bd9Sstevel@tonic-gate audit_finish(0, SYS_exit, 0, 0); 5077c478bd9Sstevel@tonic-gate return; 5087c478bd9Sstevel@tonic-gate } 5097c478bd9Sstevel@tonic-gate 5107c478bd9Sstevel@tonic-gate /* 5117c478bd9Sstevel@tonic-gate * Anyone auditing the system call that was aborted? 5127c478bd9Sstevel@tonic-gate */ 5137c478bd9Sstevel@tonic-gate if (tad->tad_flag) { 5147c478bd9Sstevel@tonic-gate au_uwrite(au_to_text("event aborted")); 5157c478bd9Sstevel@tonic-gate audit_finish(0, tad->tad_scid, 0, 0); 5167c478bd9Sstevel@tonic-gate } 5177c478bd9Sstevel@tonic-gate 5187c478bd9Sstevel@tonic-gate /* 5197c478bd9Sstevel@tonic-gate * Generate an audit record for process exit if preselected. 5207c478bd9Sstevel@tonic-gate */ 521005d3febSMarek Pospisil (void) audit_start(0, SYS_exit, AUC_UNSET, 0, 0); 5227c478bd9Sstevel@tonic-gate audit_finish(0, SYS_exit, 0, 0); 5237c478bd9Sstevel@tonic-gate } 5247c478bd9Sstevel@tonic-gate 5257c478bd9Sstevel@tonic-gate /* 5267c478bd9Sstevel@tonic-gate * ROUTINE: AUDIT_CORE_START 5277c478bd9Sstevel@tonic-gate * PURPOSE: 5287c478bd9Sstevel@tonic-gate * CALLBY: PSIG 5297c478bd9Sstevel@tonic-gate * NOTE: 5307c478bd9Sstevel@tonic-gate * TODO: 5317c478bd9Sstevel@tonic-gate */ 5327c478bd9Sstevel@tonic-gate void 5337c478bd9Sstevel@tonic-gate audit_core_start(int sig) 5347c478bd9Sstevel@tonic-gate { 5357c478bd9Sstevel@tonic-gate au_event_t event; 5367c478bd9Sstevel@tonic-gate au_state_t estate; 5377c478bd9Sstevel@tonic-gate t_audit_data_t *tad; 5387c478bd9Sstevel@tonic-gate au_kcontext_t *kctx; 5397c478bd9Sstevel@tonic-gate 5407c478bd9Sstevel@tonic-gate tad = U2A(u); 5417c478bd9Sstevel@tonic-gate 5427c478bd9Sstevel@tonic-gate ASSERT(tad != (t_audit_data_t *)0); 5437c478bd9Sstevel@tonic-gate 5447c478bd9Sstevel@tonic-gate ASSERT(tad->tad_scid == 0); 5457c478bd9Sstevel@tonic-gate ASSERT(tad->tad_event == 0); 5467c478bd9Sstevel@tonic-gate ASSERT(tad->tad_evmod == 0); 5477c478bd9Sstevel@tonic-gate ASSERT(tad->tad_ctrl == 0); 5487c478bd9Sstevel@tonic-gate ASSERT(tad->tad_flag == 0); 5497c478bd9Sstevel@tonic-gate ASSERT(tad->tad_aupath == NULL); 5507c478bd9Sstevel@tonic-gate 5519e9e6ab8Spaulson kctx = GET_KCTX_PZ; 5527c478bd9Sstevel@tonic-gate 5537c478bd9Sstevel@tonic-gate /* get basic event for system call */ 5547c478bd9Sstevel@tonic-gate event = AUE_CORE; 5557c478bd9Sstevel@tonic-gate estate = kctx->auk_ets[event]; 5567c478bd9Sstevel@tonic-gate 5577c478bd9Sstevel@tonic-gate if ((tad->tad_flag = auditme(kctx, tad, estate)) == 0) 5587c478bd9Sstevel@tonic-gate return; 5597c478bd9Sstevel@tonic-gate 5607c478bd9Sstevel@tonic-gate /* reset the flags for non-user attributable events */ 561*4a0fa546SMarek Pospisil tad->tad_ctrl = TAD_CORE; 5627c478bd9Sstevel@tonic-gate tad->tad_scid = 0; 5637c478bd9Sstevel@tonic-gate 5647c478bd9Sstevel@tonic-gate /* if auditing not enabled, then don't generate an audit record */ 5657c478bd9Sstevel@tonic-gate 5667c478bd9Sstevel@tonic-gate if (!((kctx->auk_auditstate == AUC_AUDITING || 5677c478bd9Sstevel@tonic-gate kctx->auk_auditstate == AUC_INIT_AUDIT) || 5687c478bd9Sstevel@tonic-gate kctx->auk_auditstate == AUC_NOSPACE)) { 5697c478bd9Sstevel@tonic-gate tad->tad_flag = 0; 5707c478bd9Sstevel@tonic-gate tad->tad_ctrl = 0; 5717c478bd9Sstevel@tonic-gate return; 5727c478bd9Sstevel@tonic-gate } 5737c478bd9Sstevel@tonic-gate 5747c478bd9Sstevel@tonic-gate tad->tad_event = event; 5757c478bd9Sstevel@tonic-gate tad->tad_evmod = 0; 5767c478bd9Sstevel@tonic-gate 5777c478bd9Sstevel@tonic-gate ASSERT(tad->tad_ad == NULL); 5787c478bd9Sstevel@tonic-gate 5797c478bd9Sstevel@tonic-gate au_write(&(u_ad), au_to_arg32(1, "signal", (uint32_t)sig)); 5807c478bd9Sstevel@tonic-gate } 5817c478bd9Sstevel@tonic-gate 5827c478bd9Sstevel@tonic-gate /* 5837c478bd9Sstevel@tonic-gate * ROUTINE: AUDIT_CORE_FINISH 5847c478bd9Sstevel@tonic-gate * PURPOSE: 5857c478bd9Sstevel@tonic-gate * CALLBY: PSIG 5867c478bd9Sstevel@tonic-gate * NOTE: 5877c478bd9Sstevel@tonic-gate * TODO: 5887c478bd9Sstevel@tonic-gate * QUESTION: 5897c478bd9Sstevel@tonic-gate */ 5907c478bd9Sstevel@tonic-gate 5917c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 5927c478bd9Sstevel@tonic-gate void 5937c478bd9Sstevel@tonic-gate audit_core_finish(int code) 5947c478bd9Sstevel@tonic-gate { 5957c478bd9Sstevel@tonic-gate int flag; 5967c478bd9Sstevel@tonic-gate t_audit_data_t *tad; 5977c478bd9Sstevel@tonic-gate au_kcontext_t *kctx; 5987c478bd9Sstevel@tonic-gate 5997c478bd9Sstevel@tonic-gate tad = U2A(u); 6007c478bd9Sstevel@tonic-gate 6017c478bd9Sstevel@tonic-gate ASSERT(tad != (t_audit_data_t *)0); 6027c478bd9Sstevel@tonic-gate 6037c478bd9Sstevel@tonic-gate if ((flag = tad->tad_flag) == 0) { 6047c478bd9Sstevel@tonic-gate tad->tad_event = 0; 6057c478bd9Sstevel@tonic-gate tad->tad_evmod = 0; 6067c478bd9Sstevel@tonic-gate tad->tad_ctrl = 0; 6077c478bd9Sstevel@tonic-gate ASSERT(tad->tad_aupath == NULL); 6087c478bd9Sstevel@tonic-gate return; 6097c478bd9Sstevel@tonic-gate } 6107c478bd9Sstevel@tonic-gate tad->tad_flag = 0; 6117c478bd9Sstevel@tonic-gate 6129e9e6ab8Spaulson kctx = GET_KCTX_PZ; 6137c478bd9Sstevel@tonic-gate 6147c478bd9Sstevel@tonic-gate /* kludge for error 0, should use `code==CLD_DUMPED' instead */ 615799bd290Spwernau if (flag = audit_success(kctx, tad, 0, NULL)) { 6167c478bd9Sstevel@tonic-gate cred_t *cr = CRED(); 6177c478bd9Sstevel@tonic-gate const auditinfo_addr_t *ainfo = crgetauinfo(cr); 6187c478bd9Sstevel@tonic-gate 6197c478bd9Sstevel@tonic-gate ASSERT(ainfo != NULL); 6207c478bd9Sstevel@tonic-gate 6217c478bd9Sstevel@tonic-gate /* 62281490fd2Sgww * Add subject information (no locks since our private copy of 6237c478bd9Sstevel@tonic-gate * credential 6247c478bd9Sstevel@tonic-gate */ 62581490fd2Sgww AUDIT_SETSUBJ(&(u_ad), cr, ainfo, kctx); 62645916cd2Sjpk 6277c478bd9Sstevel@tonic-gate /* Add a return token (should use f argument) */ 6287c478bd9Sstevel@tonic-gate add_return_token((caddr_t *)&(u_ad), tad->tad_scid, 0, 0); 6297c478bd9Sstevel@tonic-gate 6307c478bd9Sstevel@tonic-gate AS_INC(as_generated, 1, kctx); 6317c478bd9Sstevel@tonic-gate AS_INC(as_kernel, 1, kctx); 6327c478bd9Sstevel@tonic-gate } 6337c478bd9Sstevel@tonic-gate 6347c478bd9Sstevel@tonic-gate /* Close up everything */ 635005d3febSMarek Pospisil au_close(kctx, &(u_ad), flag, tad->tad_event, tad->tad_evmod, NULL); 6367c478bd9Sstevel@tonic-gate 6377c478bd9Sstevel@tonic-gate /* free up any space remaining with the path's */ 6387c478bd9Sstevel@tonic-gate if (tad->tad_aupath != NULL) { 6397c478bd9Sstevel@tonic-gate au_pathrele(tad->tad_aupath); 6407c478bd9Sstevel@tonic-gate tad->tad_aupath = NULL; 6417c478bd9Sstevel@tonic-gate } 6427c478bd9Sstevel@tonic-gate tad->tad_event = 0; 6437c478bd9Sstevel@tonic-gate tad->tad_evmod = 0; 6447c478bd9Sstevel@tonic-gate tad->tad_ctrl = 0; 6457c478bd9Sstevel@tonic-gate } 6467c478bd9Sstevel@tonic-gate 6477c478bd9Sstevel@tonic-gate 6487c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 6497c478bd9Sstevel@tonic-gate void 6507c478bd9Sstevel@tonic-gate audit_strgetmsg(struct vnode *vp, struct strbuf *mctl, struct strbuf *mdata, 6517c478bd9Sstevel@tonic-gate unsigned char *pri, int *flag, int fmode) 6527c478bd9Sstevel@tonic-gate { 6537c478bd9Sstevel@tonic-gate struct stdata *stp; 6547c478bd9Sstevel@tonic-gate t_audit_data_t *tad = U2A(u); 6557c478bd9Sstevel@tonic-gate 6567c478bd9Sstevel@tonic-gate ASSERT(tad != (t_audit_data_t *)0); 6577c478bd9Sstevel@tonic-gate 6587c478bd9Sstevel@tonic-gate stp = vp->v_stream; 6597c478bd9Sstevel@tonic-gate 6607c478bd9Sstevel@tonic-gate /* lock stdata from audit_sock */ 6617c478bd9Sstevel@tonic-gate mutex_enter(&stp->sd_lock); 6627c478bd9Sstevel@tonic-gate 6637c478bd9Sstevel@tonic-gate /* proceed ONLY if user is being audited */ 6647c478bd9Sstevel@tonic-gate if (!tad->tad_flag) { 6657c478bd9Sstevel@tonic-gate /* 6667c478bd9Sstevel@tonic-gate * this is so we will not add audit data onto 6677c478bd9Sstevel@tonic-gate * a thread that is not being audited. 6687c478bd9Sstevel@tonic-gate */ 6697c478bd9Sstevel@tonic-gate stp->sd_t_audit_data = NULL; 6707c478bd9Sstevel@tonic-gate mutex_exit(&stp->sd_lock); 6717c478bd9Sstevel@tonic-gate return; 6727c478bd9Sstevel@tonic-gate } 6737c478bd9Sstevel@tonic-gate 6747c478bd9Sstevel@tonic-gate stp->sd_t_audit_data = (caddr_t)curthread; 6757c478bd9Sstevel@tonic-gate mutex_exit(&stp->sd_lock); 6767c478bd9Sstevel@tonic-gate } 6777c478bd9Sstevel@tonic-gate 6787c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 6797c478bd9Sstevel@tonic-gate void 6807c478bd9Sstevel@tonic-gate audit_strputmsg(struct vnode *vp, struct strbuf *mctl, struct strbuf *mdata, 6817c478bd9Sstevel@tonic-gate unsigned char pri, int flag, int fmode) 6827c478bd9Sstevel@tonic-gate { 6837c478bd9Sstevel@tonic-gate struct stdata *stp; 6847c478bd9Sstevel@tonic-gate t_audit_data_t *tad = U2A(u); 6857c478bd9Sstevel@tonic-gate 6867c478bd9Sstevel@tonic-gate ASSERT(tad != (t_audit_data_t *)0); 6877c478bd9Sstevel@tonic-gate 6887c478bd9Sstevel@tonic-gate stp = vp->v_stream; 6897c478bd9Sstevel@tonic-gate 6907c478bd9Sstevel@tonic-gate /* lock stdata from audit_sock */ 6917c478bd9Sstevel@tonic-gate mutex_enter(&stp->sd_lock); 6927c478bd9Sstevel@tonic-gate 6937c478bd9Sstevel@tonic-gate /* proceed ONLY if user is being audited */ 6947c478bd9Sstevel@tonic-gate if (!tad->tad_flag) { 6957c478bd9Sstevel@tonic-gate /* 6967c478bd9Sstevel@tonic-gate * this is so we will not add audit data onto 6977c478bd9Sstevel@tonic-gate * a thread that is not being audited. 6987c478bd9Sstevel@tonic-gate */ 6997c478bd9Sstevel@tonic-gate stp->sd_t_audit_data = NULL; 7007c478bd9Sstevel@tonic-gate mutex_exit(&stp->sd_lock); 7017c478bd9Sstevel@tonic-gate return; 7027c478bd9Sstevel@tonic-gate } 7037c478bd9Sstevel@tonic-gate 7047c478bd9Sstevel@tonic-gate stp->sd_t_audit_data = (caddr_t)curthread; 7057c478bd9Sstevel@tonic-gate mutex_exit(&stp->sd_lock); 7067c478bd9Sstevel@tonic-gate } 7077c478bd9Sstevel@tonic-gate 7087c478bd9Sstevel@tonic-gate /* 7097c478bd9Sstevel@tonic-gate * ROUTINE: AUDIT_CLOSEF 7107c478bd9Sstevel@tonic-gate * PURPOSE: 7117c478bd9Sstevel@tonic-gate * CALLBY: CLOSEF 7127c478bd9Sstevel@tonic-gate * NOTE: 7137c478bd9Sstevel@tonic-gate * release per file audit resources when file structure is being released. 7147c478bd9Sstevel@tonic-gate * 7157c478bd9Sstevel@tonic-gate * IMPORTANT NOTE: Since we generate an audit record here, we may sleep 7167c478bd9Sstevel@tonic-gate * on the audit queue if it becomes full. This means 7177c478bd9Sstevel@tonic-gate * audit_closef can not be called when f_count == 0. Since 7187c478bd9Sstevel@tonic-gate * f_count == 0 indicates the file structure is free, another 7197c478bd9Sstevel@tonic-gate * process could attempt to use the file while we were still 7207c478bd9Sstevel@tonic-gate * asleep waiting on the audit queue. This would cause the 7217c478bd9Sstevel@tonic-gate * per file audit data to be corrupted when we finally do 7227c478bd9Sstevel@tonic-gate * wakeup. 7237c478bd9Sstevel@tonic-gate * TODO: 7247c478bd9Sstevel@tonic-gate * QUESTION: 7257c478bd9Sstevel@tonic-gate */ 7267c478bd9Sstevel@tonic-gate 7277c478bd9Sstevel@tonic-gate void 7287c478bd9Sstevel@tonic-gate audit_closef(struct file *fp) 7297c478bd9Sstevel@tonic-gate { /* AUDIT_CLOSEF */ 7307c478bd9Sstevel@tonic-gate f_audit_data_t *fad; 7317c478bd9Sstevel@tonic-gate t_audit_data_t *tad; 7327c478bd9Sstevel@tonic-gate int success; 7337c478bd9Sstevel@tonic-gate au_state_t estate; 7347c478bd9Sstevel@tonic-gate struct vnode *vp; 7357c478bd9Sstevel@tonic-gate token_t *ad = NULL; 7367c478bd9Sstevel@tonic-gate struct vattr attr; 737d0fa49b7STony Nguyen au_emod_t evmod = 0; 7387c478bd9Sstevel@tonic-gate const auditinfo_addr_t *ainfo; 7397c478bd9Sstevel@tonic-gate int getattr_ret; 7407c478bd9Sstevel@tonic-gate cred_t *cr; 7419e9e6ab8Spaulson au_kcontext_t *kctx = GET_KCTX_PZ; 742005d3febSMarek Pospisil uint32_t auditing; 7437c478bd9Sstevel@tonic-gate 7447c478bd9Sstevel@tonic-gate fad = F2A(fp); 7457c478bd9Sstevel@tonic-gate estate = kctx->auk_ets[AUE_CLOSE]; 7467c478bd9Sstevel@tonic-gate tad = U2A(u); 7477c478bd9Sstevel@tonic-gate cr = CRED(); 7487c478bd9Sstevel@tonic-gate 7497c478bd9Sstevel@tonic-gate /* audit record already generated by system call envelope */ 7507c478bd9Sstevel@tonic-gate if (tad->tad_event == AUE_CLOSE) { 7517c478bd9Sstevel@tonic-gate /* so close audit event will have bits set */ 752d0fa49b7STony Nguyen tad->tad_evmod |= (au_emod_t)fad->fad_flags; 7537c478bd9Sstevel@tonic-gate return; 7547c478bd9Sstevel@tonic-gate } 7557c478bd9Sstevel@tonic-gate 7567c478bd9Sstevel@tonic-gate /* if auditing not enabled, then don't generate an audit record */ 757005d3febSMarek Pospisil auditing = (tad->tad_audit == AUC_UNSET) ? 758005d3febSMarek Pospisil kctx->auk_auditstate : tad->tad_audit; 759005d3febSMarek Pospisil if (auditing & ~(AUC_AUDITING | AUC_INIT_AUDIT | AUC_NOSPACE)) 7607c478bd9Sstevel@tonic-gate return; 7617c478bd9Sstevel@tonic-gate 7627c478bd9Sstevel@tonic-gate ainfo = crgetauinfo(cr); 7637c478bd9Sstevel@tonic-gate if (ainfo == NULL) 7647c478bd9Sstevel@tonic-gate return; 7657c478bd9Sstevel@tonic-gate 7667c478bd9Sstevel@tonic-gate success = ainfo->ai_mask.as_success & estate; 7677c478bd9Sstevel@tonic-gate 7687c478bd9Sstevel@tonic-gate /* not selected for this event */ 7697c478bd9Sstevel@tonic-gate if (success == 0) 7707c478bd9Sstevel@tonic-gate return; 7717c478bd9Sstevel@tonic-gate 7727c478bd9Sstevel@tonic-gate /* 7737c478bd9Sstevel@tonic-gate * can't use audit_attributes here since we use a private audit area 7747c478bd9Sstevel@tonic-gate * to build the audit record instead of the one off the thread. 7757c478bd9Sstevel@tonic-gate */ 7767c478bd9Sstevel@tonic-gate if ((vp = fp->f_vnode) != NULL) { 7777c478bd9Sstevel@tonic-gate attr.va_mask = AT_ALL; 778da6c28aaSamw getattr_ret = VOP_GETATTR(vp, &attr, 0, CRED(), NULL); 7797c478bd9Sstevel@tonic-gate } 7807c478bd9Sstevel@tonic-gate 7817c478bd9Sstevel@tonic-gate /* 7827c478bd9Sstevel@tonic-gate * When write was not used and the file can be considered public, 7837c478bd9Sstevel@tonic-gate * then skip the audit. 7847c478bd9Sstevel@tonic-gate */ 7857c478bd9Sstevel@tonic-gate if ((getattr_ret == 0) && ((fp->f_flag & FWRITE) == 0)) { 786*4a0fa546SMarek Pospisil if (object_is_public(&attr)) { 7877c478bd9Sstevel@tonic-gate return; 7887c478bd9Sstevel@tonic-gate } 7897c478bd9Sstevel@tonic-gate } 7907c478bd9Sstevel@tonic-gate 791d0fa49b7STony Nguyen evmod = (au_emod_t)fad->fad_flags; 7927c478bd9Sstevel@tonic-gate if (fad->fad_aupath != NULL) { 7937c478bd9Sstevel@tonic-gate au_write((caddr_t *)&(ad), au_to_path(fad->fad_aupath)); 7947c478bd9Sstevel@tonic-gate } else { 7957c478bd9Sstevel@tonic-gate #ifdef _LP64 7967c478bd9Sstevel@tonic-gate au_write((caddr_t *)&(ad), au_to_arg64( 7977c478bd9Sstevel@tonic-gate 1, "no path: fp", (uint64_t)fp)); 7987c478bd9Sstevel@tonic-gate #else 7997c478bd9Sstevel@tonic-gate au_write((caddr_t *)&(ad), au_to_arg32( 8007c478bd9Sstevel@tonic-gate 1, "no path: fp", (uint32_t)fp)); 8017c478bd9Sstevel@tonic-gate #endif 8027c478bd9Sstevel@tonic-gate } 8037c478bd9Sstevel@tonic-gate 8047c478bd9Sstevel@tonic-gate if (getattr_ret == 0) { 8057c478bd9Sstevel@tonic-gate au_write((caddr_t *)&(ad), au_to_attr(&attr)); 80645916cd2Sjpk audit_sec_attributes((caddr_t *)&(ad), vp); 8077c478bd9Sstevel@tonic-gate } 8087c478bd9Sstevel@tonic-gate 80981490fd2Sgww /* Add subject information */ 81081490fd2Sgww AUDIT_SETSUBJ((caddr_t *)&(ad), cr, ainfo, kctx); 81145916cd2Sjpk 8127c478bd9Sstevel@tonic-gate /* add a return token */ 8137c478bd9Sstevel@tonic-gate add_return_token((caddr_t *)&(ad), tad->tad_scid, 0, 0); 8147c478bd9Sstevel@tonic-gate 8157c478bd9Sstevel@tonic-gate AS_INC(as_generated, 1, kctx); 8167c478bd9Sstevel@tonic-gate AS_INC(as_kernel, 1, kctx); 8177c478bd9Sstevel@tonic-gate 8187c478bd9Sstevel@tonic-gate /* 8197c478bd9Sstevel@tonic-gate * Close up everything 8207c478bd9Sstevel@tonic-gate * Note: path space recovery handled by normal system 8217c478bd9Sstevel@tonic-gate * call envelope if not at last close. 8227c478bd9Sstevel@tonic-gate * Note there is no failure at this point since 8237c478bd9Sstevel@tonic-gate * this represents closes due to exit of process, 8247c478bd9Sstevel@tonic-gate * thus we always indicate successful closes. 8257c478bd9Sstevel@tonic-gate */ 8267c478bd9Sstevel@tonic-gate au_close(kctx, (caddr_t *)&(ad), AU_OK | AU_DEFER, 827005d3febSMarek Pospisil AUE_CLOSE, evmod, NULL); 8287c478bd9Sstevel@tonic-gate } 8297c478bd9Sstevel@tonic-gate 8307c478bd9Sstevel@tonic-gate /* 8317c478bd9Sstevel@tonic-gate * ROUTINE: AUDIT_SET 8327c478bd9Sstevel@tonic-gate * PURPOSE: Audit the file path and file attributes. 8337c478bd9Sstevel@tonic-gate * CALLBY: SETF 8347c478bd9Sstevel@tonic-gate * NOTE: SETF associate a file pointer with user area's open files. 8357c478bd9Sstevel@tonic-gate * TODO: 8367c478bd9Sstevel@tonic-gate * call audit_finish directly ??? 8377c478bd9Sstevel@tonic-gate * QUESTION: 8387c478bd9Sstevel@tonic-gate */ 8397c478bd9Sstevel@tonic-gate 8407c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 8417c478bd9Sstevel@tonic-gate void 8427c478bd9Sstevel@tonic-gate audit_setf(file_t *fp, int fd) 8437c478bd9Sstevel@tonic-gate { 8447c478bd9Sstevel@tonic-gate f_audit_data_t *fad; 8457c478bd9Sstevel@tonic-gate t_audit_data_t *tad; 8467c478bd9Sstevel@tonic-gate 8477c478bd9Sstevel@tonic-gate if (fp == NULL) 8487c478bd9Sstevel@tonic-gate return; 8497c478bd9Sstevel@tonic-gate 8507c478bd9Sstevel@tonic-gate tad = T2A(curthread); 8517c478bd9Sstevel@tonic-gate fad = F2A(fp); 8527c478bd9Sstevel@tonic-gate 8538fd04b83SRoger A. Faulkner if (!(tad->tad_scid == SYS_open || 8548fd04b83SRoger A. Faulkner tad->tad_scid == SYS_open64 || 8558fd04b83SRoger A. Faulkner tad->tad_scid == SYS_openat || 8568fd04b83SRoger A. Faulkner tad->tad_scid == SYS_openat64)) 8577c478bd9Sstevel@tonic-gate return; 8587c478bd9Sstevel@tonic-gate 8597c478bd9Sstevel@tonic-gate /* no path */ 8607c478bd9Sstevel@tonic-gate if (tad->tad_aupath == 0) 8617c478bd9Sstevel@tonic-gate return; 8627c478bd9Sstevel@tonic-gate 8637c478bd9Sstevel@tonic-gate /* 8647c478bd9Sstevel@tonic-gate * assign path information associated with file audit data 8657c478bd9Sstevel@tonic-gate * use tad hold 8667c478bd9Sstevel@tonic-gate */ 8677c478bd9Sstevel@tonic-gate fad->fad_aupath = tad->tad_aupath; 8687c478bd9Sstevel@tonic-gate tad->tad_aupath = NULL; 8697c478bd9Sstevel@tonic-gate 870*4a0fa546SMarek Pospisil if (!(tad->tad_ctrl & TAD_TRUE_CREATE)) { 8718fd04b83SRoger A. Faulkner /* adjust event type by dropping the 'creat' part */ 8727c478bd9Sstevel@tonic-gate switch (tad->tad_event) { 8737c478bd9Sstevel@tonic-gate case AUE_OPEN_RC: 8747c478bd9Sstevel@tonic-gate tad->tad_event = AUE_OPEN_R; 875*4a0fa546SMarek Pospisil tad->tad_ctrl |= TAD_PUBLIC_EV; 8767c478bd9Sstevel@tonic-gate break; 8777c478bd9Sstevel@tonic-gate case AUE_OPEN_RTC: 8787c478bd9Sstevel@tonic-gate tad->tad_event = AUE_OPEN_RT; 8797c478bd9Sstevel@tonic-gate break; 8807c478bd9Sstevel@tonic-gate case AUE_OPEN_WC: 8817c478bd9Sstevel@tonic-gate tad->tad_event = AUE_OPEN_W; 8827c478bd9Sstevel@tonic-gate break; 8837c478bd9Sstevel@tonic-gate case AUE_OPEN_WTC: 8847c478bd9Sstevel@tonic-gate tad->tad_event = AUE_OPEN_WT; 8857c478bd9Sstevel@tonic-gate break; 8867c478bd9Sstevel@tonic-gate case AUE_OPEN_RWC: 8877c478bd9Sstevel@tonic-gate tad->tad_event = AUE_OPEN_RW; 8887c478bd9Sstevel@tonic-gate break; 8897c478bd9Sstevel@tonic-gate case AUE_OPEN_RWTC: 8907c478bd9Sstevel@tonic-gate tad->tad_event = AUE_OPEN_RWT; 8917c478bd9Sstevel@tonic-gate break; 8927c478bd9Sstevel@tonic-gate default: 8937c478bd9Sstevel@tonic-gate break; 8947c478bd9Sstevel@tonic-gate } 8957c478bd9Sstevel@tonic-gate } 8967c478bd9Sstevel@tonic-gate } 8977c478bd9Sstevel@tonic-gate 8987c478bd9Sstevel@tonic-gate 8997c478bd9Sstevel@tonic-gate void 9007c478bd9Sstevel@tonic-gate audit_ipc(int type, int id, void *vp) 9017c478bd9Sstevel@tonic-gate { 9027c478bd9Sstevel@tonic-gate /* if not auditing this event, then do nothing */ 9037c478bd9Sstevel@tonic-gate if (ad_flag == 0) 9047c478bd9Sstevel@tonic-gate return; 9057c478bd9Sstevel@tonic-gate 9067c478bd9Sstevel@tonic-gate switch (type) { 9077c478bd9Sstevel@tonic-gate case AT_IPC_MSG: 9087c478bd9Sstevel@tonic-gate au_uwrite(au_to_ipc(AT_IPC_MSG, id)); 9097c478bd9Sstevel@tonic-gate au_uwrite(au_to_ipc_perm(&(((kmsqid_t *)vp)->msg_perm))); 9107c478bd9Sstevel@tonic-gate break; 9117c478bd9Sstevel@tonic-gate case AT_IPC_SEM: 9127c478bd9Sstevel@tonic-gate au_uwrite(au_to_ipc(AT_IPC_SEM, id)); 9137c478bd9Sstevel@tonic-gate au_uwrite(au_to_ipc_perm(&(((ksemid_t *)vp)->sem_perm))); 9147c478bd9Sstevel@tonic-gate break; 9157c478bd9Sstevel@tonic-gate case AT_IPC_SHM: 9167c478bd9Sstevel@tonic-gate au_uwrite(au_to_ipc(AT_IPC_SHM, id)); 9177c478bd9Sstevel@tonic-gate au_uwrite(au_to_ipc_perm(&(((kshmid_t *)vp)->shm_perm))); 9187c478bd9Sstevel@tonic-gate break; 9197c478bd9Sstevel@tonic-gate } 9207c478bd9Sstevel@tonic-gate } 9217c478bd9Sstevel@tonic-gate 9227c478bd9Sstevel@tonic-gate void 9237c478bd9Sstevel@tonic-gate audit_ipcget(int type, void *vp) 9247c478bd9Sstevel@tonic-gate { 9257c478bd9Sstevel@tonic-gate /* if not auditing this event, then do nothing */ 9267c478bd9Sstevel@tonic-gate if (ad_flag == 0) 9277c478bd9Sstevel@tonic-gate return; 9287c478bd9Sstevel@tonic-gate 9297c478bd9Sstevel@tonic-gate switch (type) { 9307c478bd9Sstevel@tonic-gate case NULL: 9317c478bd9Sstevel@tonic-gate au_uwrite(au_to_ipc_perm((struct kipc_perm *)vp)); 9327c478bd9Sstevel@tonic-gate break; 9337c478bd9Sstevel@tonic-gate case AT_IPC_MSG: 9347c478bd9Sstevel@tonic-gate au_uwrite(au_to_ipc_perm(&(((kmsqid_t *)vp)->msg_perm))); 9357c478bd9Sstevel@tonic-gate break; 9367c478bd9Sstevel@tonic-gate case AT_IPC_SEM: 9377c478bd9Sstevel@tonic-gate au_uwrite(au_to_ipc_perm(&(((ksemid_t *)vp)->sem_perm))); 9387c478bd9Sstevel@tonic-gate break; 9397c478bd9Sstevel@tonic-gate case AT_IPC_SHM: 9407c478bd9Sstevel@tonic-gate au_uwrite(au_to_ipc_perm(&(((kshmid_t *)vp)->shm_perm))); 9417c478bd9Sstevel@tonic-gate break; 9427c478bd9Sstevel@tonic-gate } 9437c478bd9Sstevel@tonic-gate } 9447c478bd9Sstevel@tonic-gate 9457c478bd9Sstevel@tonic-gate /* 9467c478bd9Sstevel@tonic-gate * ROUTINE: AUDIT_REBOOT 9477c478bd9Sstevel@tonic-gate * PURPOSE: 9487c478bd9Sstevel@tonic-gate * CALLBY: 9497c478bd9Sstevel@tonic-gate * NOTE: 9507c478bd9Sstevel@tonic-gate * At this point we know that the system call reboot will not return. We thus 9517c478bd9Sstevel@tonic-gate * have to complete the audit record generation and put it onto the queue. 9527c478bd9Sstevel@tonic-gate * This might be fairly useless if the auditing daemon is already dead.... 9537c478bd9Sstevel@tonic-gate * TODO: 9547c478bd9Sstevel@tonic-gate * QUESTION: who calls audit_reboot 9557c478bd9Sstevel@tonic-gate */ 9567c478bd9Sstevel@tonic-gate 9577c478bd9Sstevel@tonic-gate void 9587c478bd9Sstevel@tonic-gate audit_reboot(void) 9597c478bd9Sstevel@tonic-gate { 9607c478bd9Sstevel@tonic-gate int flag; 9617c478bd9Sstevel@tonic-gate t_audit_data_t *tad; 9629e9e6ab8Spaulson au_kcontext_t *kctx = GET_KCTX_PZ; 9637c478bd9Sstevel@tonic-gate 9647c478bd9Sstevel@tonic-gate tad = U2A(u); 9657c478bd9Sstevel@tonic-gate 9667c478bd9Sstevel@tonic-gate /* if not auditing this event, then do nothing */ 9677c478bd9Sstevel@tonic-gate if (tad->tad_flag == 0) 9687c478bd9Sstevel@tonic-gate return; 9697c478bd9Sstevel@tonic-gate 9707c478bd9Sstevel@tonic-gate /* do preselection on success/failure */ 971799bd290Spwernau if (flag = audit_success(kctx, tad, 0, NULL)) { 9727c478bd9Sstevel@tonic-gate /* add a process token */ 9737c478bd9Sstevel@tonic-gate 9747c478bd9Sstevel@tonic-gate cred_t *cr = CRED(); 9757c478bd9Sstevel@tonic-gate const auditinfo_addr_t *ainfo = crgetauinfo(cr); 9767c478bd9Sstevel@tonic-gate 9777c478bd9Sstevel@tonic-gate if (ainfo == NULL) 9787c478bd9Sstevel@tonic-gate return; 9797c478bd9Sstevel@tonic-gate 98081490fd2Sgww /* Add subject information */ 98181490fd2Sgww AUDIT_SETSUBJ(&(u_ad), cr, ainfo, kctx); 98245916cd2Sjpk 9837c478bd9Sstevel@tonic-gate /* add a return token */ 9847c478bd9Sstevel@tonic-gate add_return_token((caddr_t *)&(u_ad), tad->tad_scid, 0, 0); 9857c478bd9Sstevel@tonic-gate 9867c478bd9Sstevel@tonic-gate AS_INC(as_generated, 1, kctx); 9877c478bd9Sstevel@tonic-gate AS_INC(as_kernel, 1, kctx); 9887c478bd9Sstevel@tonic-gate } 9897c478bd9Sstevel@tonic-gate 9907c478bd9Sstevel@tonic-gate /* 9917c478bd9Sstevel@tonic-gate * Flow control useless here since we're going 9927c478bd9Sstevel@tonic-gate * to drop everything in the queue anyway. Why 9937c478bd9Sstevel@tonic-gate * block and wait. There aint anyone left alive to 9947c478bd9Sstevel@tonic-gate * read the records remaining anyway. 9957c478bd9Sstevel@tonic-gate */ 9967c478bd9Sstevel@tonic-gate 9977c478bd9Sstevel@tonic-gate /* Close up everything */ 9987c478bd9Sstevel@tonic-gate au_close(kctx, &(u_ad), flag | AU_DONTBLOCK, 999005d3febSMarek Pospisil tad->tad_event, tad->tad_evmod, NULL); 10007c478bd9Sstevel@tonic-gate } 10017c478bd9Sstevel@tonic-gate 10027c478bd9Sstevel@tonic-gate void 10037c478bd9Sstevel@tonic-gate audit_setfsat_path(int argnum) 10047c478bd9Sstevel@tonic-gate { 10057c478bd9Sstevel@tonic-gate klwp_id_t clwp = ttolwp(curthread); 10067c478bd9Sstevel@tonic-gate struct file *fp; 10077c478bd9Sstevel@tonic-gate uint32_t fd; 10087c478bd9Sstevel@tonic-gate t_audit_data_t *tad; 10097c478bd9Sstevel@tonic-gate struct f_audit_data *fad; 10107c478bd9Sstevel@tonic-gate p_audit_data_t *pad; /* current process */ 1011da6c28aaSamw struct a { 1012da6c28aaSamw long arg1; 1013da6c28aaSamw long arg2; 1014da6c28aaSamw long arg3; 1015da6c28aaSamw long arg4; 1016da6c28aaSamw long arg5; 1017da6c28aaSamw } *uap; 10187c478bd9Sstevel@tonic-gate 10197c478bd9Sstevel@tonic-gate if (clwp == NULL) 10207c478bd9Sstevel@tonic-gate return; 1021da6c28aaSamw uap = (struct a *)clwp->lwp_ap; 10227c478bd9Sstevel@tonic-gate 10237c478bd9Sstevel@tonic-gate tad = U2A(u); 10247c478bd9Sstevel@tonic-gate ASSERT(tad != NULL); 10257c478bd9Sstevel@tonic-gate 10268fd04b83SRoger A. Faulkner switch (tad->tad_scid) { 10278fd04b83SRoger A. Faulkner case SYS_faccessat: 10288fd04b83SRoger A. Faulkner case SYS_fchownat: 10298fd04b83SRoger A. Faulkner case SYS_fstatat: 10308fd04b83SRoger A. Faulkner case SYS_fstatat64: 10318fd04b83SRoger A. Faulkner case SYS_openat: 10328fd04b83SRoger A. Faulkner case SYS_openat64: 10338fd04b83SRoger A. Faulkner case SYS_unlinkat: 10348fd04b83SRoger A. Faulkner fd = uap->arg1; 10357c478bd9Sstevel@tonic-gate break; 10368fd04b83SRoger A. Faulkner case SYS_renameat: 10378fd04b83SRoger A. Faulkner if (argnum == 3) 10388fd04b83SRoger A. Faulkner fd = uap->arg3; 10398fd04b83SRoger A. Faulkner else 10408fd04b83SRoger A. Faulkner fd = uap->arg1; 10417c478bd9Sstevel@tonic-gate break; 10428fd04b83SRoger A. Faulkner case SYS_utimesys: 10438fd04b83SRoger A. Faulkner fd = uap->arg2; 10447c478bd9Sstevel@tonic-gate break; 10457c478bd9Sstevel@tonic-gate default: 10467c478bd9Sstevel@tonic-gate return; 10477c478bd9Sstevel@tonic-gate } 10487c478bd9Sstevel@tonic-gate 10497c478bd9Sstevel@tonic-gate if (tad->tad_atpath != NULL) { 10507c478bd9Sstevel@tonic-gate au_pathrele(tad->tad_atpath); 10517c478bd9Sstevel@tonic-gate tad->tad_atpath = NULL; 10527c478bd9Sstevel@tonic-gate } 10537c478bd9Sstevel@tonic-gate if (fd != AT_FDCWD) { 1054fc960aa7SBrent Paulson if ((fp = getf(fd)) == NULL) { 1055*4a0fa546SMarek Pospisil tad->tad_ctrl |= TAD_NOPATH; 10567c478bd9Sstevel@tonic-gate return; 1057fc960aa7SBrent Paulson } 10587c478bd9Sstevel@tonic-gate fad = F2A(fp); 10597c478bd9Sstevel@tonic-gate ASSERT(fad); 1060fc960aa7SBrent Paulson if (fad->fad_aupath == NULL) { 1061*4a0fa546SMarek Pospisil tad->tad_ctrl |= TAD_NOPATH; 1062fc960aa7SBrent Paulson releasef(fd); 1063fc960aa7SBrent Paulson return; 1064fc960aa7SBrent Paulson } 10657c478bd9Sstevel@tonic-gate au_pathhold(fad->fad_aupath); 10667c478bd9Sstevel@tonic-gate tad->tad_atpath = fad->fad_aupath; 10677c478bd9Sstevel@tonic-gate releasef(fd); 10687c478bd9Sstevel@tonic-gate } else { 10697c478bd9Sstevel@tonic-gate pad = P2A(curproc); 10707c478bd9Sstevel@tonic-gate mutex_enter(&pad->pad_lock); 10717c478bd9Sstevel@tonic-gate au_pathhold(pad->pad_cwd); 10727c478bd9Sstevel@tonic-gate tad->tad_atpath = pad->pad_cwd; 10737c478bd9Sstevel@tonic-gate mutex_exit(&pad->pad_lock); 10747c478bd9Sstevel@tonic-gate } 10757c478bd9Sstevel@tonic-gate } 10767c478bd9Sstevel@tonic-gate 10777c478bd9Sstevel@tonic-gate void 10787c478bd9Sstevel@tonic-gate audit_symlink_create(vnode_t *dvp, char *sname, char *target, int error) 10797c478bd9Sstevel@tonic-gate { 10807c478bd9Sstevel@tonic-gate t_audit_data_t *tad; 10817c478bd9Sstevel@tonic-gate vnode_t *vp; 10827c478bd9Sstevel@tonic-gate 10837c478bd9Sstevel@tonic-gate tad = U2A(u); 10847c478bd9Sstevel@tonic-gate 10857c478bd9Sstevel@tonic-gate /* if not auditing this event, then do nothing */ 10867c478bd9Sstevel@tonic-gate if (tad->tad_flag == 0) 10877c478bd9Sstevel@tonic-gate return; 10887c478bd9Sstevel@tonic-gate 10897c478bd9Sstevel@tonic-gate au_uwrite(au_to_text(target)); 10907c478bd9Sstevel@tonic-gate 10917c478bd9Sstevel@tonic-gate if (error) 10927c478bd9Sstevel@tonic-gate return; 10937c478bd9Sstevel@tonic-gate 1094da6c28aaSamw error = VOP_LOOKUP(dvp, sname, &vp, NULL, 0, NULL, CRED(), 1095da6c28aaSamw NULL, NULL, NULL); 10967c478bd9Sstevel@tonic-gate if (error == 0) { 10977c478bd9Sstevel@tonic-gate audit_attributes(vp); 10987c478bd9Sstevel@tonic-gate VN_RELE(vp); 10997c478bd9Sstevel@tonic-gate } 11007c478bd9Sstevel@tonic-gate } 11017c478bd9Sstevel@tonic-gate 11027c478bd9Sstevel@tonic-gate /* 11037c478bd9Sstevel@tonic-gate * ROUTINE: AUDIT_VNCREATE_START 11047c478bd9Sstevel@tonic-gate * PURPOSE: set flag so path name lookup in create will not add attribute 11057c478bd9Sstevel@tonic-gate * CALLBY: VN_CREATE 11067c478bd9Sstevel@tonic-gate * NOTE: 11077c478bd9Sstevel@tonic-gate * TODO: 11087c478bd9Sstevel@tonic-gate * QUESTION: 11097c478bd9Sstevel@tonic-gate */ 11107c478bd9Sstevel@tonic-gate 11117c478bd9Sstevel@tonic-gate void 11127c478bd9Sstevel@tonic-gate audit_vncreate_start() 11137c478bd9Sstevel@tonic-gate { 11147c478bd9Sstevel@tonic-gate t_audit_data_t *tad; 11157c478bd9Sstevel@tonic-gate 11167c478bd9Sstevel@tonic-gate tad = U2A(u); 1117*4a0fa546SMarek Pospisil tad->tad_ctrl |= TAD_NOATTRB; 11187c478bd9Sstevel@tonic-gate } 11197c478bd9Sstevel@tonic-gate 11207c478bd9Sstevel@tonic-gate /* 11217c478bd9Sstevel@tonic-gate * ROUTINE: AUDIT_VNCREATE_FINISH 11227c478bd9Sstevel@tonic-gate * PURPOSE: 11237c478bd9Sstevel@tonic-gate * CALLBY: VN_CREATE 11247c478bd9Sstevel@tonic-gate * NOTE: 11257c478bd9Sstevel@tonic-gate * TODO: 11267c478bd9Sstevel@tonic-gate * QUESTION: 11277c478bd9Sstevel@tonic-gate */ 11287c478bd9Sstevel@tonic-gate void 11297c478bd9Sstevel@tonic-gate audit_vncreate_finish(struct vnode *vp, int error) 11307c478bd9Sstevel@tonic-gate { 11317c478bd9Sstevel@tonic-gate t_audit_data_t *tad; 11327c478bd9Sstevel@tonic-gate 11337c478bd9Sstevel@tonic-gate if (error) 11347c478bd9Sstevel@tonic-gate return; 11357c478bd9Sstevel@tonic-gate 11367c478bd9Sstevel@tonic-gate tad = U2A(u); 11377c478bd9Sstevel@tonic-gate 11387c478bd9Sstevel@tonic-gate /* if not auditing this event, then do nothing */ 11397c478bd9Sstevel@tonic-gate if (tad->tad_flag == 0) 11407c478bd9Sstevel@tonic-gate return; 11417c478bd9Sstevel@tonic-gate 1142*4a0fa546SMarek Pospisil if (tad->tad_ctrl & TAD_TRUE_CREATE) { 11437c478bd9Sstevel@tonic-gate audit_attributes(vp); 11447c478bd9Sstevel@tonic-gate } 11457c478bd9Sstevel@tonic-gate 1146*4a0fa546SMarek Pospisil if (tad->tad_ctrl & TAD_CORE) { 11477c478bd9Sstevel@tonic-gate audit_attributes(vp); 1148*4a0fa546SMarek Pospisil tad->tad_ctrl &= ~TAD_CORE; 11497c478bd9Sstevel@tonic-gate } 11507c478bd9Sstevel@tonic-gate 11517c478bd9Sstevel@tonic-gate if (!error && ((tad->tad_event == AUE_MKNOD) || 11527c478bd9Sstevel@tonic-gate (tad->tad_event == AUE_MKDIR))) { 11537c478bd9Sstevel@tonic-gate audit_attributes(vp); 11547c478bd9Sstevel@tonic-gate } 11557c478bd9Sstevel@tonic-gate 11567c478bd9Sstevel@tonic-gate /* for case where multiple lookups in one syscall (rename) */ 1157*4a0fa546SMarek Pospisil tad->tad_ctrl &= ~TAD_NOATTRB; 11587c478bd9Sstevel@tonic-gate } 11597c478bd9Sstevel@tonic-gate 11607c478bd9Sstevel@tonic-gate 11617c478bd9Sstevel@tonic-gate 11627c478bd9Sstevel@tonic-gate 11637c478bd9Sstevel@tonic-gate 11647c478bd9Sstevel@tonic-gate 11657c478bd9Sstevel@tonic-gate 11667c478bd9Sstevel@tonic-gate 11677c478bd9Sstevel@tonic-gate /* 11687c478bd9Sstevel@tonic-gate * ROUTINE: AUDIT_EXEC 11697c478bd9Sstevel@tonic-gate * PURPOSE: Records the function arguments and environment variables 11707c478bd9Sstevel@tonic-gate * CALLBY: EXEC_ARGS 11717c478bd9Sstevel@tonic-gate * NOTE: 11727c478bd9Sstevel@tonic-gate * TODO: 11737c478bd9Sstevel@tonic-gate * QUESTION: 11747c478bd9Sstevel@tonic-gate */ 11757c478bd9Sstevel@tonic-gate 11767c478bd9Sstevel@tonic-gate void 11777c478bd9Sstevel@tonic-gate audit_exec( 11787c478bd9Sstevel@tonic-gate const char *argstr, /* argument strings */ 11797c478bd9Sstevel@tonic-gate const char *envstr, /* environment strings */ 11807c478bd9Sstevel@tonic-gate ssize_t argc, /* total # arguments */ 1181134a1f4eSCasper H.S. Dik ssize_t envc, /* total # environment variables */ 1182134a1f4eSCasper H.S. Dik cred_t *pfcred) /* the additional privileges in a profile */ 11837c478bd9Sstevel@tonic-gate { 11847c478bd9Sstevel@tonic-gate t_audit_data_t *tad; 11859e9e6ab8Spaulson au_kcontext_t *kctx = GET_KCTX_PZ; 11867c478bd9Sstevel@tonic-gate 11877c478bd9Sstevel@tonic-gate tad = U2A(u); 11887c478bd9Sstevel@tonic-gate 11897c478bd9Sstevel@tonic-gate /* if not auditing this event, then do nothing */ 11907c478bd9Sstevel@tonic-gate if (!tad->tad_flag) 11917c478bd9Sstevel@tonic-gate return; 11927c478bd9Sstevel@tonic-gate 1193134a1f4eSCasper H.S. Dik if (pfcred != NULL) { 1194134a1f4eSCasper H.S. Dik p_audit_data_t *pad; 1195134a1f4eSCasper H.S. Dik cred_t *cr = CRED(); 1196134a1f4eSCasper H.S. Dik priv_set_t pset = CR_IPRIV(cr); 11977c478bd9Sstevel@tonic-gate 1198134a1f4eSCasper H.S. Dik pad = P2A(curproc); 1199134a1f4eSCasper H.S. Dik 1200134a1f4eSCasper H.S. Dik /* It's a different event. */ 1201134a1f4eSCasper H.S. Dik tad->tad_event = AUE_PFEXEC; 1202134a1f4eSCasper H.S. Dik 1203134a1f4eSCasper H.S. Dik /* Add the current working directory to the audit trail. */ 1204134a1f4eSCasper H.S. Dik if (pad->pad_cwd != NULL) 1205134a1f4eSCasper H.S. Dik au_uwrite(au_to_path(pad->pad_cwd)); 1206134a1f4eSCasper H.S. Dik 1207134a1f4eSCasper H.S. Dik /* 1208134a1f4eSCasper H.S. Dik * The new credential is not yet in place when audit_exec 1209134a1f4eSCasper H.S. Dik * is called. 1210134a1f4eSCasper H.S. Dik * Compute the additional bits available in the new credential 1211134a1f4eSCasper H.S. Dik * and the limit set. 1212134a1f4eSCasper H.S. Dik */ 1213134a1f4eSCasper H.S. Dik priv_inverse(&pset); 1214134a1f4eSCasper H.S. Dik priv_intersect(&CR_IPRIV(pfcred), &pset); 1215134a1f4eSCasper H.S. Dik if (!priv_isemptyset(&pset) || 1216134a1f4eSCasper H.S. Dik !priv_isequalset(&CR_LPRIV(pfcred), &CR_LPRIV(cr))) { 1217134a1f4eSCasper H.S. Dik au_uwrite(au_to_privset( 1218134a1f4eSCasper H.S. Dik priv_getsetbynum(PRIV_INHERITABLE), &pset, AUT_PRIV, 1219134a1f4eSCasper H.S. Dik 0)); 1220134a1f4eSCasper H.S. Dik au_uwrite(au_to_privset(priv_getsetbynum(PRIV_LIMIT), 1221134a1f4eSCasper H.S. Dik &CR_LPRIV(pfcred), AUT_PRIV, 0)); 1222134a1f4eSCasper H.S. Dik } 1223134a1f4eSCasper H.S. Dik /* 1224134a1f4eSCasper H.S. Dik * Compare the uids & gids: create a process token if changed. 1225134a1f4eSCasper H.S. Dik */ 1226134a1f4eSCasper H.S. Dik if (crgetuid(cr) != crgetuid(pfcred) || 1227134a1f4eSCasper H.S. Dik crgetruid(cr) != crgetruid(pfcred) || 1228134a1f4eSCasper H.S. Dik crgetgid(cr) != crgetgid(pfcred) || 1229134a1f4eSCasper H.S. Dik crgetrgid(cr) != crgetrgid(pfcred)) { 1230134a1f4eSCasper H.S. Dik AUDIT_SETPROC(&(u_ad), cr, crgetauinfo(cr)); 1231134a1f4eSCasper H.S. Dik } 1232134a1f4eSCasper H.S. Dik } 1233134a1f4eSCasper H.S. Dik 1234134a1f4eSCasper H.S. Dik if (pfcred != NULL || (kctx->auk_policy & AUDIT_ARGV) != 0) 12357c478bd9Sstevel@tonic-gate au_uwrite(au_to_exec_args(argstr, argc)); 12367c478bd9Sstevel@tonic-gate 1237134a1f4eSCasper H.S. Dik if (kctx->auk_policy & AUDIT_ARGE) 12387c478bd9Sstevel@tonic-gate au_uwrite(au_to_exec_env(envstr, envc)); 12397c478bd9Sstevel@tonic-gate } 12407c478bd9Sstevel@tonic-gate 12417c478bd9Sstevel@tonic-gate /* 12427c478bd9Sstevel@tonic-gate * ROUTINE: AUDIT_ENTERPROM 12437c478bd9Sstevel@tonic-gate * PURPOSE: 12447c478bd9Sstevel@tonic-gate * CALLBY: KBDINPUT 12457c478bd9Sstevel@tonic-gate * ZSA_XSINT 12467c478bd9Sstevel@tonic-gate * NOTE: 12477c478bd9Sstevel@tonic-gate * TODO: 12487c478bd9Sstevel@tonic-gate * QUESTION: 12497c478bd9Sstevel@tonic-gate */ 12507c478bd9Sstevel@tonic-gate void 12517c478bd9Sstevel@tonic-gate audit_enterprom(int flg) 12527c478bd9Sstevel@tonic-gate { 12537c478bd9Sstevel@tonic-gate token_t *rp = NULL; 12547c478bd9Sstevel@tonic-gate int sorf; 12557c478bd9Sstevel@tonic-gate 12567c478bd9Sstevel@tonic-gate if (flg) 12577c478bd9Sstevel@tonic-gate sorf = AUM_SUCC; 12587c478bd9Sstevel@tonic-gate else 12597c478bd9Sstevel@tonic-gate sorf = AUM_FAIL; 12607c478bd9Sstevel@tonic-gate 12617c478bd9Sstevel@tonic-gate AUDIT_ASYNC_START(rp, AUE_ENTERPROM, sorf); 12627c478bd9Sstevel@tonic-gate 12637c478bd9Sstevel@tonic-gate au_write((caddr_t *)&(rp), au_to_text("kmdb")); 12647c478bd9Sstevel@tonic-gate 12657c478bd9Sstevel@tonic-gate if (flg) 12667c478bd9Sstevel@tonic-gate au_write((caddr_t *)&(rp), au_to_return32(0, 0)); 12677c478bd9Sstevel@tonic-gate else 12687c478bd9Sstevel@tonic-gate au_write((caddr_t *)&(rp), au_to_return32(ECANCELED, 0)); 12697c478bd9Sstevel@tonic-gate 1270005d3febSMarek Pospisil AUDIT_ASYNC_FINISH(rp, AUE_ENTERPROM, NULL, NULL); 12717c478bd9Sstevel@tonic-gate } 12727c478bd9Sstevel@tonic-gate 12737c478bd9Sstevel@tonic-gate 12747c478bd9Sstevel@tonic-gate /* 12757c478bd9Sstevel@tonic-gate * ROUTINE: AUDIT_EXITPROM 12767c478bd9Sstevel@tonic-gate * PURPOSE: 12777c478bd9Sstevel@tonic-gate * CALLBY: KBDINPUT 12787c478bd9Sstevel@tonic-gate * ZSA_XSINT 12797c478bd9Sstevel@tonic-gate * NOTE: 12807c478bd9Sstevel@tonic-gate * TODO: 12817c478bd9Sstevel@tonic-gate * QUESTION: 12827c478bd9Sstevel@tonic-gate */ 12837c478bd9Sstevel@tonic-gate void 12847c478bd9Sstevel@tonic-gate audit_exitprom(int flg) 12857c478bd9Sstevel@tonic-gate { 12867c478bd9Sstevel@tonic-gate int sorf; 12877c478bd9Sstevel@tonic-gate token_t *rp = NULL; 12887c478bd9Sstevel@tonic-gate 12897c478bd9Sstevel@tonic-gate if (flg) 12907c478bd9Sstevel@tonic-gate sorf = AUM_SUCC; 12917c478bd9Sstevel@tonic-gate else 12927c478bd9Sstevel@tonic-gate sorf = AUM_FAIL; 12937c478bd9Sstevel@tonic-gate 12947c478bd9Sstevel@tonic-gate AUDIT_ASYNC_START(rp, AUE_EXITPROM, sorf); 12957c478bd9Sstevel@tonic-gate 12967c478bd9Sstevel@tonic-gate au_write((caddr_t *)&(rp), au_to_text("kmdb")); 12977c478bd9Sstevel@tonic-gate 12987c478bd9Sstevel@tonic-gate if (flg) 12997c478bd9Sstevel@tonic-gate au_write((caddr_t *)&(rp), au_to_return32(0, 0)); 13007c478bd9Sstevel@tonic-gate else 13017c478bd9Sstevel@tonic-gate au_write((caddr_t *)&(rp), au_to_return32(ECANCELED, 0)); 13027c478bd9Sstevel@tonic-gate 1303005d3febSMarek Pospisil AUDIT_ASYNC_FINISH(rp, AUE_EXITPROM, NULL, NULL); 13047c478bd9Sstevel@tonic-gate } 13057c478bd9Sstevel@tonic-gate 13067c478bd9Sstevel@tonic-gate struct fcntla { 13077c478bd9Sstevel@tonic-gate int fdes; 13087c478bd9Sstevel@tonic-gate int cmd; 13097c478bd9Sstevel@tonic-gate intptr_t arg; 13107c478bd9Sstevel@tonic-gate }; 13117c478bd9Sstevel@tonic-gate 13127c478bd9Sstevel@tonic-gate 13137c478bd9Sstevel@tonic-gate /* 13147c478bd9Sstevel@tonic-gate * ROUTINE: AUDIT_CHDIREC 13157c478bd9Sstevel@tonic-gate * PURPOSE: 13167c478bd9Sstevel@tonic-gate * CALLBY: CHDIREC 13177c478bd9Sstevel@tonic-gate * NOTE: The main function of CHDIREC 13187c478bd9Sstevel@tonic-gate * TODO: Move the audit_chdirec hook above the VN_RELE in vncalls.c 13197c478bd9Sstevel@tonic-gate * QUESTION: 13207c478bd9Sstevel@tonic-gate */ 13217c478bd9Sstevel@tonic-gate 13227c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 13237c478bd9Sstevel@tonic-gate void 13247c478bd9Sstevel@tonic-gate audit_chdirec(vnode_t *vp, vnode_t **vpp) 13257c478bd9Sstevel@tonic-gate { 13267c478bd9Sstevel@tonic-gate int chdir; 13277c478bd9Sstevel@tonic-gate int fchdir; 13287c478bd9Sstevel@tonic-gate struct audit_path **appp; 13297c478bd9Sstevel@tonic-gate struct file *fp; 13307c478bd9Sstevel@tonic-gate f_audit_data_t *fad; 13317c478bd9Sstevel@tonic-gate p_audit_data_t *pad = P2A(curproc); 13327c478bd9Sstevel@tonic-gate t_audit_data_t *tad = T2A(curthread); 13337c478bd9Sstevel@tonic-gate 13347c478bd9Sstevel@tonic-gate struct a { 13357c478bd9Sstevel@tonic-gate long fd; 13367c478bd9Sstevel@tonic-gate } *uap = (struct a *)ttolwp(curthread)->lwp_ap; 13377c478bd9Sstevel@tonic-gate 13387c478bd9Sstevel@tonic-gate if ((tad->tad_scid == SYS_chdir) || (tad->tad_scid == SYS_chroot)) { 13397c478bd9Sstevel@tonic-gate chdir = tad->tad_scid == SYS_chdir; 13407c478bd9Sstevel@tonic-gate if (tad->tad_aupath) { 13417c478bd9Sstevel@tonic-gate mutex_enter(&pad->pad_lock); 13427c478bd9Sstevel@tonic-gate if (chdir) 13437c478bd9Sstevel@tonic-gate appp = &(pad->pad_cwd); 13447c478bd9Sstevel@tonic-gate else 13457c478bd9Sstevel@tonic-gate appp = &(pad->pad_root); 13467c478bd9Sstevel@tonic-gate au_pathrele(*appp); 13477c478bd9Sstevel@tonic-gate /* use tad hold */ 13487c478bd9Sstevel@tonic-gate *appp = tad->tad_aupath; 13497c478bd9Sstevel@tonic-gate tad->tad_aupath = NULL; 13507c478bd9Sstevel@tonic-gate mutex_exit(&pad->pad_lock); 13517c478bd9Sstevel@tonic-gate } 13527c478bd9Sstevel@tonic-gate } else if ((tad->tad_scid == SYS_fchdir) || 13537c478bd9Sstevel@tonic-gate (tad->tad_scid == SYS_fchroot)) { 13547c478bd9Sstevel@tonic-gate fchdir = tad->tad_scid == SYS_fchdir; 13557c478bd9Sstevel@tonic-gate if ((fp = getf(uap->fd)) == NULL) 13567c478bd9Sstevel@tonic-gate return; 13577c478bd9Sstevel@tonic-gate fad = F2A(fp); 13587c478bd9Sstevel@tonic-gate if (fad->fad_aupath) { 13597c478bd9Sstevel@tonic-gate au_pathhold(fad->fad_aupath); 13607c478bd9Sstevel@tonic-gate mutex_enter(&pad->pad_lock); 13617c478bd9Sstevel@tonic-gate if (fchdir) 13627c478bd9Sstevel@tonic-gate appp = &(pad->pad_cwd); 13637c478bd9Sstevel@tonic-gate else 13647c478bd9Sstevel@tonic-gate appp = &(pad->pad_root); 13657c478bd9Sstevel@tonic-gate au_pathrele(*appp); 13667c478bd9Sstevel@tonic-gate *appp = fad->fad_aupath; 13677c478bd9Sstevel@tonic-gate mutex_exit(&pad->pad_lock); 13687c478bd9Sstevel@tonic-gate if (tad->tad_flag) { 13697c478bd9Sstevel@tonic-gate au_uwrite(au_to_path(fad->fad_aupath)); 13707c478bd9Sstevel@tonic-gate audit_attributes(fp->f_vnode); 13717c478bd9Sstevel@tonic-gate } 13727c478bd9Sstevel@tonic-gate } 13737c478bd9Sstevel@tonic-gate releasef(uap->fd); 13747c478bd9Sstevel@tonic-gate } 13757c478bd9Sstevel@tonic-gate } 13767c478bd9Sstevel@tonic-gate 13777c478bd9Sstevel@tonic-gate 13787c478bd9Sstevel@tonic-gate /* 13797c478bd9Sstevel@tonic-gate * Audit hook for stream based socket and tli request. 13807c478bd9Sstevel@tonic-gate * Note that we do not have user context while executing 13817c478bd9Sstevel@tonic-gate * this code so we had to record them earlier during the 13827c478bd9Sstevel@tonic-gate * putmsg/getmsg to figure out which user we are dealing with. 13837c478bd9Sstevel@tonic-gate */ 13847c478bd9Sstevel@tonic-gate 13857c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 13867c478bd9Sstevel@tonic-gate void 13877c478bd9Sstevel@tonic-gate audit_sock( 13887c478bd9Sstevel@tonic-gate int type, /* type of tihdr.h header requests */ 13897c478bd9Sstevel@tonic-gate queue_t *q, /* contains the process and thread audit data */ 13907c478bd9Sstevel@tonic-gate mblk_t *mp, /* contains the tihdr.h header structures */ 13917c478bd9Sstevel@tonic-gate int from) /* timod or sockmod request */ 13927c478bd9Sstevel@tonic-gate { 13937c478bd9Sstevel@tonic-gate int32_t len; 13947c478bd9Sstevel@tonic-gate int32_t offset; 13957c478bd9Sstevel@tonic-gate struct sockaddr_in *sock_data; 13967c478bd9Sstevel@tonic-gate struct T_conn_req *conn_req; 13977c478bd9Sstevel@tonic-gate struct T_conn_ind *conn_ind; 13987c478bd9Sstevel@tonic-gate struct T_unitdata_req *unitdata_req; 13997c478bd9Sstevel@tonic-gate struct T_unitdata_ind *unitdata_ind; 14007c478bd9Sstevel@tonic-gate au_state_t estate; 14017c478bd9Sstevel@tonic-gate t_audit_data_t *tad; 14027c478bd9Sstevel@tonic-gate caddr_t saved_thread_ptr; 14037c478bd9Sstevel@tonic-gate au_mask_t amask; 14047c478bd9Sstevel@tonic-gate const auditinfo_addr_t *ainfo; 14057c478bd9Sstevel@tonic-gate au_kcontext_t *kctx; 14067c478bd9Sstevel@tonic-gate 14077c478bd9Sstevel@tonic-gate if (q->q_stream == NULL) 14087c478bd9Sstevel@tonic-gate return; 14097c478bd9Sstevel@tonic-gate mutex_enter(&q->q_stream->sd_lock); 14107c478bd9Sstevel@tonic-gate /* are we being audited */ 14117c478bd9Sstevel@tonic-gate saved_thread_ptr = q->q_stream->sd_t_audit_data; 14127c478bd9Sstevel@tonic-gate /* no pointer to thread, nothing to do */ 14137c478bd9Sstevel@tonic-gate if (saved_thread_ptr == NULL) { 14147c478bd9Sstevel@tonic-gate mutex_exit(&q->q_stream->sd_lock); 14157c478bd9Sstevel@tonic-gate return; 14167c478bd9Sstevel@tonic-gate } 14177c478bd9Sstevel@tonic-gate /* only allow one addition of a record token */ 14187c478bd9Sstevel@tonic-gate q->q_stream->sd_t_audit_data = NULL; 14197c478bd9Sstevel@tonic-gate /* 14207c478bd9Sstevel@tonic-gate * thread is not the one being audited, then nothing to do 14217c478bd9Sstevel@tonic-gate * This could be the stream thread handling the module 14227c478bd9Sstevel@tonic-gate * service routine. In this case, the context for the audit 14237c478bd9Sstevel@tonic-gate * record can no longer be assumed. Simplest to just drop 14247c478bd9Sstevel@tonic-gate * the operation. 14257c478bd9Sstevel@tonic-gate */ 14267c478bd9Sstevel@tonic-gate if (curthread != (kthread_id_t)saved_thread_ptr) { 14277c478bd9Sstevel@tonic-gate mutex_exit(&q->q_stream->sd_lock); 14287c478bd9Sstevel@tonic-gate return; 14297c478bd9Sstevel@tonic-gate } 14307c478bd9Sstevel@tonic-gate if (curthread->t_sysnum >= SYS_so_socket && 14317c478bd9Sstevel@tonic-gate curthread->t_sysnum <= SYS_sockconfig) { 14327c478bd9Sstevel@tonic-gate mutex_exit(&q->q_stream->sd_lock); 14337c478bd9Sstevel@tonic-gate return; 14347c478bd9Sstevel@tonic-gate } 14357c478bd9Sstevel@tonic-gate mutex_exit(&q->q_stream->sd_lock); 14367c478bd9Sstevel@tonic-gate /* 14377c478bd9Sstevel@tonic-gate * we know that the thread that did the put/getmsg is the 14387c478bd9Sstevel@tonic-gate * one running. Now we can get the TAD and see if we should 14397c478bd9Sstevel@tonic-gate * add an audit token. 14407c478bd9Sstevel@tonic-gate */ 14417c478bd9Sstevel@tonic-gate tad = U2A(u); 14427c478bd9Sstevel@tonic-gate 14439e9e6ab8Spaulson kctx = GET_KCTX_PZ; 14447c478bd9Sstevel@tonic-gate 14457c478bd9Sstevel@tonic-gate /* proceed ONLY if user is being audited */ 14467c478bd9Sstevel@tonic-gate if (!tad->tad_flag) 14477c478bd9Sstevel@tonic-gate return; 14487c478bd9Sstevel@tonic-gate 14497c478bd9Sstevel@tonic-gate ainfo = crgetauinfo(CRED()); 14507c478bd9Sstevel@tonic-gate if (ainfo == NULL) 14517c478bd9Sstevel@tonic-gate return; 14527c478bd9Sstevel@tonic-gate amask = ainfo->ai_mask; 14537c478bd9Sstevel@tonic-gate 14547c478bd9Sstevel@tonic-gate /* 14557c478bd9Sstevel@tonic-gate * Figure out the type of stream networking request here. 14567c478bd9Sstevel@tonic-gate * Note that getmsg and putmsg are always preselected 14577c478bd9Sstevel@tonic-gate * because during the beginning of the system call we have 14587c478bd9Sstevel@tonic-gate * not yet figure out which of the socket or tli request 14597c478bd9Sstevel@tonic-gate * we are looking at until we are here. So we need to check 14607c478bd9Sstevel@tonic-gate * against that specific request and reset the type of event. 14617c478bd9Sstevel@tonic-gate */ 14627c478bd9Sstevel@tonic-gate switch (type) { 14637c478bd9Sstevel@tonic-gate case T_CONN_REQ: /* connection request */ 14647c478bd9Sstevel@tonic-gate conn_req = (struct T_conn_req *)mp->b_rptr; 14657c478bd9Sstevel@tonic-gate if (conn_req->DEST_offset < sizeof (struct T_conn_req)) 14667c478bd9Sstevel@tonic-gate return; 14677c478bd9Sstevel@tonic-gate offset = conn_req->DEST_offset; 14687c478bd9Sstevel@tonic-gate len = conn_req->DEST_length; 14697c478bd9Sstevel@tonic-gate estate = kctx->auk_ets[AUE_SOCKCONNECT]; 14707c478bd9Sstevel@tonic-gate if (amask.as_success & estate || amask.as_failure & estate) { 14717c478bd9Sstevel@tonic-gate tad->tad_event = AUE_SOCKCONNECT; 14727c478bd9Sstevel@tonic-gate break; 14737c478bd9Sstevel@tonic-gate } else { 14747c478bd9Sstevel@tonic-gate return; 14757c478bd9Sstevel@tonic-gate } 14767c478bd9Sstevel@tonic-gate case T_CONN_IND: /* connectionless receive request */ 14777c478bd9Sstevel@tonic-gate conn_ind = (struct T_conn_ind *)mp->b_rptr; 14787c478bd9Sstevel@tonic-gate if (conn_ind->SRC_offset < sizeof (struct T_conn_ind)) 14797c478bd9Sstevel@tonic-gate return; 14807c478bd9Sstevel@tonic-gate offset = conn_ind->SRC_offset; 14817c478bd9Sstevel@tonic-gate len = conn_ind->SRC_length; 14827c478bd9Sstevel@tonic-gate estate = kctx->auk_ets[AUE_SOCKACCEPT]; 14837c478bd9Sstevel@tonic-gate if (amask.as_success & estate || amask.as_failure & estate) { 14847c478bd9Sstevel@tonic-gate tad->tad_event = AUE_SOCKACCEPT; 14857c478bd9Sstevel@tonic-gate break; 14867c478bd9Sstevel@tonic-gate } else { 14877c478bd9Sstevel@tonic-gate return; 14887c478bd9Sstevel@tonic-gate } 14897c478bd9Sstevel@tonic-gate case T_UNITDATA_REQ: /* connectionless send request */ 14907c478bd9Sstevel@tonic-gate unitdata_req = (struct T_unitdata_req *)mp->b_rptr; 14917c478bd9Sstevel@tonic-gate if (unitdata_req->DEST_offset < sizeof (struct T_unitdata_req)) 14927c478bd9Sstevel@tonic-gate return; 14937c478bd9Sstevel@tonic-gate offset = unitdata_req->DEST_offset; 14947c478bd9Sstevel@tonic-gate len = unitdata_req->DEST_length; 14957c478bd9Sstevel@tonic-gate estate = kctx->auk_ets[AUE_SOCKSEND]; 14967c478bd9Sstevel@tonic-gate if (amask.as_success & estate || amask.as_failure & estate) { 14977c478bd9Sstevel@tonic-gate tad->tad_event = AUE_SOCKSEND; 14987c478bd9Sstevel@tonic-gate break; 14997c478bd9Sstevel@tonic-gate } else { 15007c478bd9Sstevel@tonic-gate return; 15017c478bd9Sstevel@tonic-gate } 15027c478bd9Sstevel@tonic-gate case T_UNITDATA_IND: /* connectionless receive request */ 15037c478bd9Sstevel@tonic-gate unitdata_ind = (struct T_unitdata_ind *)mp->b_rptr; 15047c478bd9Sstevel@tonic-gate if (unitdata_ind->SRC_offset < sizeof (struct T_unitdata_ind)) 15057c478bd9Sstevel@tonic-gate return; 15067c478bd9Sstevel@tonic-gate offset = unitdata_ind->SRC_offset; 15077c478bd9Sstevel@tonic-gate len = unitdata_ind->SRC_length; 15087c478bd9Sstevel@tonic-gate estate = kctx->auk_ets[AUE_SOCKRECEIVE]; 15097c478bd9Sstevel@tonic-gate if (amask.as_success & estate || amask.as_failure & estate) { 15107c478bd9Sstevel@tonic-gate tad->tad_event = AUE_SOCKRECEIVE; 15117c478bd9Sstevel@tonic-gate break; 15127c478bd9Sstevel@tonic-gate } else { 15137c478bd9Sstevel@tonic-gate return; 15147c478bd9Sstevel@tonic-gate } 15157c478bd9Sstevel@tonic-gate default: 15167c478bd9Sstevel@tonic-gate return; 15177c478bd9Sstevel@tonic-gate } 15187c478bd9Sstevel@tonic-gate 15197c478bd9Sstevel@tonic-gate /* 15207c478bd9Sstevel@tonic-gate * we are only interested in tcp stream connections, 15217c478bd9Sstevel@tonic-gate * not unix domain stuff 15227c478bd9Sstevel@tonic-gate */ 15237c478bd9Sstevel@tonic-gate if ((len < 0) || (len > sizeof (struct sockaddr_in))) { 15247c478bd9Sstevel@tonic-gate tad->tad_event = AUE_GETMSG; 15257c478bd9Sstevel@tonic-gate return; 15267c478bd9Sstevel@tonic-gate } 15277c478bd9Sstevel@tonic-gate /* skip over TPI header and point to the ip address */ 15287c478bd9Sstevel@tonic-gate sock_data = (struct sockaddr_in *)((char *)mp->b_rptr + offset); 15297c478bd9Sstevel@tonic-gate 15307c478bd9Sstevel@tonic-gate switch (sock_data->sin_family) { 15317c478bd9Sstevel@tonic-gate case AF_INET: 15327c478bd9Sstevel@tonic-gate au_write(&(tad->tad_ad), au_to_sock_inet(sock_data)); 15337c478bd9Sstevel@tonic-gate break; 15347c478bd9Sstevel@tonic-gate default: /* reset to AUE_PUTMSG if not a inet request */ 15357c478bd9Sstevel@tonic-gate tad->tad_event = AUE_GETMSG; 15367c478bd9Sstevel@tonic-gate break; 15377c478bd9Sstevel@tonic-gate } 15387c478bd9Sstevel@tonic-gate } 15397c478bd9Sstevel@tonic-gate 15407c478bd9Sstevel@tonic-gate 15417c478bd9Sstevel@tonic-gate static void 15427c478bd9Sstevel@tonic-gate add_return_token(caddr_t *ad, unsigned int scid, int err, int rval) 15437c478bd9Sstevel@tonic-gate { 15447c478bd9Sstevel@tonic-gate unsigned int sy_flags; 15457c478bd9Sstevel@tonic-gate 15467c478bd9Sstevel@tonic-gate #ifdef _SYSCALL32_IMPL 1547950d6705SPaul Wernau /* 1548950d6705SPaul Wernau * Guard against t_lwp being NULL when this function is called 1549950d6705SPaul Wernau * from a kernel queue instead of from a direct system call. 1550950d6705SPaul Wernau * In that case, assume the running kernel data model. 1551950d6705SPaul Wernau */ 1552950d6705SPaul Wernau if ((curthread->t_lwp == NULL) || (lwp_getdatamodel( 1553950d6705SPaul Wernau ttolwp(curthread)) == DATAMODEL_NATIVE)) 15547c478bd9Sstevel@tonic-gate sy_flags = sysent[scid].sy_flags & SE_RVAL_MASK; 15557c478bd9Sstevel@tonic-gate else 15567c478bd9Sstevel@tonic-gate sy_flags = sysent32[scid].sy_flags & SE_RVAL_MASK; 15577c478bd9Sstevel@tonic-gate #else 15587c478bd9Sstevel@tonic-gate sy_flags = sysent[scid].sy_flags & SE_RVAL_MASK; 15597c478bd9Sstevel@tonic-gate #endif 15607c478bd9Sstevel@tonic-gate 15617c478bd9Sstevel@tonic-gate if (sy_flags == SE_64RVAL) 15627c478bd9Sstevel@tonic-gate au_write(ad, au_to_return64(err, rval)); 15637c478bd9Sstevel@tonic-gate else 15647c478bd9Sstevel@tonic-gate au_write(ad, au_to_return32(err, rval)); 15657c478bd9Sstevel@tonic-gate 15667c478bd9Sstevel@tonic-gate } 15677c478bd9Sstevel@tonic-gate 15687c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 15697c478bd9Sstevel@tonic-gate void 15707c478bd9Sstevel@tonic-gate audit_fdsend(fd, fp, error) 15717c478bd9Sstevel@tonic-gate int fd; 15727c478bd9Sstevel@tonic-gate struct file *fp; 15737c478bd9Sstevel@tonic-gate int error; /* ignore for now */ 15747c478bd9Sstevel@tonic-gate { 15757c478bd9Sstevel@tonic-gate t_audit_data_t *tad; /* current thread */ 15767c478bd9Sstevel@tonic-gate f_audit_data_t *fad; /* per file audit structure */ 15777c478bd9Sstevel@tonic-gate struct vnode *vp; /* for file attributes */ 15787c478bd9Sstevel@tonic-gate 15797c478bd9Sstevel@tonic-gate /* is this system call being audited */ 15807c478bd9Sstevel@tonic-gate tad = U2A(u); 15817c478bd9Sstevel@tonic-gate ASSERT(tad != (t_audit_data_t *)0); 15827c478bd9Sstevel@tonic-gate if (!tad->tad_flag) 15837c478bd9Sstevel@tonic-gate return; 15847c478bd9Sstevel@tonic-gate 15857c478bd9Sstevel@tonic-gate fad = F2A(fp); 15867c478bd9Sstevel@tonic-gate 15877c478bd9Sstevel@tonic-gate /* add path and file attributes */ 15887c478bd9Sstevel@tonic-gate if (fad != NULL && fad->fad_aupath != NULL) { 15897c478bd9Sstevel@tonic-gate au_uwrite(au_to_arg32(0, "send fd", (uint32_t)fd)); 15907c478bd9Sstevel@tonic-gate au_uwrite(au_to_path(fad->fad_aupath)); 15917c478bd9Sstevel@tonic-gate } else { 15927c478bd9Sstevel@tonic-gate au_uwrite(au_to_arg32(0, "send fd", (uint32_t)fd)); 15937c478bd9Sstevel@tonic-gate #ifdef _LP64 15947c478bd9Sstevel@tonic-gate au_uwrite(au_to_arg64(0, "no path", (uint64_t)fp)); 15957c478bd9Sstevel@tonic-gate #else 15967c478bd9Sstevel@tonic-gate au_uwrite(au_to_arg32(0, "no path", (uint32_t)fp)); 15977c478bd9Sstevel@tonic-gate #endif 15987c478bd9Sstevel@tonic-gate } 15997c478bd9Sstevel@tonic-gate vp = fp->f_vnode; /* include vnode attributes */ 16007c478bd9Sstevel@tonic-gate audit_attributes(vp); 16017c478bd9Sstevel@tonic-gate } 16027c478bd9Sstevel@tonic-gate 16037c478bd9Sstevel@tonic-gate /* 1604da6c28aaSamw * Record privileges successfully used and we attempted to use but 16057c478bd9Sstevel@tonic-gate * didn't have. 16067c478bd9Sstevel@tonic-gate */ 16077c478bd9Sstevel@tonic-gate void 16087c478bd9Sstevel@tonic-gate audit_priv(int priv, const priv_set_t *set, int flag) 16097c478bd9Sstevel@tonic-gate { 16107c478bd9Sstevel@tonic-gate t_audit_data_t *tad; 16117c478bd9Sstevel@tonic-gate int sbit; 16127c478bd9Sstevel@tonic-gate priv_set_t *target; 16137c478bd9Sstevel@tonic-gate 16147c478bd9Sstevel@tonic-gate /* Make sure this isn't being called in an interrupt context */ 16157c478bd9Sstevel@tonic-gate ASSERT(servicing_interrupt() == 0); 16167c478bd9Sstevel@tonic-gate 16177c478bd9Sstevel@tonic-gate tad = U2A(u); 16187c478bd9Sstevel@tonic-gate 16197c478bd9Sstevel@tonic-gate if (tad->tad_flag == 0) 16207c478bd9Sstevel@tonic-gate return; 16217c478bd9Sstevel@tonic-gate 16227c478bd9Sstevel@tonic-gate target = flag ? &tad->tad_sprivs : &tad->tad_fprivs; 16237c478bd9Sstevel@tonic-gate sbit = flag ? PAD_SPRIVUSE : PAD_FPRIVUSE; 16247c478bd9Sstevel@tonic-gate 16257c478bd9Sstevel@tonic-gate /* Tell audit_success() and audit_finish() that we saw this case */ 16267c478bd9Sstevel@tonic-gate if (!(tad->tad_evmod & sbit)) { 16277c478bd9Sstevel@tonic-gate /* Clear set first time around */ 16287c478bd9Sstevel@tonic-gate priv_emptyset(target); 16297c478bd9Sstevel@tonic-gate tad->tad_evmod |= sbit; 16307c478bd9Sstevel@tonic-gate } 16317c478bd9Sstevel@tonic-gate 16327c478bd9Sstevel@tonic-gate /* Save the privileges in the tad */ 16337c478bd9Sstevel@tonic-gate if (priv == PRIV_ALL) { 16347c478bd9Sstevel@tonic-gate priv_fillset(target); 16357c478bd9Sstevel@tonic-gate } else { 16367c478bd9Sstevel@tonic-gate ASSERT(set != NULL || priv != PRIV_NONE); 16377c478bd9Sstevel@tonic-gate if (set != NULL) 16387c478bd9Sstevel@tonic-gate priv_union(set, target); 16397c478bd9Sstevel@tonic-gate if (priv != PRIV_NONE) 16407c478bd9Sstevel@tonic-gate priv_addset(target, priv); 16417c478bd9Sstevel@tonic-gate } 16427c478bd9Sstevel@tonic-gate } 16437c478bd9Sstevel@tonic-gate 16447c478bd9Sstevel@tonic-gate /* 16457c478bd9Sstevel@tonic-gate * Audit the setpriv() system call; the operation, the set name and 16467c478bd9Sstevel@tonic-gate * the current value as well as the set argument are put in the 16477c478bd9Sstevel@tonic-gate * audit trail. 16487c478bd9Sstevel@tonic-gate */ 16497c478bd9Sstevel@tonic-gate void 16507c478bd9Sstevel@tonic-gate audit_setppriv(int op, int set, const priv_set_t *newpriv, const cred_t *ocr) 16517c478bd9Sstevel@tonic-gate { 16527c478bd9Sstevel@tonic-gate t_audit_data_t *tad; 16537c478bd9Sstevel@tonic-gate const priv_set_t *oldpriv; 16547c478bd9Sstevel@tonic-gate priv_set_t report; 16557c478bd9Sstevel@tonic-gate const char *setname; 16567c478bd9Sstevel@tonic-gate 16577c478bd9Sstevel@tonic-gate tad = U2A(u); 16587c478bd9Sstevel@tonic-gate 16597c478bd9Sstevel@tonic-gate if (tad->tad_flag == 0) 16607c478bd9Sstevel@tonic-gate return; 16617c478bd9Sstevel@tonic-gate 16627c478bd9Sstevel@tonic-gate oldpriv = priv_getset(ocr, set); 16637c478bd9Sstevel@tonic-gate 16647c478bd9Sstevel@tonic-gate /* Generate the actual record, include the before and after */ 16657c478bd9Sstevel@tonic-gate au_uwrite(au_to_arg32(2, "op", op)); 16667c478bd9Sstevel@tonic-gate setname = priv_getsetbynum(set); 16677c478bd9Sstevel@tonic-gate 16687c478bd9Sstevel@tonic-gate switch (op) { 16697c478bd9Sstevel@tonic-gate case PRIV_OFF: 16707c478bd9Sstevel@tonic-gate /* Report privileges actually switched off */ 16717c478bd9Sstevel@tonic-gate report = *oldpriv; 16727c478bd9Sstevel@tonic-gate priv_intersect(newpriv, &report); 16737c478bd9Sstevel@tonic-gate au_uwrite(au_to_privset(setname, &report, AUT_PRIV, 0)); 16747c478bd9Sstevel@tonic-gate break; 16757c478bd9Sstevel@tonic-gate case PRIV_ON: 16767c478bd9Sstevel@tonic-gate /* Report privileges actually switched on */ 16777c478bd9Sstevel@tonic-gate report = *oldpriv; 16787c478bd9Sstevel@tonic-gate priv_inverse(&report); 16797c478bd9Sstevel@tonic-gate priv_intersect(newpriv, &report); 16807c478bd9Sstevel@tonic-gate au_uwrite(au_to_privset(setname, &report, AUT_PRIV, 0)); 16817c478bd9Sstevel@tonic-gate break; 16827c478bd9Sstevel@tonic-gate case PRIV_SET: 16837c478bd9Sstevel@tonic-gate /* Report before and after */ 16847c478bd9Sstevel@tonic-gate au_uwrite(au_to_privset(setname, oldpriv, AUT_PRIV, 0)); 16857c478bd9Sstevel@tonic-gate au_uwrite(au_to_privset(setname, newpriv, AUT_PRIV, 0)); 16867c478bd9Sstevel@tonic-gate break; 16877c478bd9Sstevel@tonic-gate } 16887c478bd9Sstevel@tonic-gate } 16897c478bd9Sstevel@tonic-gate 16907c478bd9Sstevel@tonic-gate /* 16917c478bd9Sstevel@tonic-gate * Dump the full device policy setting in the audit trail. 16927c478bd9Sstevel@tonic-gate */ 16937c478bd9Sstevel@tonic-gate void 16947c478bd9Sstevel@tonic-gate audit_devpolicy(int nitems, const devplcysys_t *items) 16957c478bd9Sstevel@tonic-gate { 16967c478bd9Sstevel@tonic-gate t_audit_data_t *tad; 16977c478bd9Sstevel@tonic-gate int i; 16987c478bd9Sstevel@tonic-gate 16997c478bd9Sstevel@tonic-gate tad = U2A(u); 17007c478bd9Sstevel@tonic-gate 17017c478bd9Sstevel@tonic-gate if (tad->tad_flag == 0) 17027c478bd9Sstevel@tonic-gate return; 17037c478bd9Sstevel@tonic-gate 17047c478bd9Sstevel@tonic-gate for (i = 0; i < nitems; i++) { 17057c478bd9Sstevel@tonic-gate au_uwrite(au_to_arg32(2, "major", items[i].dps_maj)); 17067c478bd9Sstevel@tonic-gate if (items[i].dps_minornm[0] == '\0') { 17077c478bd9Sstevel@tonic-gate au_uwrite(au_to_arg32(2, "lomin", items[i].dps_lomin)); 17087c478bd9Sstevel@tonic-gate au_uwrite(au_to_arg32(2, "himin", items[i].dps_himin)); 17097c478bd9Sstevel@tonic-gate } else 17107c478bd9Sstevel@tonic-gate au_uwrite(au_to_text(items[i].dps_minornm)); 17117c478bd9Sstevel@tonic-gate 17127c478bd9Sstevel@tonic-gate au_uwrite(au_to_privset("read", &items[i].dps_rdp, 17137c478bd9Sstevel@tonic-gate AUT_PRIV, 0)); 17147c478bd9Sstevel@tonic-gate au_uwrite(au_to_privset("write", &items[i].dps_wrp, 17157c478bd9Sstevel@tonic-gate AUT_PRIV, 0)); 17167c478bd9Sstevel@tonic-gate } 17177c478bd9Sstevel@tonic-gate } 17187c478bd9Sstevel@tonic-gate 17197c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 17207c478bd9Sstevel@tonic-gate void 17217c478bd9Sstevel@tonic-gate audit_fdrecv(fd, fp) 17227c478bd9Sstevel@tonic-gate int fd; 17237c478bd9Sstevel@tonic-gate struct file *fp; 17247c478bd9Sstevel@tonic-gate { 17257c478bd9Sstevel@tonic-gate t_audit_data_t *tad; /* current thread */ 17267c478bd9Sstevel@tonic-gate f_audit_data_t *fad; /* per file audit structure */ 17277c478bd9Sstevel@tonic-gate struct vnode *vp; /* for file attributes */ 17287c478bd9Sstevel@tonic-gate 17297c478bd9Sstevel@tonic-gate /* is this system call being audited */ 17307c478bd9Sstevel@tonic-gate tad = U2A(u); 17317c478bd9Sstevel@tonic-gate ASSERT(tad != (t_audit_data_t *)0); 17327c478bd9Sstevel@tonic-gate if (!tad->tad_flag) 17337c478bd9Sstevel@tonic-gate return; 17347c478bd9Sstevel@tonic-gate 17357c478bd9Sstevel@tonic-gate fad = F2A(fp); 17367c478bd9Sstevel@tonic-gate 17377c478bd9Sstevel@tonic-gate /* add path and file attributes */ 17387c478bd9Sstevel@tonic-gate if (fad != NULL && fad->fad_aupath != NULL) { 17397c478bd9Sstevel@tonic-gate au_uwrite(au_to_arg32(0, "recv fd", (uint32_t)fd)); 17407c478bd9Sstevel@tonic-gate au_uwrite(au_to_path(fad->fad_aupath)); 17417c478bd9Sstevel@tonic-gate } else { 17427c478bd9Sstevel@tonic-gate au_uwrite(au_to_arg32(0, "recv fd", (uint32_t)fd)); 17437c478bd9Sstevel@tonic-gate #ifdef _LP64 17447c478bd9Sstevel@tonic-gate au_uwrite(au_to_arg64(0, "no path", (uint64_t)fp)); 17457c478bd9Sstevel@tonic-gate #else 17467c478bd9Sstevel@tonic-gate au_uwrite(au_to_arg32(0, "no path", (uint32_t)fp)); 17477c478bd9Sstevel@tonic-gate #endif 17487c478bd9Sstevel@tonic-gate } 17497c478bd9Sstevel@tonic-gate vp = fp->f_vnode; /* include vnode attributes */ 17507c478bd9Sstevel@tonic-gate audit_attributes(vp); 17517c478bd9Sstevel@tonic-gate } 17527c478bd9Sstevel@tonic-gate 17537c478bd9Sstevel@tonic-gate /* 17547c478bd9Sstevel@tonic-gate * ROUTINE: AUDIT_CRYPTOADM 17557c478bd9Sstevel@tonic-gate * PURPOSE: Records arguments to administrative ioctls on /dev/cryptoadm 17567c478bd9Sstevel@tonic-gate * CALLBY: CRYPTO_LOAD_DEV_DISABLED, CRYPTO_LOAD_SOFT_DISABLED, 17577c478bd9Sstevel@tonic-gate * CRYPTO_UNLOAD_SOFT_MODULE, CRYPTO_LOAD_SOFT_CONFIG, 17587c478bd9Sstevel@tonic-gate * CRYPTO_POOL_CREATE, CRYPTO_POOL_WAIT, CRYPTO_POOL_RUN, 17597c478bd9Sstevel@tonic-gate * CRYPTO_LOAD_DOOR 17607c478bd9Sstevel@tonic-gate * NOTE: 17617c478bd9Sstevel@tonic-gate * TODO: 17627c478bd9Sstevel@tonic-gate * QUESTION: 17637c478bd9Sstevel@tonic-gate */ 17647c478bd9Sstevel@tonic-gate 17657c478bd9Sstevel@tonic-gate void 17667c478bd9Sstevel@tonic-gate audit_cryptoadm(int cmd, char *module_name, crypto_mech_name_t *mech_names, 17677c478bd9Sstevel@tonic-gate uint_t mech_count, uint_t device_instance, uint32_t rv, int error) 17687c478bd9Sstevel@tonic-gate { 17697c478bd9Sstevel@tonic-gate boolean_t mech_list_required = B_FALSE; 17707c478bd9Sstevel@tonic-gate cred_t *cr = CRED(); 17717c478bd9Sstevel@tonic-gate t_audit_data_t *tad; 17727c478bd9Sstevel@tonic-gate token_t *ad = NULL; 17737c478bd9Sstevel@tonic-gate const auditinfo_addr_t *ainfo = crgetauinfo(cr); 17747c478bd9Sstevel@tonic-gate char buffer[MAXNAMELEN * 2]; 17759e9e6ab8Spaulson au_kcontext_t *kctx = GET_KCTX_PZ; 17767c478bd9Sstevel@tonic-gate 17777c478bd9Sstevel@tonic-gate tad = U2A(u); 17787c478bd9Sstevel@tonic-gate if (tad == NULL) 17797c478bd9Sstevel@tonic-gate return; 17807c478bd9Sstevel@tonic-gate 17817c478bd9Sstevel@tonic-gate if (ainfo == NULL) 17827c478bd9Sstevel@tonic-gate return; 17837c478bd9Sstevel@tonic-gate 17847c478bd9Sstevel@tonic-gate tad->tad_event = AUE_CRYPTOADM; 17857c478bd9Sstevel@tonic-gate 1786799bd290Spwernau if (audit_success(kctx, tad, error, NULL) != AU_OK) 17877c478bd9Sstevel@tonic-gate return; 17887c478bd9Sstevel@tonic-gate 178981490fd2Sgww /* Add subject information */ 179081490fd2Sgww AUDIT_SETSUBJ((caddr_t *)&(ad), cr, ainfo, kctx); 179145916cd2Sjpk 17927c478bd9Sstevel@tonic-gate switch (cmd) { 17937c478bd9Sstevel@tonic-gate case CRYPTO_LOAD_DEV_DISABLED: 17947c478bd9Sstevel@tonic-gate if (error == 0 && rv == CRYPTO_SUCCESS) { 17957c478bd9Sstevel@tonic-gate (void) snprintf(buffer, sizeof (buffer), 17967c478bd9Sstevel@tonic-gate "op=CRYPTO_LOAD_DEV_DISABLED, module=%s," 17977c478bd9Sstevel@tonic-gate " dev_instance=%d", 17987c478bd9Sstevel@tonic-gate module_name, device_instance); 17997c478bd9Sstevel@tonic-gate mech_list_required = B_TRUE; 18007c478bd9Sstevel@tonic-gate } else { 18017c478bd9Sstevel@tonic-gate (void) snprintf(buffer, sizeof (buffer), 18027c478bd9Sstevel@tonic-gate "op=CRYPTO_LOAD_DEV_DISABLED, return_val=%d", rv); 18037c478bd9Sstevel@tonic-gate } 18047c478bd9Sstevel@tonic-gate break; 18057c478bd9Sstevel@tonic-gate 18067c478bd9Sstevel@tonic-gate case CRYPTO_LOAD_SOFT_DISABLED: 18077c478bd9Sstevel@tonic-gate if (error == 0 && rv == CRYPTO_SUCCESS) { 18087c478bd9Sstevel@tonic-gate (void) snprintf(buffer, sizeof (buffer), 18097c478bd9Sstevel@tonic-gate "op=CRYPTO_LOAD_SOFT_DISABLED, module=%s", 18107c478bd9Sstevel@tonic-gate module_name); 18117c478bd9Sstevel@tonic-gate mech_list_required = B_TRUE; 18127c478bd9Sstevel@tonic-gate } else { 18137c478bd9Sstevel@tonic-gate (void) snprintf(buffer, sizeof (buffer), 18147c478bd9Sstevel@tonic-gate "op=CRYPTO_LOAD_SOFT_DISABLED, return_val=%d", rv); 18157c478bd9Sstevel@tonic-gate } 18167c478bd9Sstevel@tonic-gate break; 18177c478bd9Sstevel@tonic-gate 18187c478bd9Sstevel@tonic-gate case CRYPTO_UNLOAD_SOFT_MODULE: 18197c478bd9Sstevel@tonic-gate if (error == 0 && rv == CRYPTO_SUCCESS) { 18207c478bd9Sstevel@tonic-gate (void) snprintf(buffer, sizeof (buffer), 18217c478bd9Sstevel@tonic-gate "op=CRYPTO_UNLOAD_SOFT_MODULE, module=%s", 18227c478bd9Sstevel@tonic-gate module_name); 18237c478bd9Sstevel@tonic-gate } else { 18247c478bd9Sstevel@tonic-gate (void) snprintf(buffer, sizeof (buffer), 18257c478bd9Sstevel@tonic-gate "op=CRYPTO_UNLOAD_SOFT_MODULE, return_val=%d", rv); 18267c478bd9Sstevel@tonic-gate } 18277c478bd9Sstevel@tonic-gate break; 18287c478bd9Sstevel@tonic-gate 18297c478bd9Sstevel@tonic-gate case CRYPTO_LOAD_SOFT_CONFIG: 18307c478bd9Sstevel@tonic-gate if (error == 0 && rv == CRYPTO_SUCCESS) { 18317c478bd9Sstevel@tonic-gate (void) snprintf(buffer, sizeof (buffer), 18327c478bd9Sstevel@tonic-gate "op=CRYPTO_LOAD_SOFT_CONFIG, module=%s", 18337c478bd9Sstevel@tonic-gate module_name); 18347c478bd9Sstevel@tonic-gate mech_list_required = B_TRUE; 18357c478bd9Sstevel@tonic-gate } else { 18367c478bd9Sstevel@tonic-gate (void) snprintf(buffer, sizeof (buffer), 18377c478bd9Sstevel@tonic-gate "op=CRYPTO_LOAD_SOFT_CONFIG, return_val=%d", rv); 18387c478bd9Sstevel@tonic-gate } 18397c478bd9Sstevel@tonic-gate break; 18407c478bd9Sstevel@tonic-gate 18417c478bd9Sstevel@tonic-gate case CRYPTO_POOL_CREATE: 18427c478bd9Sstevel@tonic-gate (void) snprintf(buffer, sizeof (buffer), 18437c478bd9Sstevel@tonic-gate "op=CRYPTO_POOL_CREATE"); 18447c478bd9Sstevel@tonic-gate break; 18457c478bd9Sstevel@tonic-gate 18467c478bd9Sstevel@tonic-gate case CRYPTO_POOL_WAIT: 18477c478bd9Sstevel@tonic-gate (void) snprintf(buffer, sizeof (buffer), "op=CRYPTO_POOL_WAIT"); 18487c478bd9Sstevel@tonic-gate break; 18497c478bd9Sstevel@tonic-gate 18507c478bd9Sstevel@tonic-gate case CRYPTO_POOL_RUN: 18517c478bd9Sstevel@tonic-gate (void) snprintf(buffer, sizeof (buffer), "op=CRYPTO_POOL_RUN"); 18527c478bd9Sstevel@tonic-gate break; 18537c478bd9Sstevel@tonic-gate 18547c478bd9Sstevel@tonic-gate case CRYPTO_LOAD_DOOR: 18557c478bd9Sstevel@tonic-gate if (error == 0 && rv == CRYPTO_SUCCESS) 18567c478bd9Sstevel@tonic-gate (void) snprintf(buffer, sizeof (buffer), 18577c478bd9Sstevel@tonic-gate "op=CRYPTO_LOAD_DOOR"); 18587c478bd9Sstevel@tonic-gate else 18597c478bd9Sstevel@tonic-gate (void) snprintf(buffer, sizeof (buffer), 18607c478bd9Sstevel@tonic-gate "op=CRYPTO_LOAD_DOOR, return_val=%d", rv); 18617c478bd9Sstevel@tonic-gate break; 18627c478bd9Sstevel@tonic-gate 186373556491SAnthony Scarpino case CRYPTO_FIPS140_SET: 186473556491SAnthony Scarpino (void) snprintf(buffer, sizeof (buffer), 186573556491SAnthony Scarpino "op=CRYPTO_FIPS140_SET, fips_state=%d", rv); 186673556491SAnthony Scarpino break; 186773556491SAnthony Scarpino 18687c478bd9Sstevel@tonic-gate default: 18697c478bd9Sstevel@tonic-gate return; 18707c478bd9Sstevel@tonic-gate } 18717c478bd9Sstevel@tonic-gate 18727c478bd9Sstevel@tonic-gate au_write((caddr_t *)&ad, au_to_text(buffer)); 18737c478bd9Sstevel@tonic-gate 18747c478bd9Sstevel@tonic-gate if (mech_list_required) { 18757c478bd9Sstevel@tonic-gate int i; 18767c478bd9Sstevel@tonic-gate 18777c478bd9Sstevel@tonic-gate if (mech_count == 0) { 18787c478bd9Sstevel@tonic-gate au_write((caddr_t *)&ad, au_to_text("mech=list empty")); 18797c478bd9Sstevel@tonic-gate } else { 18807c478bd9Sstevel@tonic-gate char *pb = buffer; 18817c478bd9Sstevel@tonic-gate size_t l = sizeof (buffer); 18827c478bd9Sstevel@tonic-gate size_t n; 18837c478bd9Sstevel@tonic-gate char space[2] = ":"; 18847c478bd9Sstevel@tonic-gate 18857c478bd9Sstevel@tonic-gate n = snprintf(pb, l, "mech="); 18867c478bd9Sstevel@tonic-gate 18877c478bd9Sstevel@tonic-gate for (i = 0; i < mech_count; i++) { 18887c478bd9Sstevel@tonic-gate pb += n; 18897c478bd9Sstevel@tonic-gate l -= n; 18907c478bd9Sstevel@tonic-gate if (l < 0) 18917c478bd9Sstevel@tonic-gate l = 0; 18927c478bd9Sstevel@tonic-gate 18937c478bd9Sstevel@tonic-gate if (i == mech_count - 1) 18947c478bd9Sstevel@tonic-gate (void) strcpy(space, ""); 18957c478bd9Sstevel@tonic-gate 18967c478bd9Sstevel@tonic-gate n = snprintf(pb, l, "%s%s", mech_names[i], 18977c478bd9Sstevel@tonic-gate space); 18987c478bd9Sstevel@tonic-gate } 18997c478bd9Sstevel@tonic-gate au_write((caddr_t *)&ad, au_to_text(buffer)); 19007c478bd9Sstevel@tonic-gate } 19017c478bd9Sstevel@tonic-gate } 19027c478bd9Sstevel@tonic-gate 19037c478bd9Sstevel@tonic-gate /* add a return token */ 19047c478bd9Sstevel@tonic-gate if (error || (rv != CRYPTO_SUCCESS)) 19057c478bd9Sstevel@tonic-gate add_return_token((caddr_t *)&ad, tad->tad_scid, -1, error); 19067c478bd9Sstevel@tonic-gate else 19077c478bd9Sstevel@tonic-gate add_return_token((caddr_t *)&ad, tad->tad_scid, 0, rv); 19087c478bd9Sstevel@tonic-gate 19097c478bd9Sstevel@tonic-gate AS_INC(as_generated, 1, kctx); 19107c478bd9Sstevel@tonic-gate AS_INC(as_kernel, 1, kctx); 19117c478bd9Sstevel@tonic-gate 1912005d3febSMarek Pospisil au_close(kctx, (caddr_t *)&ad, AU_OK, AUE_CRYPTOADM, tad->tad_evmod, 1913005d3febSMarek Pospisil NULL); 19147c478bd9Sstevel@tonic-gate } 1915c28749e9Skais 1916c28749e9Skais /* 1917c28749e9Skais * Audit the kernel SSL administration command. The address and the 1918c28749e9Skais * port number for the SSL instance, and the proxy port are put in the 1919c28749e9Skais * audit trail. 1920c28749e9Skais */ 1921c28749e9Skais void 1922c28749e9Skais audit_kssl(int cmd, void *params, int error) 1923c28749e9Skais { 1924c28749e9Skais cred_t *cr = CRED(); 1925c28749e9Skais t_audit_data_t *tad; 1926c28749e9Skais token_t *ad = NULL; 1927c28749e9Skais const auditinfo_addr_t *ainfo = crgetauinfo(cr); 19289e9e6ab8Spaulson au_kcontext_t *kctx = GET_KCTX_PZ; 1929c28749e9Skais 1930c28749e9Skais tad = U2A(u); 1931c28749e9Skais 1932c28749e9Skais if (ainfo == NULL) 1933c28749e9Skais return; 1934c28749e9Skais 1935c28749e9Skais tad->tad_event = AUE_CONFIGKSSL; 1936c28749e9Skais 1937799bd290Spwernau if (audit_success(kctx, tad, error, NULL) != AU_OK) 1938c28749e9Skais return; 1939c28749e9Skais 194081490fd2Sgww /* Add subject information */ 194181490fd2Sgww AUDIT_SETSUBJ((caddr_t *)&ad, cr, ainfo, kctx); 194245916cd2Sjpk 1943c28749e9Skais switch (cmd) { 1944c28749e9Skais case KSSL_ADD_ENTRY: { 1945c28749e9Skais char buf[32]; 1946c28749e9Skais kssl_params_t *kp = (kssl_params_t *)params; 19472ec7cc7fSKrishna Yenduri struct sockaddr_in6 *saddr = &kp->kssl_addr; 1948c28749e9Skais 1949c28749e9Skais au_write((caddr_t *)&ad, au_to_text("op=KSSL_ADD_ENTRY")); 19502ec7cc7fSKrishna Yenduri au_write((caddr_t *)&ad, 19512ec7cc7fSKrishna Yenduri au_to_in_addr_ex((int32_t *)&saddr->sin6_addr)); 1952c28749e9Skais (void) snprintf(buf, sizeof (buf), "SSL port=%d", 19532ec7cc7fSKrishna Yenduri saddr->sin6_port); 1954c28749e9Skais au_write((caddr_t *)&ad, au_to_text(buf)); 1955c28749e9Skais 1956c28749e9Skais (void) snprintf(buf, sizeof (buf), "proxy port=%d", 1957c28749e9Skais kp->kssl_proxy_port); 1958c28749e9Skais au_write((caddr_t *)&ad, au_to_text(buf)); 1959c28749e9Skais break; 1960c28749e9Skais } 1961c28749e9Skais 1962c28749e9Skais case KSSL_DELETE_ENTRY: { 1963c28749e9Skais char buf[32]; 19642ec7cc7fSKrishna Yenduri struct sockaddr_in6 *saddr = (struct sockaddr_in6 *)params; 1965c28749e9Skais 1966c28749e9Skais au_write((caddr_t *)&ad, au_to_text("op=KSSL_DELETE_ENTRY")); 19672ec7cc7fSKrishna Yenduri au_write((caddr_t *)&ad, 19682ec7cc7fSKrishna Yenduri au_to_in_addr_ex((int32_t *)&saddr->sin6_addr)); 1969c28749e9Skais (void) snprintf(buf, sizeof (buf), "SSL port=%d", 19702ec7cc7fSKrishna Yenduri saddr->sin6_port); 1971c28749e9Skais au_write((caddr_t *)&ad, au_to_text(buf)); 1972c28749e9Skais break; 1973c28749e9Skais } 1974c28749e9Skais 1975c28749e9Skais default: 1976c28749e9Skais return; 1977c28749e9Skais } 1978c28749e9Skais 1979c28749e9Skais /* add a return token */ 1980c28749e9Skais add_return_token((caddr_t *)&ad, tad->tad_scid, error, 0); 1981c28749e9Skais 1982c28749e9Skais AS_INC(as_generated, 1, kctx); 1983c28749e9Skais AS_INC(as_kernel, 1, kctx); 1984c28749e9Skais 1985005d3febSMarek Pospisil au_close(kctx, (caddr_t *)&ad, AU_OK, AUE_CONFIGKSSL, tad->tad_evmod, 1986005d3febSMarek Pospisil NULL); 1987c28749e9Skais } 198845916cd2Sjpk 198945916cd2Sjpk /* 1990799bd290Spwernau * Audit the kernel PF_POLICY administration commands. Record command, 1991799bd290Spwernau * zone, policy type (global or tunnel, active or inactive) 1992799bd290Spwernau */ 1993799bd290Spwernau /* 1994799bd290Spwernau * ROUTINE: AUDIT_PF_POLICY 1995799bd290Spwernau * PURPOSE: Records arguments to administrative ioctls on PF_POLICY socket 1996799bd290Spwernau * CALLBY: SPD_ADDRULE, SPD_DELETERULE, SPD_FLUSH, SPD_UPDATEALGS, 1997799bd290Spwernau * SPD_CLONE, SPD_FLIP 1998799bd290Spwernau * NOTE: 1999799bd290Spwernau * TODO: 2000799bd290Spwernau * QUESTION: 2001799bd290Spwernau */ 2002799bd290Spwernau 2003799bd290Spwernau void 2004799bd290Spwernau audit_pf_policy(int cmd, cred_t *cred, netstack_t *ns, char *tun, 2005799bd290Spwernau boolean_t active, int error, pid_t pid) 2006799bd290Spwernau { 2007799bd290Spwernau const auditinfo_addr_t *ainfo; 2008799bd290Spwernau t_audit_data_t *tad; 2009799bd290Spwernau token_t *ad = NULL; 2010799bd290Spwernau au_kcontext_t *kctx = GET_KCTX_PZ; 2011799bd290Spwernau char buf[80]; 2012799bd290Spwernau int flag; 2013799bd290Spwernau 2014799bd290Spwernau tad = U2A(u); 2015799bd290Spwernau if (tad == NULL) 2016799bd290Spwernau return; 2017799bd290Spwernau 2018799bd290Spwernau ainfo = crgetauinfo((cred != NULL) ? cred : CRED()); 2019799bd290Spwernau if (ainfo == NULL) 2020799bd290Spwernau return; 2021799bd290Spwernau 2022799bd290Spwernau /* 2023799bd290Spwernau * Initialize some variables since these are only set 2024799bd290Spwernau * with system calls. 2025799bd290Spwernau */ 2026799bd290Spwernau 2027799bd290Spwernau switch (cmd) { 2028799bd290Spwernau case SPD_ADDRULE: { 2029799bd290Spwernau tad->tad_event = AUE_PF_POLICY_ADDRULE; 2030799bd290Spwernau break; 2031799bd290Spwernau } 2032799bd290Spwernau 2033799bd290Spwernau case SPD_DELETERULE: { 2034799bd290Spwernau tad->tad_event = AUE_PF_POLICY_DELRULE; 2035799bd290Spwernau break; 2036799bd290Spwernau } 2037799bd290Spwernau 2038799bd290Spwernau case SPD_FLUSH: { 2039799bd290Spwernau tad->tad_event = AUE_PF_POLICY_FLUSH; 2040799bd290Spwernau break; 2041799bd290Spwernau } 2042799bd290Spwernau 2043799bd290Spwernau case SPD_UPDATEALGS: { 2044799bd290Spwernau tad->tad_event = AUE_PF_POLICY_ALGS; 2045799bd290Spwernau break; 2046799bd290Spwernau } 2047799bd290Spwernau 2048799bd290Spwernau case SPD_CLONE: { 2049799bd290Spwernau tad->tad_event = AUE_PF_POLICY_CLONE; 2050799bd290Spwernau break; 2051799bd290Spwernau } 2052799bd290Spwernau 2053799bd290Spwernau case SPD_FLIP: { 2054799bd290Spwernau tad->tad_event = AUE_PF_POLICY_FLIP; 2055799bd290Spwernau break; 2056799bd290Spwernau } 2057799bd290Spwernau 2058799bd290Spwernau default: 2059799bd290Spwernau tad->tad_event = AUE_NULL; 2060799bd290Spwernau } 2061799bd290Spwernau 2062799bd290Spwernau tad->tad_evmod = 0; 2063799bd290Spwernau 2064799bd290Spwernau if (flag = audit_success(kctx, tad, error, cred)) { 2065799bd290Spwernau zone_t *nszone; 2066799bd290Spwernau 2067799bd290Spwernau /* 2068799bd290Spwernau * For now, just audit that an event happened, 2069799bd290Spwernau * along with the error code. 2070799bd290Spwernau */ 2071799bd290Spwernau au_write((caddr_t *)&ad, 2072799bd290Spwernau au_to_arg32(1, "Policy Active?", (uint32_t)active)); 2073799bd290Spwernau au_write((caddr_t *)&ad, 2074799bd290Spwernau au_to_arg32(2, "Policy Global?", (uint32_t)(tun == NULL))); 2075799bd290Spwernau 2076799bd290Spwernau /* Supplemental data */ 2077799bd290Spwernau 2078799bd290Spwernau /* 2079799bd290Spwernau * Generate this zone token if the target zone differs 2080799bd290Spwernau * from the administrative zone. If netstacks are expanded 2081799bd290Spwernau * to something other than a 1-1 relationship with zones, 2082799bd290Spwernau * the auditing framework should create a new token type 2083799bd290Spwernau * and audit it as a netstack instead. 2084799bd290Spwernau * Turn on general zone auditing to get the administrative zone. 2085799bd290Spwernau */ 2086799bd290Spwernau 2087799bd290Spwernau nszone = zone_find_by_id(netstackid_to_zoneid( 2088799bd290Spwernau ns->netstack_stackid)); 2089875a4abcSPaul Wernau if (nszone != NULL) { 209067dbe2beSCasper H.S. Dik if (strncmp(crgetzone(cred)->zone_name, 209167dbe2beSCasper H.S. Dik nszone->zone_name, ZONENAME_MAX) != 0) { 2092799bd290Spwernau token_t *ztoken; 2093799bd290Spwernau 2094799bd290Spwernau ztoken = au_to_zonename(0, nszone); 2095799bd290Spwernau au_write((caddr_t *)&ad, ztoken); 2096799bd290Spwernau } 2097875a4abcSPaul Wernau zone_rele(nszone); 2098875a4abcSPaul Wernau } 2099799bd290Spwernau 2100799bd290Spwernau if (tun != NULL) { 2101799bd290Spwernau /* write tunnel name - tun is bounded */ 2102799bd290Spwernau (void) snprintf(buf, sizeof (buf), "tunnel_name:%s", 2103799bd290Spwernau tun); 2104799bd290Spwernau au_write((caddr_t *)&ad, au_to_text(buf)); 2105799bd290Spwernau } 2106799bd290Spwernau 2107799bd290Spwernau /* Add subject information */ 2108799bd290Spwernau AUDIT_SETSUBJ_GENERIC((caddr_t *)&ad, 2109799bd290Spwernau ((cred != NULL) ? cred : CRED()), ainfo, kctx, pid); 2110799bd290Spwernau 2111799bd290Spwernau /* add a return token */ 2112799bd290Spwernau add_return_token((caddr_t *)&ad, 0, error, 0); 2113799bd290Spwernau 2114799bd290Spwernau AS_INC(as_generated, 1, kctx); 2115799bd290Spwernau AS_INC(as_kernel, 1, kctx); 2116799bd290Spwernau 2117799bd290Spwernau } 2118005d3febSMarek Pospisil au_close(kctx, (caddr_t *)&ad, flag, tad->tad_event, tad->tad_evmod, 2119005d3febSMarek Pospisil NULL); 2120799bd290Spwernau 2121799bd290Spwernau /* 2122799bd290Spwernau * clear the ctrl flag so that we don't have spurious collection of 2123799bd290Spwernau * audit information. 2124799bd290Spwernau */ 2125799bd290Spwernau tad->tad_scid = 0; 2126799bd290Spwernau tad->tad_event = 0; 2127799bd290Spwernau tad->tad_evmod = 0; 2128799bd290Spwernau tad->tad_ctrl = 0; 2129799bd290Spwernau } 2130799bd290Spwernau 2131799bd290Spwernau /* 213245916cd2Sjpk * ROUTINE: AUDIT_SEC_ATTRIBUTES 213345916cd2Sjpk * PURPOSE: Add security attributes 213445916cd2Sjpk * CALLBY: AUDIT_ATTRIBUTES 213545916cd2Sjpk * AUDIT_CLOSEF 213645916cd2Sjpk * AUS_CLOSE 213745916cd2Sjpk * NOTE: 213845916cd2Sjpk * TODO: 213945916cd2Sjpk * QUESTION: 214045916cd2Sjpk */ 214145916cd2Sjpk 214245916cd2Sjpk void 214345916cd2Sjpk audit_sec_attributes(caddr_t *ad, struct vnode *vp) 214445916cd2Sjpk { 214545916cd2Sjpk /* Dump the SL */ 214645916cd2Sjpk if (is_system_labeled()) { 214745916cd2Sjpk ts_label_t *tsl; 214845916cd2Sjpk bslabel_t *bsl; 214945916cd2Sjpk 215045916cd2Sjpk tsl = getflabel(vp); 215145916cd2Sjpk if (tsl == NULL) 215245916cd2Sjpk return; /* nothing else to do */ 215345916cd2Sjpk 215445916cd2Sjpk bsl = label2bslabel(tsl); 215545916cd2Sjpk if (bsl == NULL) 215645916cd2Sjpk return; /* nothing else to do */ 215745916cd2Sjpk au_write(ad, au_to_label(bsl)); 215845916cd2Sjpk label_rele(tsl); 215945916cd2Sjpk } 216045916cd2Sjpk 216145916cd2Sjpk } /* AUDIT_SEC_ATTRIBUTES */ 2162