1998-09-01 05:02:33 +04:00
|
|
|
/* $NetBSD: kern_proc.c,v 1.30 1998/09/01 01:02:33 thorpej Exp $ */
|
1994-06-29 10:29:24 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1994-05-19 09:57:44 +04:00
|
|
|
* Copyright (c) 1982, 1986, 1989, 1991, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1998-03-01 05:20:01 +03:00
|
|
|
* @(#)kern_proc.c 8.7 (Berkeley) 2/14/95
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
|
|
|
|
1993-12-18 06:59:02 +03:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
1994-05-19 09:57:44 +04:00
|
|
|
#include <sys/map.h>
|
1993-12-18 06:59:02 +03:00
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/proc.h>
|
1998-09-01 03:20:16 +04:00
|
|
|
#include <sys/resourcevar.h>
|
1993-12-18 06:59:02 +03:00
|
|
|
#include <sys/buf.h>
|
|
|
|
#include <sys/acct.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <sys/file.h>
|
1994-06-08 15:28:29 +04:00
|
|
|
#include <ufs/ufs/quota.h>
|
1993-12-18 06:59:02 +03:00
|
|
|
#include <sys/uio.h>
|
|
|
|
#include <sys/malloc.h>
|
1998-08-02 08:41:32 +04:00
|
|
|
#include <sys/pool.h>
|
1993-12-18 06:59:02 +03:00
|
|
|
#include <sys/mbuf.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/tty.h>
|
1994-12-24 18:07:22 +03:00
|
|
|
#include <sys/signalvar.h>
|
1993-12-18 06:59:02 +03:00
|
|
|
|
1994-05-19 09:57:44 +04:00
|
|
|
/*
|
|
|
|
* Structure associated with user cacheing.
|
|
|
|
*/
|
|
|
|
struct uidinfo {
|
1994-08-30 07:04:28 +04:00
|
|
|
LIST_ENTRY(uidinfo) ui_hash;
|
1994-05-19 09:57:44 +04:00
|
|
|
uid_t ui_uid;
|
|
|
|
long ui_proccnt;
|
1994-08-30 07:04:28 +04:00
|
|
|
};
|
|
|
|
#define UIHASH(uid) (&uihashtbl[(uid) & uihash])
|
|
|
|
LIST_HEAD(uihashhead, uidinfo) *uihashtbl;
|
|
|
|
u_long uihash; /* size of hash table - 1 */
|
1994-05-19 09:57:44 +04:00
|
|
|
|
|
|
|
/*
|
1994-08-30 07:04:28 +04:00
|
|
|
* Other process lists
|
1994-05-19 09:57:44 +04:00
|
|
|
*/
|
1994-08-30 07:04:28 +04:00
|
|
|
struct pidhashhead *pidhashtbl;
|
|
|
|
u_long pidhash;
|
|
|
|
struct pgrphashhead *pgrphashtbl;
|
|
|
|
u_long pgrphash;
|
|
|
|
struct proclist allproc;
|
|
|
|
struct proclist zombproc;
|
1998-08-02 08:41:32 +04:00
|
|
|
struct pool proc_pool;
|
1998-09-01 03:20:16 +04:00
|
|
|
struct pool pcred_pool;
|
|
|
|
struct pool plimit_pool;
|
1998-09-01 04:08:44 +04:00
|
|
|
struct pool pgrp_pool;
|
1998-09-01 05:02:33 +04:00
|
|
|
struct pool rusage_pool;
|
1994-08-30 07:04:28 +04:00
|
|
|
|
1996-02-04 05:15:01 +03:00
|
|
|
static void orphanpg __P((struct pgrp *));
|
1996-02-09 21:59:18 +03:00
|
|
|
#ifdef DEBUG
|
|
|
|
void pgrpdump __P((void));
|
|
|
|
#endif
|
1996-02-04 05:15:01 +03:00
|
|
|
|
1994-08-30 07:04:28 +04:00
|
|
|
/*
|
|
|
|
* Initialize global process hashing structures.
|
|
|
|
*/
|
1994-12-24 18:07:22 +03:00
|
|
|
void
|
1994-08-30 07:04:28 +04:00
|
|
|
procinit()
|
1994-05-19 09:57:44 +04:00
|
|
|
{
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-08-30 07:04:28 +04:00
|
|
|
LIST_INIT(&allproc);
|
|
|
|
LIST_INIT(&zombproc);
|
1998-02-07 05:44:44 +03:00
|
|
|
pidhashtbl = hashinit(maxproc / 4, M_PROC, M_WAITOK, &pidhash);
|
|
|
|
pgrphashtbl = hashinit(maxproc / 4, M_PROC, M_WAITOK, &pgrphash);
|
|
|
|
uihashtbl = hashinit(maxproc / 16, M_PROC, M_WAITOK, &uihash);
|
1998-08-02 08:41:32 +04:00
|
|
|
pool_init(&proc_pool, sizeof(struct proc), 0, 0, 0, "procpl",
|
1998-08-29 01:20:05 +04:00
|
|
|
0, pool_page_alloc_nointr, pool_page_free_nointr, M_PROC);
|
1998-09-01 04:08:44 +04:00
|
|
|
pool_init(&pgrp_pool, sizeof(struct pgrp), 0, 0, 0, "pgrppl",
|
|
|
|
0, pool_page_alloc_nointr, pool_page_free_nointr, M_PGRP);
|
1998-09-01 03:20:16 +04:00
|
|
|
pool_init(&pcred_pool, sizeof(struct pcred), 0, 0, 0, "pcredpl",
|
|
|
|
0, pool_page_alloc_nointr, pool_page_free_nointr, M_SUBPROC);
|
|
|
|
pool_init(&plimit_pool, sizeof(struct plimit), 0, 0, 0, "plimitpl",
|
|
|
|
0, pool_page_alloc_nointr, pool_page_free_nointr, M_SUBPROC);
|
1998-09-01 05:02:33 +04:00
|
|
|
pool_init(&rusage_pool, sizeof(struct rusage), 0, 0, 0, "rusgepl",
|
|
|
|
0, pool_page_alloc_nointr, pool_page_free_nointr, M_ZOMBIE);
|
1994-05-19 09:57:44 +04:00
|
|
|
}
|
1993-06-27 10:01:27 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1994-05-19 09:57:44 +04:00
|
|
|
* Change the count associated with number of processes
|
|
|
|
* a given user is using.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
1993-06-27 10:01:27 +04:00
|
|
|
int
|
1994-05-19 09:57:44 +04:00
|
|
|
chgproccnt(uid, diff)
|
|
|
|
uid_t uid;
|
|
|
|
int diff;
|
|
|
|
{
|
1994-08-30 07:04:28 +04:00
|
|
|
register struct uidinfo *uip;
|
|
|
|
register struct uihashhead *uipp;
|
1994-05-19 09:57:44 +04:00
|
|
|
|
1994-08-30 07:04:28 +04:00
|
|
|
uipp = UIHASH(uid);
|
|
|
|
for (uip = uipp->lh_first; uip != 0; uip = uip->ui_hash.le_next)
|
1994-05-19 09:57:44 +04:00
|
|
|
if (uip->ui_uid == uid)
|
|
|
|
break;
|
|
|
|
if (uip) {
|
|
|
|
uip->ui_proccnt += diff;
|
|
|
|
if (uip->ui_proccnt > 0)
|
|
|
|
return (uip->ui_proccnt);
|
|
|
|
if (uip->ui_proccnt < 0)
|
|
|
|
panic("chgproccnt: procs < 0");
|
1994-08-30 07:04:28 +04:00
|
|
|
LIST_REMOVE(uip, ui_hash);
|
1994-05-19 09:57:44 +04:00
|
|
|
FREE(uip, M_PROC);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
if (diff <= 0) {
|
|
|
|
if (diff == 0)
|
|
|
|
return(0);
|
|
|
|
panic("chgproccnt: lost user");
|
|
|
|
}
|
|
|
|
MALLOC(uip, struct uidinfo *, sizeof(*uip), M_PROC, M_WAITOK);
|
1994-08-30 07:04:28 +04:00
|
|
|
LIST_INSERT_HEAD(uipp, uip, ui_hash);
|
1994-05-19 09:57:44 +04:00
|
|
|
uip->ui_uid = uid;
|
|
|
|
uip->ui_proccnt = diff;
|
|
|
|
return (diff);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Is p an inferior of the current process?
|
|
|
|
*/
|
1994-12-24 18:07:22 +03:00
|
|
|
int
|
1993-03-21 12:45:37 +03:00
|
|
|
inferior(p)
|
|
|
|
register struct proc *p;
|
|
|
|
{
|
|
|
|
|
|
|
|
for (; p != curproc; p = p->p_pptr)
|
|
|
|
if (p->p_pid == 0)
|
|
|
|
return (0);
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Locate a process by number
|
|
|
|
*/
|
|
|
|
struct proc *
|
|
|
|
pfind(pid)
|
1994-05-04 07:41:12 +04:00
|
|
|
register pid_t pid;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1994-05-19 09:57:44 +04:00
|
|
|
register struct proc *p;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-08-30 07:04:28 +04:00
|
|
|
for (p = PIDHASH(pid)->lh_first; p != 0; p = p->p_hash.le_next)
|
1993-03-21 12:45:37 +03:00
|
|
|
if (p->p_pid == pid)
|
|
|
|
return (p);
|
1994-05-19 09:57:44 +04:00
|
|
|
return (NULL);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Locate a process group by number
|
|
|
|
*/
|
|
|
|
struct pgrp *
|
|
|
|
pgfind(pgid)
|
|
|
|
register pid_t pgid;
|
|
|
|
{
|
1994-05-19 09:57:44 +04:00
|
|
|
register struct pgrp *pgrp;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-08-30 07:04:28 +04:00
|
|
|
for (pgrp = PGRPHASH(pgid)->lh_first; pgrp != 0; pgrp = pgrp->pg_hash.le_next)
|
1993-03-21 12:45:37 +03:00
|
|
|
if (pgrp->pg_id == pgid)
|
|
|
|
return (pgrp);
|
1994-05-19 09:57:44 +04:00
|
|
|
return (NULL);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Move p to a new or existing process group (and session)
|
|
|
|
*/
|
1994-12-24 18:07:22 +03:00
|
|
|
int
|
1993-03-21 12:45:37 +03:00
|
|
|
enterpgrp(p, pgid, mksess)
|
|
|
|
register struct proc *p;
|
|
|
|
pid_t pgid;
|
1993-06-27 10:01:27 +04:00
|
|
|
int mksess;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
|
|
|
register struct pgrp *pgrp = pgfind(pgid);
|
|
|
|
|
|
|
|
#ifdef DIAGNOSTIC
|
1994-05-19 09:57:44 +04:00
|
|
|
if (pgrp != NULL && mksess) /* firewalls */
|
1993-03-21 12:45:37 +03:00
|
|
|
panic("enterpgrp: setsid into non-empty pgrp");
|
|
|
|
if (SESS_LEADER(p))
|
|
|
|
panic("enterpgrp: session leader attempted setpgrp");
|
|
|
|
#endif
|
|
|
|
if (pgrp == NULL) {
|
1994-05-19 09:57:44 +04:00
|
|
|
pid_t savepid = p->p_pid;
|
|
|
|
struct proc *np;
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* new process group
|
|
|
|
*/
|
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
if (p->p_pid != pgid)
|
|
|
|
panic("enterpgrp: new pgrp and pid != pgid");
|
|
|
|
#endif
|
1998-09-01 04:08:44 +04:00
|
|
|
pgrp = pool_get(&pgrp_pool, PR_WAITOK);
|
1994-05-19 09:57:44 +04:00
|
|
|
if ((np = pfind(savepid)) == NULL || np != p)
|
|
|
|
return (ESRCH);
|
1993-03-21 12:45:37 +03:00
|
|
|
if (mksess) {
|
|
|
|
register struct session *sess;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* new session
|
|
|
|
*/
|
|
|
|
MALLOC(sess, struct session *, sizeof(struct session),
|
1994-08-30 07:04:28 +04:00
|
|
|
M_SESSION, M_WAITOK);
|
1998-02-14 03:37:26 +03:00
|
|
|
sess->s_sid = p->p_pid;
|
1993-03-21 12:45:37 +03:00
|
|
|
sess->s_leader = p;
|
|
|
|
sess->s_count = 1;
|
|
|
|
sess->s_ttyvp = NULL;
|
|
|
|
sess->s_ttyp = NULL;
|
Abolition of bcopy, ovbcopy, bcmp, and bzero, phase one.
bcopy(x, y, z) -> memcpy(y, x, z)
ovbcopy(x, y, z) -> memmove(y, x, z)
bcmp(x, y, z) -> memcmp(x, y, z)
bzero(x, y) -> memset(x, 0, y)
1998-08-04 08:03:10 +04:00
|
|
|
memcpy(sess->s_login, p->p_session->s_login,
|
1993-03-21 12:45:37 +03:00
|
|
|
sizeof(sess->s_login));
|
1994-05-04 07:41:12 +04:00
|
|
|
p->p_flag &= ~P_CONTROLT;
|
1993-03-21 12:45:37 +03:00
|
|
|
pgrp->pg_session = sess;
|
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
if (p != curproc)
|
|
|
|
panic("enterpgrp: mksession and p != curproc");
|
|
|
|
#endif
|
|
|
|
} else {
|
|
|
|
pgrp->pg_session = p->p_session;
|
|
|
|
pgrp->pg_session->s_count++;
|
|
|
|
}
|
|
|
|
pgrp->pg_id = pgid;
|
1994-08-30 07:04:28 +04:00
|
|
|
LIST_INIT(&pgrp->pg_members);
|
|
|
|
LIST_INSERT_HEAD(PGRPHASH(pgid), pgrp, pg_hash);
|
1993-03-21 12:45:37 +03:00
|
|
|
pgrp->pg_jobc = 0;
|
|
|
|
} else if (pgrp == p->p_pgrp)
|
1994-05-19 09:57:44 +04:00
|
|
|
return (0);
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Adjust eligibility of affected pgrps to participate in job control.
|
|
|
|
* Increment eligibility counts before decrementing, otherwise we
|
|
|
|
* could reach 0 spuriously during the first call.
|
|
|
|
*/
|
|
|
|
fixjobc(p, pgrp, 1);
|
|
|
|
fixjobc(p, p->p_pgrp, 0);
|
|
|
|
|
1994-08-30 07:04:28 +04:00
|
|
|
LIST_REMOVE(p, p_pglist);
|
|
|
|
if (p->p_pgrp->pg_members.lh_first == 0)
|
1993-03-21 12:45:37 +03:00
|
|
|
pgdelete(p->p_pgrp);
|
|
|
|
p->p_pgrp = pgrp;
|
1994-08-30 07:04:28 +04:00
|
|
|
LIST_INSERT_HEAD(&pgrp->pg_members, p, p_pglist);
|
1994-05-19 09:57:44 +04:00
|
|
|
return (0);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* remove process from process group
|
|
|
|
*/
|
1994-12-24 18:07:22 +03:00
|
|
|
int
|
1993-03-21 12:45:37 +03:00
|
|
|
leavepgrp(p)
|
|
|
|
register struct proc *p;
|
|
|
|
{
|
|
|
|
|
1994-08-30 07:04:28 +04:00
|
|
|
LIST_REMOVE(p, p_pglist);
|
|
|
|
if (p->p_pgrp->pg_members.lh_first == 0)
|
1993-03-21 12:45:37 +03:00
|
|
|
pgdelete(p->p_pgrp);
|
|
|
|
p->p_pgrp = 0;
|
1994-05-19 09:57:44 +04:00
|
|
|
return (0);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1994-05-19 09:57:44 +04:00
|
|
|
* delete a process group
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
1994-12-24 18:07:22 +03:00
|
|
|
void
|
1993-03-21 12:45:37 +03:00
|
|
|
pgdelete(pgrp)
|
|
|
|
register struct pgrp *pgrp;
|
|
|
|
{
|
|
|
|
|
|
|
|
if (pgrp->pg_session->s_ttyp != NULL &&
|
|
|
|
pgrp->pg_session->s_ttyp->t_pgrp == pgrp)
|
|
|
|
pgrp->pg_session->s_ttyp->t_pgrp = NULL;
|
1994-08-30 07:04:28 +04:00
|
|
|
LIST_REMOVE(pgrp, pg_hash);
|
1993-03-21 12:45:37 +03:00
|
|
|
if (--pgrp->pg_session->s_count == 0)
|
|
|
|
FREE(pgrp->pg_session, M_SESSION);
|
1998-09-01 04:08:44 +04:00
|
|
|
pool_put(&pgrp_pool, pgrp);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Adjust pgrp jobc counters when specified process changes process group.
|
|
|
|
* We count the number of processes in each process group that "qualify"
|
|
|
|
* the group for terminal job control (those with a parent in a different
|
|
|
|
* process group of the same session). If that count reaches zero, the
|
|
|
|
* process group becomes orphaned. Check both the specified process'
|
|
|
|
* process group and that of its children.
|
|
|
|
* entering == 0 => p is leaving specified group.
|
|
|
|
* entering == 1 => p is entering specified group.
|
|
|
|
*/
|
1993-06-27 10:01:27 +04:00
|
|
|
void
|
1993-03-21 12:45:37 +03:00
|
|
|
fixjobc(p, pgrp, entering)
|
|
|
|
register struct proc *p;
|
|
|
|
register struct pgrp *pgrp;
|
|
|
|
int entering;
|
|
|
|
{
|
|
|
|
register struct pgrp *hispgrp;
|
|
|
|
register struct session *mysession = pgrp->pg_session;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check p's parent to see whether p qualifies its own process
|
|
|
|
* group; if so, adjust count for p's process group.
|
|
|
|
*/
|
|
|
|
if ((hispgrp = p->p_pptr->p_pgrp) != pgrp &&
|
1998-08-18 10:11:35 +04:00
|
|
|
hispgrp->pg_session == mysession) {
|
1993-03-21 12:45:37 +03:00
|
|
|
if (entering)
|
|
|
|
pgrp->pg_jobc++;
|
|
|
|
else if (--pgrp->pg_jobc == 0)
|
|
|
|
orphanpg(pgrp);
|
1998-08-18 10:11:35 +04:00
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Check this process' children to see whether they qualify
|
|
|
|
* their process groups; if so, adjust counts for children's
|
|
|
|
* process groups.
|
|
|
|
*/
|
1998-08-18 10:11:35 +04:00
|
|
|
for (p = p->p_children.lh_first; p != 0; p = p->p_sibling.le_next) {
|
1993-03-21 12:45:37 +03:00
|
|
|
if ((hispgrp = p->p_pgrp) != pgrp &&
|
|
|
|
hispgrp->pg_session == mysession &&
|
1998-08-18 10:11:35 +04:00
|
|
|
p->p_stat != SZOMB) {
|
1993-03-21 12:45:37 +03:00
|
|
|
if (entering)
|
|
|
|
hispgrp->pg_jobc++;
|
|
|
|
else if (--hispgrp->pg_jobc == 0)
|
|
|
|
orphanpg(hispgrp);
|
1998-08-18 10:11:35 +04:00
|
|
|
}
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A process group has become orphaned;
|
|
|
|
* if there are any stopped processes in the group,
|
|
|
|
* hang-up all process in that group.
|
|
|
|
*/
|
1993-06-27 10:01:27 +04:00
|
|
|
static void
|
1993-03-21 12:45:37 +03:00
|
|
|
orphanpg(pg)
|
|
|
|
struct pgrp *pg;
|
|
|
|
{
|
|
|
|
register struct proc *p;
|
|
|
|
|
1994-08-30 07:04:28 +04:00
|
|
|
for (p = pg->pg_members.lh_first; p != 0; p = p->p_pglist.le_next) {
|
1993-03-21 12:45:37 +03:00
|
|
|
if (p->p_stat == SSTOP) {
|
1994-08-30 07:04:28 +04:00
|
|
|
for (p = pg->pg_members.lh_first; p != 0;
|
|
|
|
p = p->p_pglist.le_next) {
|
1993-03-21 12:45:37 +03:00
|
|
|
psignal(p, SIGHUP);
|
|
|
|
psignal(p, SIGCONT);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1994-08-30 07:04:28 +04:00
|
|
|
#ifdef DEBUG
|
1996-02-09 21:59:18 +03:00
|
|
|
void
|
1993-03-21 12:45:37 +03:00
|
|
|
pgrpdump()
|
|
|
|
{
|
|
|
|
register struct pgrp *pgrp;
|
|
|
|
register struct proc *p;
|
1998-02-14 22:34:12 +03:00
|
|
|
register int i;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-08-30 07:04:28 +04:00
|
|
|
for (i = 0; i <= pgrphash; i++) {
|
1996-02-09 21:59:18 +03:00
|
|
|
if ((pgrp = pgrphashtbl[i].lh_first) != NULL) {
|
1996-10-13 06:32:29 +04:00
|
|
|
printf("\tindx %d\n", i);
|
1994-08-30 07:04:28 +04:00
|
|
|
for (; pgrp != 0; pgrp = pgrp->pg_hash.le_next) {
|
1996-10-13 06:32:29 +04:00
|
|
|
printf("\tpgrp %p, pgid %d, sess %p, sesscnt %d, mem %p\n",
|
1994-08-30 07:04:28 +04:00
|
|
|
pgrp, pgrp->pg_id, pgrp->pg_session,
|
|
|
|
pgrp->pg_session->s_count,
|
|
|
|
pgrp->pg_members.lh_first);
|
|
|
|
for (p = pgrp->pg_members.lh_first; p != 0;
|
|
|
|
p = p->p_pglist.le_next) {
|
1996-10-13 06:32:29 +04:00
|
|
|
printf("\t\tpid %d addr %p pgrp %p\n",
|
1994-08-30 07:04:28 +04:00
|
|
|
p->p_pid, p, p->p_pgrp);
|
|
|
|
}
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1994-08-30 07:04:28 +04:00
|
|
|
#endif /* DEBUG */
|