1 /* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License (the "License"). 6 * You may not use this file except in compliance with the License. 7 * 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9 * or http://www.opensolaris.org/os/licensing. 10 * See the License for the specific language governing permissions 11 * and limitations under the License. 12 * 13 * When distributing Covered Code, include this CDDL HEADER in each 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15 * If applicable, add the following below this CDDL HEADER, with the 16 * fields enclosed by brackets "[]" replaced with your own identifying 17 * information: Portions Copyright [yyyy] [name of copyright owner] 18 * 19 * CDDL HEADER END 20 */ 21 22 /* 23 * Copyright 2009 Sun Microsystems, Inc. All rights reserved. 24 * Use is subject to license terms. 25 */ 26 27 /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */ 28 /* All Rights Reserved */ 29 30 /* 31 * Copyright (c) 2013, Joyent, Inc. All rights reserved. 32 * Copyright 2020 OmniOS Community Edition (OmniOSce) Association. 33 */ 34 35 #ifndef _SYS_PRSYSTM_H 36 #define _SYS_PRSYSTM_H 37 38 #include <sys/isa_defs.h> 39 #include <sys/zone.h> 40 41 #ifdef __cplusplus 42 extern "C" { 43 #endif 44 45 #if defined(_KERNEL) 46 47 extern kmutex_t pr_pidlock; 48 extern kcondvar_t *pr_pid_cv; 49 50 struct prfpregset; 51 struct pstatus; 52 struct lwpstatus; 53 struct psinfo; 54 struct lwpsinfo; 55 struct prcred; 56 struct prpriv; 57 struct prsecflags; 58 struct prfdinfo; 59 60 struct seg; 61 struct regs; 62 struct watched_page; 63 64 /* 65 * These are functions in the procfs module that are 66 * called from the kernel proper and from other modules. 67 */ 68 extern uint_t pr_getprot(struct seg *, int, void **, 69 caddr_t *, caddr_t *, caddr_t); 70 extern void pr_getprot_done(void **); 71 extern size_t pr_getsegsize(struct seg *, int); 72 extern int pr_isobject(struct vnode *); 73 extern int pr_isself(struct vnode *); 74 extern void prinvalidate(struct user *); 75 extern void prgetstatus(proc_t *, struct pstatus *, zone_t *); 76 extern void prgetlwpstatus(kthread_t *, struct lwpstatus *, zone_t *); 77 extern void prgetpsinfo(proc_t *, struct psinfo *); 78 extern void prgetlwpsinfo(kthread_t *, struct lwpsinfo *); 79 extern void prgetprfpregs(klwp_t *, struct prfpregset *); 80 extern void prgetprxregs(klwp_t *, caddr_t); 81 extern int prgetprxregsize(proc_t *); 82 extern void prgetcred(proc_t *, struct prcred *); 83 extern void prgetpriv(proc_t *, struct prpriv *); 84 extern size_t prgetprivsize(void); 85 extern void prgetsecflags(proc_t *, struct prsecflags *); 86 extern int prnsegs(struct as *, int); 87 extern u_offset_t prgetfdinfosize(proc_t *, vnode_t *, cred_t *); 88 extern int prgetfdinfo(proc_t *, vnode_t *, struct prfdinfo *, cred_t *, 89 cred_t *, list_t *); 90 extern void prexit(proc_t *); 91 extern void prfree(proc_t *); 92 extern void prlwpexit(kthread_t *); 93 extern void prlwpfree(proc_t *, lwpent_t *); 94 extern void prexecstart(void); 95 extern void prexecend(void); 96 extern void prrelvm(void); 97 extern void prbarrier(proc_t *); 98 extern void prstop(int, int); 99 extern void prunstop(void); 100 extern void prnotify(struct vnode *); 101 extern void prstep(klwp_t *, int); 102 extern void prnostep(klwp_t *); 103 extern void prdostep(void); 104 extern int prundostep(void); 105 extern int prhasfp(void); 106 extern int prhasx(proc_t *); 107 extern caddr_t prmapin(struct as *, caddr_t, int); 108 extern void prmapout(struct as *, caddr_t, caddr_t, int); 109 extern int pr_watch_emul(struct regs *, caddr_t, enum seg_rw); 110 extern void pr_free_watched_pages(proc_t *); 111 extern int pr_allstopped(proc_t *, int); 112 #if defined(__sparc) 113 struct _gwindows; 114 extern int prnwindows(klwp_t *); 115 extern void prgetwindows(klwp_t *, struct _gwindows *); 116 #if defined(__sparcv9) /* 32-bit adb macros should not see these defs */ 117 extern void prgetasregs(klwp_t *, asrset_t); 118 extern void prsetasregs(klwp_t *, asrset_t); 119 #endif /* __sparcv9 */ 120 #endif /* __sparc */ 121 #if defined(__x86) 122 struct ssd; 123 extern int prnldt(proc_t *); 124 extern void prgetldt(proc_t *, struct ssd *); 125 #endif /* __x86 */ 126 127 #ifdef _SYSCALL32_IMPL 128 struct prfpregset32; 129 struct pstatus32; 130 struct lwpstatus32; 131 struct psinfo32; 132 struct lwpsinfo32; 133 extern void prgetstatus32(proc_t *, struct pstatus32 *, zone_t *); 134 extern void prgetlwpstatus32(kthread_t *, struct lwpstatus32 *, zone_t *); 135 extern void prgetpsinfo32(proc_t *, struct psinfo32 *); 136 extern void prgetlwpsinfo32(kthread_t *, struct lwpsinfo32 *); 137 extern void lwpsinfo_kto32(const struct lwpsinfo *src, struct lwpsinfo32 *dest); 138 extern void psinfo_kto32(const struct psinfo *src, struct psinfo32 *dest); 139 extern void prgetprfpregs32(klwp_t *, struct prfpregset32 *); 140 #if defined(__sparc) 141 struct gwindows32; 142 void prgetwindows32(klwp_t *, struct gwindows32 *); 143 #endif /* __sparc */ 144 #endif /* _SYSCALL32_IMPL */ 145 146 #endif /* defined (_KERNEL) */ 147 148 #ifdef __cplusplus 149 } 150 #endif 151 152 #endif /* _SYS_PRSYSTM_H */ 153