Merge from vendor branch CVS:
[dragonfly.git] / sys / ddb / db_ps.c
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.11 2004/09/03 08:50:47 eirikn 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 void db_dump_td_tokens(thread_t td);
44
45 void
46 db_ps(dummy1, dummy2, dummy3, dummy4)
47         db_expr_t       dummy1;
48         boolean_t       dummy2;
49         db_expr_t       dummy3;
50         char *          dummy4;
51 {
52         int np;
53         int cpuidx;
54         int nl = 0;
55         volatile struct proc *p, *pp;
56
57         np = nprocs;
58
59         if (allproc.lh_first != NULL)
60                 p = allproc.lh_first;
61         else
62                 p = &proc0;
63
64         if (db_more(&nl) < 0)
65             return;
66         db_printf("  pid   proc     addr    uid  ppid  pgrp  flag stat wmesg   wchan   cmd\n");
67         while (--np >= 0) {
68                 /*
69                  * XXX just take 20 for now...
70                  */
71                 if (db_more(&nl) < 0)
72                         return;
73                 if (p == NULL) {
74                         printf("oops, ran out of processes early!\n");
75                         break;
76                 }
77                 pp = p->p_pptr;
78                 if (pp == NULL)
79                         pp = p;
80
81                 db_printf("%5d %8p %8p %4d %5d %5d %06x  %d",
82                     p->p_pid, (volatile void *)p, (void *)p->p_thread->td_pcb,
83                     p->p_ucred ? p->p_ucred->cr_ruid : 0, pp->p_pid,
84                     p->p_pgrp ? p->p_pgrp->pg_id : 0, p->p_flag, p->p_stat);
85                 if (p->p_wchan) {
86                         db_printf("  %6s %8p", p->p_wmesg, (void *)p->p_wchan);
87                 } else {
88                         db_printf("                 ");
89                 }
90                 db_printf(" %s\n", p->p_comm ? p->p_comm : "");
91                 db_dump_td_tokens(p->p_thread);
92
93                 p = p->p_list.le_next;
94                 if (p == NULL && np > 0)
95                         p = zombproc.lh_first;
96         }
97
98         /*
99          * Dump running threads
100          */
101         for (cpuidx = 0; cpuidx < ncpus; ++cpuidx) {
102             struct globaldata *gd = &CPU_prvspace[cpuidx].mdglobaldata.mi;
103             thread_t td;
104             int j;
105
106             if (db_more(&nl) < 0)
107                 return;
108             db_printf("cpu %d tdrunqmask %08x curthread %p reqflags %04x\n",
109                     gd->gd_cpuid, gd->gd_runqmask,
110                     gd->gd_curthread, gd->gd_reqflags);
111             db_printf("       uschedcp %p (%d) upri %d\n",
112                     gd->gd_uschedcp,
113                     (gd->gd_uschedcp ? gd->gd_uschedcp->p_pid : -1),
114                     gd->gd_upri);
115
116             if (gd->gd_tokreqbase) {
117                 lwkt_tokref_t ref;
118
119                 if (db_more(&nl) < 0)
120                     return;
121                 db_printf("      tokenrequests:");
122                 for (ref = gd->gd_tokreqbase; ref; ref = ref->tr_next) {
123                     db_printf(" [r=%p,t=%p]", ref, ref->tr_tok);
124                 }
125                 db_printf("\n");
126             }
127             if (db_more(&nl) < 0)
128                 return;
129             db_printf("      INCOMMING IPIQS:");
130             for (j = 0; j < ncpus; ++j) {
131                 lwkt_ipiq_t ip = globaldata_find(j)->gd_ipiq;
132                 if (ip != NULL) {
133                     ip = &ip[cpuidx];
134                     if (ip->ip_windex != ip->ip_rindex)
135                         db_printf(" cpu%d:%d", j, ip->ip_windex - ip->ip_rindex);
136                 }
137             }
138             db_printf("\n");
139
140             if (db_more(&nl) < 0)
141                 return;
142             db_printf("  tdq     thread    pid flags  pri(act)        sp    wmesg comm\n");
143             for (np = 0; np < 32; ++np) {
144                 TAILQ_FOREACH(td, &gd->gd_tdrunq[np], td_threadq) {
145                     if (db_more(&nl) < 0)
146                         return;
147                     db_printf("  %3d %p %3d %08x %3d(%3d) %p %8.8s %s\n",
148                         np, td, 
149                         (td->td_proc ? td->td_proc->p_pid : -1),
150                         td->td_flags, td->td_pri,
151                         td->td_pri & TDPRI_MASK,
152                         td->td_sp,
153                         td->td_wmesg ? td->td_wmesg : "-",
154                         td->td_proc ? td->td_proc->p_comm : td->td_comm);
155                     db_dump_td_tokens(td);
156                 }
157             }
158             if (db_more(&nl) < 0)
159                 return;
160             db_printf("\n");
161             if (db_more(&nl) < 0)
162                 return;
163             db_printf("  tdq     thread    pid flags  pri(act)        sp    wmesg comm\n");
164             TAILQ_FOREACH(td, &gd->gd_tdallq, td_allq) {
165                 if (db_more(&nl) < 0)
166                     return;
167                 db_printf("  %3d %p %3d %08x %3d(%3d) %p %8.8s %s\n",
168                     np, td, 
169                     (td->td_proc ? td->td_proc->p_pid : -1),
170                     td->td_flags, td->td_pri,
171                     td->td_pri & TDPRI_MASK,
172                     td->td_sp,
173                     td->td_wmesg ? td->td_wmesg : "-",
174                     td->td_proc ? td->td_proc->p_comm : td->td_comm);
175                 db_dump_td_tokens(td);
176             }
177         }
178         if (db_more(&nl) < 0)
179             return;
180         db_printf("CURCPU %d CURTHREAD %p (%d) USCHEDCP %p (%d) UPRI %d\n",
181             mycpu->gd_cpuid,
182             curthread,
183             (curthread->td_proc ? curthread->td_proc->p_pid : -1),
184             mycpu->gd_uschedcp,
185             (mycpu->gd_uschedcp ? mycpu->gd_uschedcp->p_pid : -1),
186             mycpu->gd_upri);
187         db_dump_td_tokens(curthread);
188 }
189
190 static void
191 db_dump_td_tokens(thread_t td)
192 {
193         lwkt_tokref_t ref;
194         lwkt_token_t tok;
195
196         if (td->td_toks == NULL)
197                 return;
198         db_printf("    TOKENS:");
199         for (ref = td->td_toks; ref; ref = ref->tr_next) {
200                 tok = ref->tr_tok;
201
202                 db_printf(" %p[tok=%p", ref, ref->tr_tok);
203                 if (td->td_gd == tok->t_cpu)
204                     db_printf(",held");
205                 if (ref->tr_magic == LWKT_TOKREF_MAGIC1)
206                     ;
207                 else if (ref->tr_magic == LWKT_TOKREF_MAGIC2)
208                     db_printf(",wait");
209                 else
210                     db_printf(",badmagic");
211                 db_printf("]");
212         }
213         db_printf("\n");
214 }
215