xref: /dragonfly/sys/ddb/db_ps.c (revision 86fe9e07)
1 /*-
2  * Copyright (c) 1993 The Regents of the University of California.
3  * 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  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *	This product includes software developed by the University of
16  *	California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  * $FreeBSD: src/sys/ddb/db_ps.c,v 1.20 1999/08/28 00:41:09 peter Exp $
34  * $DragonFly: src/sys/ddb/db_ps.c,v 1.10 2004/07/24 20:27:19 dillon Exp $
35  */
36 #include <sys/param.h>
37 #include <sys/systm.h>
38 #include <sys/proc.h>
39 #include <sys/cons.h>
40 
41 #include <ddb/ddb.h>
42 
43 static int
44 db_more(int *nl)
45 {
46 	++*nl;
47 	if (*nl == 20) {
48 		int c;
49 
50 		db_printf("--More--");
51 		c = cngetc();
52 		db_printf("\r");
53 		/*
54 		 * A whole screenfull or just one line?
55 		 */
56 		switch (c) {
57 		case '\n':		/* just one line */
58 			*nl = 19;
59 			break;
60 		case ' ':
61 			*nl = 0;	/* another screenfull */
62 			break;
63 		default:		/* exit */
64 			db_printf("\n");
65 			return(-1);
66 		}
67 	}
68 	return(0);
69 }
70 
71 static void db_dump_td_tokens(thread_t td);
72 
73 void
74 db_ps(dummy1, dummy2, dummy3, dummy4)
75 	db_expr_t	dummy1;
76 	boolean_t	dummy2;
77 	db_expr_t	dummy3;
78 	char *		dummy4;
79 {
80 	int np;
81 	int cpuidx;
82 	int nl = 0;
83 	volatile struct proc *p, *pp;
84 
85 	np = nprocs;
86 
87 	if (allproc.lh_first != NULL)
88 		p = allproc.lh_first;
89 	else
90 		p = &proc0;
91 
92 	if (db_more(&nl) < 0)
93 	    return;
94 	db_printf("  pid   proc     addr    uid  ppid  pgrp  flag stat wmesg   wchan   cmd\n");
95 	while (--np >= 0) {
96 		/*
97 		 * XXX just take 20 for now...
98 		 */
99 		if (db_more(&nl) < 0)
100 			return;
101 		if (p == NULL) {
102 			printf("oops, ran out of processes early!\n");
103 			break;
104 		}
105 		pp = p->p_pptr;
106 		if (pp == NULL)
107 			pp = p;
108 
109 		db_printf("%5d %8p %8p %4d %5d %5d %06x  %d",
110 		    p->p_pid, (volatile void *)p, (void *)p->p_thread->td_pcb,
111 		    p->p_ucred ? p->p_ucred->cr_ruid : 0, pp->p_pid,
112 		    p->p_pgrp ? p->p_pgrp->pg_id : 0, p->p_flag, p->p_stat);
113 		if (p->p_wchan) {
114 			db_printf("  %6s %8p", p->p_wmesg, (void *)p->p_wchan);
115 		} else {
116 			db_printf("                 ");
117 		}
118 		db_printf(" %s\n", p->p_comm ? p->p_comm : "");
119 		db_dump_td_tokens(p->p_thread);
120 
121 		p = p->p_list.le_next;
122 		if (p == NULL && np > 0)
123 			p = zombproc.lh_first;
124     	}
125 
126 	/*
127 	 * Dump running threads
128 	 */
129 	for (cpuidx = 0; cpuidx < ncpus; ++cpuidx) {
130 	    struct globaldata *gd = &CPU_prvspace[cpuidx].mdglobaldata.mi;
131 	    thread_t td;
132 	    int j;
133 
134 	    if (db_more(&nl) < 0)
135 		return;
136 	    db_printf("cpu %d tdrunqmask %08x curthread %p reqflags %04x\n",
137 		    gd->gd_cpuid, gd->gd_runqmask,
138 		    gd->gd_curthread, gd->gd_reqflags);
139 	    db_printf("       uschedcp %p (%d) upri %d\n",
140 		    gd->gd_uschedcp,
141 		    (gd->gd_uschedcp ? gd->gd_uschedcp->p_pid : -1),
142 		    gd->gd_upri);
143 
144 	    if (gd->gd_tokreqbase) {
145 		lwkt_tokref_t ref;
146 
147 		if (db_more(&nl) < 0)
148 		    return;
149 		db_printf("      tokenrequests:");
150 		for (ref = gd->gd_tokreqbase; ref; ref = ref->tr_next) {
151 		    db_printf(" [r=%p,t=%p]", ref, ref->tr_tok);
152 		}
153 		db_printf("\n");
154 	    }
155 	    if (db_more(&nl) < 0)
156 		return;
157 	    db_printf("      INCOMMING IPIQS:");
158 	    for (j = 0; j < ncpus; ++j) {
159 		lwkt_ipiq_t ip = globaldata_find(j)->gd_ipiq;
160 		if (ip != NULL) {
161 		    ip = &ip[cpuidx];
162 		    if (ip->ip_windex != ip->ip_rindex)
163 			db_printf(" cpu%d:%d", j, ip->ip_windex - ip->ip_rindex);
164 		}
165 	    }
166 	    db_printf("\n");
167 
168 	    if (db_more(&nl) < 0)
169 		return;
170 	    db_printf("  tdq     thread    pid flags  pri(act)        sp    wmesg comm\n");
171 	    for (np = 0; np < 32; ++np) {
172 		TAILQ_FOREACH(td, &gd->gd_tdrunq[np], td_threadq) {
173 		    if (db_more(&nl) < 0)
174 			return;
175 		    db_printf("  %3d %p %3d %08x %3d(%3d) %p %8.8s %s\n",
176 			np, td,
177 			(td->td_proc ? td->td_proc->p_pid : -1),
178 			td->td_flags, td->td_pri,
179 			td->td_pri & TDPRI_MASK,
180 			td->td_sp,
181 			td->td_wmesg ? td->td_wmesg : "-",
182 			td->td_proc ? td->td_proc->p_comm : td->td_comm);
183 		    db_dump_td_tokens(td);
184 		}
185 	    }
186 	    if (db_more(&nl) < 0)
187 		return;
188 	    db_printf("\n");
189 	    if (db_more(&nl) < 0)
190 		return;
191 	    db_printf("  tdq     thread    pid flags  pri(act)        sp    wmesg comm\n");
192 	    TAILQ_FOREACH(td, &gd->gd_tdallq, td_allq) {
193 		if (db_more(&nl) < 0)
194 		    return;
195 		db_printf("  %3d %p %3d %08x %3d(%3d) %p %8.8s %s\n",
196 		    np, td,
197 		    (td->td_proc ? td->td_proc->p_pid : -1),
198 		    td->td_flags, td->td_pri,
199 		    td->td_pri & TDPRI_MASK,
200 		    td->td_sp,
201 		    td->td_wmesg ? td->td_wmesg : "-",
202 		    td->td_proc ? td->td_proc->p_comm : td->td_comm);
203 		db_dump_td_tokens(td);
204 	    }
205 	}
206 	if (db_more(&nl) < 0)
207 	    return;
208 	db_printf("CURCPU %d CURTHREAD %p (%d) USCHEDCP %p (%d) UPRI %d\n",
209 	    mycpu->gd_cpuid,
210 	    curthread,
211 	    (curthread->td_proc ? curthread->td_proc->p_pid : -1),
212 	    mycpu->gd_uschedcp,
213 	    (mycpu->gd_uschedcp ? mycpu->gd_uschedcp->p_pid : -1),
214 	    mycpu->gd_upri);
215 	db_dump_td_tokens(curthread);
216 }
217 
218 static void
219 db_dump_td_tokens(thread_t td)
220 {
221 	lwkt_tokref_t ref;
222 	lwkt_token_t tok;
223 
224 	if (td->td_toks == NULL)
225 		return;
226 	db_printf("    TOKENS:");
227 	for (ref = td->td_toks; ref; ref = ref->tr_next) {
228 		tok = ref->tr_tok;
229 
230 		db_printf(" %p[tok=%p", ref, ref->tr_tok);
231 		if (td->td_gd == tok->t_cpu)
232 		    db_printf(",held");
233 		if (ref->tr_magic == LWKT_TOKREF_MAGIC1)
234 		    ;
235 		else if (ref->tr_magic == LWKT_TOKREF_MAGIC2)
236 		    db_printf(",wait");
237 		else
238 		    db_printf(",badmagic");
239 		db_printf("]");
240 	}
241 	db_printf("\n");
242 }
243 
244