/* * Copyright (c) 1982, 1986, 1989 Regents of the University of California. * All rights reserved. The Berkeley software License Agreement * specifies the terms and conditions for redistribution. * * @(#)proc.h 7.23 (Berkeley) 01/10/91 */ /* * One structure allocated per session. */ struct session { int s_count; /* ref cnt; pgrps in session */ struct proc *s_leader; /* session leader */ struct vnode *s_ttyvp; /* vnode of controlling terminal */ struct tty *s_ttyp; /* controlling terminal */ }; /* * One structure allocated per process group. */ struct pgrp { struct pgrp *pg_hforw; /* forward link in hash bucket */ struct proc *pg_mem; /* pointer to pgrp members */ struct session *pg_session; /* pointer to session */ pid_t pg_id; /* pgrp id */ int pg_jobc; /* # procs qualifying pgrp for job control */ }; /* * One structure allocated per active * process. It contains all data needed * about the process while the * process may be swapped out. * Other per process data (user.h) * is swapped with the process. */ struct proc { struct proc *p_link; /* linked list of running processes */ struct proc *p_rlink; struct proc *p_nxt; /* linked list of allocated proc slots */ struct proc **p_prev; /* also zombies, and free proc's */ caddr_t p_addr; /* kernel virtual address of u-area */ char p_usrpri; /* user-priority based on p_cpu and p_nice */ char p_pri; /* priority, negative is high */ char p_cpu; /* cpu usage for scheduling */ char p_stat; char p_time; /* resident time for scheduling */ char p_nice; /* nice for cpu usage */ char p_slptime; /* time since last block */ char p_dupfd; /* sideways return value from fdopen XXX */ int p_sig; /* signals pending to this process */ int p_sigmask; /* current signal mask */ int p_sigignore; /* signals being ignored */ int p_sigcatch; /* signals being caught by user */ int p_flag; uid_t p_uid; /* effective user id */ uid_t p_ruid; /* real user id */ uid_t p_svuid; /* saved effective user id */ gid_t p_rgid; /* real group id */ gid_t p_svgid; /* saved effective group id */ pid_t p_pid; /* unique process id */ pid_t p_ppid; /* process id of parent */ u_short p_xstat; /* Exit status for wait; also stop signal */ struct rusage *p_ru; /* exit information */ struct vm_map *p_map; /* VM address map */ caddr_t p_shm; /* SYS5 shared memory private data */ int p_thread; /* id for this "thread" (Mach glue) XXX */ struct filedesc *p_fd; /* ptr to open files structure */ int p_pad1; segsz_t p_rssize; /* current resident set size in clicks */ segsz_t p_maxrss; /* copy of u.u_limit[MAXRSS] */ segsz_t p_swrss; /* resident set size before last swap */ swblk_t p_swaddr; /* disk address of u area when swapped */ caddr_t p_wchan; /* event process is awaiting */ int pad2[3]; int p_cpticks; /* ticks of cpu time */ fixpt_t p_pctcpu; /* %cpu for this process during p_time */ short p_ndx; /* proc index for memall (because of vfork) */ struct proc *p_hash; /* hashed based on p_pid for kill+exit+... */ struct proc *p_pptr; /* pointer to process structure of parent */ struct proc *p_cptr; /* pointer to youngest living child */ struct proc *p_osptr; /* pointer to older sibling processes */ struct proc *p_ysptr; /* pointer to younger siblings */ struct pgrp *p_pgrp; /* pointer to process group */ #define p_session p_pgrp->pg_session #define p_pgid p_pgrp->pg_id struct proc *p_pgrpnxt; /* pointer to next process in process group */ struct itimerval p_realtimer; int p_traceflag; /* kernel trace points */ struct vnode *p_tracep;/* trace to vnode */ char p_comm[MAXCOMLEN+1]; char p_logname[MAXLOGNAME]; char *p_wmesg; struct timeval p_utime; /* user time */ struct timeval p_stime; /* system time */ #if defined(tahoe) int p_ckey; /* code cache key */ int p_dkey; /* data cache key */ #endif }; /* * proc ops return arrays of augmented proc structures */ struct kinfo_proc { struct proc kp_proc; /* proc structure */ struct eproc { struct proc *e_paddr; /* address of proc */ struct session *e_sess; /* session pointer */ pid_t e_pgid; /* process group id */ short e_jobc; /* job control counter */ dev_t e_tdev; /* controlling tty dev */ pid_t e_tpgid; /* tty process group id */ struct session *e_tsess; /* tty session pointer */ #define WMESGLEN 7 char e_wmesg[WMESGLEN+1]; /* wchan message */ segsz_t e_xsize; /* text size */ short e_xrssize; /* text rss */ short e_xccount; /* text references */ short e_xswrss; long e_flag; #define EPROC_CTTY 0x01 /* controlling tty vnode active */ #define EPROC_SLEADER 0x02 /* session leader */ long e_spare[7]; } kp_eproc; }; #ifdef KERNEL /* * We use process IDs <= PID_MAX; * PID_MAX + 1 must also fit in a pid_t * (used to represent "no process group"). */ #define PID_MAX 30000 #define NO_PID 30001 #define PIDHASH(pid) ((pid) & pidhashmask) extern int pidhashmask; /* in param.c */ extern struct proc *pidhash[]; /* in param.c */ struct proc *pfind(); /* find process by id */ extern struct pgrp *pgrphash[]; /* in param.c */ struct pgrp *pgfind(); /* find process group by id */ struct proc *proc, *procNPROC; /* the proc table itself */ struct proc *freeproc, *zombproc, *allproc; /* lists of procs in various states */ int nproc; #define NQS 32 /* 32 run queues */ struct prochd { struct proc *ph_link; /* linked list of running processes */ struct proc *ph_rlink; } qs[NQS]; int whichqs; /* bit mask summarizing non-empty qs's */ #define SESS_LEADER(p) ((p)->p_session->s_leader == (p)) #define SESSHOLD(s) ((s)->s_count++) #define SESSRELE(s) { \ if (--(s)->s_count == 0) \ FREE(s, M_SESSION); \ } #endif /* stat codes */ #define SSLEEP 1 /* awaiting an event */ #define SWAIT 2 /* (abandoned state) */ #define SRUN 3 /* running */ #define SIDL 4 /* intermediate state in process creation */ #define SZOMB 5 /* intermediate state in process termination */ #define SSTOP 6 /* process being traced */ /* flag codes */ #define SLOAD 0x0000001 /* in core */ #define SSYS 0x0000002 /* swapper or pager process */ #define SLOCK 0x0000004 /* process being swapped out */ #define SSWAP 0x0000008 /* save area flag */ #define STRC 0x0000010 /* process is being traced */ #define SWTED 0x0000020 /* another tracing flag */ #define SSINTR 0x0000040 /* sleep is interruptible */ #define SPAGE 0x0000080 /* process in page wait state */ #define SKEEP 0x0000100 /* another flag to prevent swap out */ #define SOMASK 0x0000200 /* restore old mask after taking signal */ #define SWEXIT 0x0000400 /* working on exiting */ #define SPHYSIO 0x0000800 /* doing physical i/o */ #define SVFORK 0x0001000 /* process resulted from vfork() */ #define SVFDONE 0x0002000 /* another vfork flag */ #define SNOVM 0x0004000 /* no vm, parent in a vfork() */ #define SPAGV 0x0008000 /* init data space on demand, from vnode */ #define SSEQL 0x0010000 /* user warned of sequential vm behavior */ #define SUANOM 0x0020000 /* user warned of random vm behavior */ #define STIMO 0x0040000 /* timing out during sleep */ #define SNOCLDSTOP 0x0080000 /* no SIGCHLD when children stop */ #define SCTTY 0x0100000 /* has a controlling terminal */ #define SOWEUPC 0x0200000 /* owe process an addupc() call at next ast */ #define SSEL 0x0400000 /* selecting; wakeup/waiting danger */ #define SEXEC 0x0800000 /* process called exec */ #define SHPUX 0x1000000 /* HP-UX process (HPUXCOMPAT) */ #define SULOCK 0x2000000 /* locked in core after swap error XXX */ #define SPTECHG 0x4000000 /* pte's for process have changed XXX */