xref: /freebsd/sys/sys/user.h (revision 2357939bc239bd5334a169b62313806178dd8f30)
1 /*
2  * Copyright (c) 1982, 1986, 1989, 1991, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 4. Neither the name of the University nor the names of its contributors
14  *    may be used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  *	@(#)user.h	8.2 (Berkeley) 9/23/93
30  * $FreeBSD$
31  */
32 
33 #ifndef _SYS_USER_H_
34 #define _SYS_USER_H_
35 
36 #include <machine/pcb.h>
37 #ifndef _KERNEL
38 /* stuff that *used* to be included by user.h, or is now needed */
39 #include <sys/errno.h>
40 #include <sys/time.h>
41 #include <sys/resource.h>
42 #include <sys/ucred.h>
43 #include <sys/uio.h>
44 #include <sys/queue.h>
45 #include <sys/_lock.h>
46 #include <sys/_mutex.h>
47 #include <sys/proc.h>
48 #include <vm/vm.h>		/* XXX */
49 #include <vm/vm_param.h>	/* XXX */
50 #include <vm/pmap.h>		/* XXX */
51 #include <vm/vm_map.h>		/* XXX */
52 #endif /* !_KERNEL */
53 #ifndef _SYS_RESOURCEVAR_H_
54 #include <sys/resourcevar.h>
55 #endif
56 #ifndef _SYS_SIGNALVAR_H_
57 #include <sys/signalvar.h>
58 #endif
59 
60 /*
61  * KERN_PROC subtype ops return arrays of selected proc structure entries:
62  *
63  * When adding new fields to this structure, ALWAYS add them at the end
64  * and decrease the size of the spare field by the amount of space that
65  * you are adding.  Byte aligned data should be added to the ki_sparestring
66  * space; other entries should be added to the ki_spare space. Always
67  * verify that sizeof(struct kinfo_proc) == KINFO_PROC_SIZE when you are
68  * done. If you change the size of this structure, many programs will stop
69  * working! Once you have added the new field, you will need to add code
70  * to initialize it in two places: kern/kern_proc.c in the function
71  * fill_kinfo_proc and in lib/libkvm/kvm_proc.c in the function kvm_proclist.
72  */
73 #if defined(__alpha__) || defined(__ia64__) || defined(__sparc64__) || \
74     defined(__amd64__)
75 #define	KINFO_PROC_SIZE	912		/* the correct size for kinfo_proc */
76 #endif
77 #if	__i386__ || defined __arm__
78 #define	KINFO_PROC_SIZE	648		/* the correct size for kinfo_proc */
79 #endif
80 #ifdef  __powerpc__
81 #define	KINFO_PROC_SIZE	656
82 #endif
83 #ifndef	KINFO_PROC_SIZE
84 #error	"Unknown architecture"
85 #endif
86 #define	WMESGLEN	8		/* size of returned wchan message */
87 #define	LOCKNAMELEN	8		/* size of returned lock name */
88 #define	OCOMMLEN	16		/* size of returned ki_ocomm name */
89 #define	COMMLEN		19		/* size of returned ki_comm name */
90 #define	KI_NGROUPS	16		/* number of groups in ki_groups */
91 #define	LOGNAMELEN	17		/* size of returned ki_login */
92 
93 struct kinfo_proc {
94 	int	ki_structsize;		/* size of this structure */
95 	int	ki_layout;		/* reserved: layout identifier */
96 	struct	pargs *ki_args;		/* address of command arguments */
97 	struct	proc *ki_paddr;		/* address of proc */
98 	struct	user *ki_addr;		/* kernel virtual addr of u-area */
99 	struct	vnode *ki_tracep;	/* pointer to trace file */
100 	struct	vnode *ki_textvp;	/* pointer to executable file */
101 	struct	filedesc *ki_fd;	/* pointer to open file info */
102 	struct	vmspace *ki_vmspace;	/* pointer to kernel vmspace struct */
103 	void	*ki_wchan;		/* sleep address */
104 	pid_t	ki_pid;			/* Process identifier */
105 	pid_t	ki_ppid;		/* parent process id */
106 	pid_t	ki_pgid;		/* process group id */
107 	pid_t	ki_tpgid;		/* tty process group id */
108 	pid_t	ki_sid;			/* Process session ID */
109 	pid_t	ki_tsid;		/* Terminal session ID */
110 	short	ki_jobc;		/* job control counter */
111 	udev_t	ki_tdev;		/* controlling tty dev */
112 	sigset_t ki_siglist;		/* Signals arrived but not delivered */
113 	sigset_t ki_sigmask;		/* Current signal mask */
114 	sigset_t ki_sigignore;		/* Signals being ignored */
115 	sigset_t ki_sigcatch;		/* Signals being caught by user */
116 	uid_t	ki_uid;			/* effective user id */
117 	uid_t	ki_ruid;		/* Real user id */
118 	uid_t	ki_svuid;		/* Saved effective user id */
119 	gid_t	ki_rgid;		/* Real group id */
120 	gid_t	ki_svgid;		/* Saved effective group id */
121 	short	ki_ngroups;		/* number of groups */
122 	gid_t	ki_groups[KI_NGROUPS];	/* groups */
123 	vm_size_t ki_size;		/* virtual size */
124 	segsz_t ki_rssize;		/* current resident set size in pages */
125 	segsz_t ki_swrss;		/* resident set size before last swap */
126 	segsz_t ki_tsize;		/* text size (pages) XXX */
127 	segsz_t ki_dsize;		/* data size (pages) XXX */
128 	segsz_t ki_ssize;		/* stack size (pages) */
129 	u_short	ki_xstat;		/* Exit status for wait & stop signal */
130 	u_short	ki_acflag;		/* Accounting flags */
131 	fixpt_t	ki_pctcpu;	 	/* %cpu for process during ki_swtime */
132 	u_int	ki_estcpu;	 	/* Time averaged value of ki_cpticks */
133 	u_int	ki_slptime;	 	/* Time since last blocked */
134 	u_int	ki_swtime;	 	/* Time swapped in or out */
135 	u_int64_t ki_runtime;		/* Real time in microsec */
136 	struct	timeval ki_start;	/* starting time */
137 	struct	timeval ki_childtime;	/* time used by process children */
138 	long	ki_flag;		/* P_* flags */
139 	long	ki_kiflag;		/* KI_* flags (below) */
140 	int	ki_traceflag;		/* Kernel trace points */
141 	char	ki_stat;		/* S* process status */
142 	signed char ki_nice;		/* Process "nice" value */
143 	char	ki_lock;		/* Process lock (prevent swap) count */
144 	char	ki_rqindex;		/* Run queue index */
145 	u_char	ki_oncpu;		/* Which cpu we are on */
146 	u_char	ki_lastcpu;		/* Last cpu we were on */
147 	char	ki_ocomm[OCOMMLEN+1];	/* command name */
148 	char	ki_wmesg[WMESGLEN+1];	/* wchan message */
149 	char	ki_login[LOGNAMELEN+1];	/* setlogin name */
150 	char	ki_lockname[LOCKNAMELEN+1]; /* lock name */
151 	char	ki_comm[COMMLEN+1];	/* command name */
152 	char	ki_sparestrings[85];	/* spare string space */
153 	struct	rusage ki_rusage;	/* process rusage statistics */
154 	long	ki_sflag;		/* PS_* flags */
155 	struct	priority ki_pri;	/* process priority */
156 	long	ki_tdflags;		/* XXXKSE kthread flag */
157 	struct	pcb *ki_pcb;		/* kernel virtual addr of pcb */
158 	void	*ki_kstack;		/* kernel virtual addr of stack */
159 	long	ki_spare[22];		/* spare constants */
160 };
161 void fill_kinfo_proc(struct proc *, struct kinfo_proc *);
162 
163 /* ki_sessflag values */
164 #define	KI_CTTY		0x00000001	/* controlling tty vnode active */
165 #define	KI_SLEADER	0x00000002	/* session leader */
166 #define	KI_LOCKBLOCK	0x00000004	/* proc blocked on lock ki_lockname */
167 
168 /*
169  * Per process structure containing data that isn't needed in core
170  * when the process isn't running (esp. when swapped out).
171  */
172 struct user {
173 	struct	pstats u_stats;		/* *p_stats */
174 	/*
175 	 * Remaining field for a.out core dumps - not valid at other times!
176 	 */
177 	struct	kinfo_proc u_kproc;	/* eproc */
178 };
179 
180 #endif
181