db_xxx.c revision 1.5 1 /* $NetBSD: db_xxx.c,v 1.5 1998/09/08 23:50:13 thorpej Exp $ */
2
3 /*
4 * Copyright (c) 1982, 1986, 1989, 1991, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by the University of
18 * California, Berkeley and its contributors.
19 * 4. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
34 *
35 * from: kern_proc.c 8.4 (Berkeley) 1/4/94
36 */
37
38 /*
39 * Miscellaneous DDB functions that are intimate (xxx) with various
40 * data structures and functions used by the kernel (proc, callout).
41 */
42
43 #include <sys/param.h>
44 #include <sys/systm.h>
45 #include <sys/kernel.h>
46 #include <sys/proc.h>
47
48 #include <sys/callout.h>
49 #include <sys/signalvar.h>
50 #include <sys/resourcevar.h>
51
52 #include <machine/db_machdep.h>
53
54 #include <ddb/db_access.h>
55 #include <ddb/db_command.h>
56 #include <ddb/db_interface.h>
57 #include <ddb/db_lex.h>
58 #include <ddb/db_output.h>
59 #include <ddb/db_sym.h>
60 #include <ddb/db_extern.h>
61
62 void
63 db_kill_proc(addr, haddr, count, modif)
64 db_expr_t addr;
65 int haddr;
66 db_expr_t count;
67 char *modif;
68 {
69 struct proc *p;
70 db_expr_t pid, sig;
71 int t;
72
73 /* What pid? */
74 if (!db_expression(&pid)) {
75 db_error("pid?\n");
76 /*NOTREACHED*/
77 }
78 /* What sig? */
79 t = db_read_token();
80 if (t == tCOMMA) {
81 if (!db_expression(&sig)) {
82 db_error("sig?\n");
83 /*NOTREACHED*/
84 }
85 } else {
86 db_unread_token(t);
87 sig = 15;
88 }
89 if (db_read_token() != tEOL) {
90 db_error("?\n");
91 /*NOTREACHED*/
92 }
93
94 p = pfind((pid_t)pid);
95 if (p == NULL) {
96 db_error("no such proc\n");
97 /*NOTREACHED*/
98 }
99 psignal(p, (int)sig);
100 }
101
102 void
103 db_show_all_procs(addr, haddr, count, modif)
104 db_expr_t addr;
105 int haddr;
106 db_expr_t count;
107 char *modif;
108 {
109 int i;
110 char *mode;
111 struct proc *p, *pp;
112 struct timeval tv[3];
113 const struct proclist_desc *pd;
114
115 if (modif[0] == 0)
116 modif[0] = 'n'; /* default == normal mode */
117
118 mode = strchr("mawn", modif[0]);
119 if (mode == NULL || *mode == 'm') {
120 db_printf("usage: show all procs [/a] [/n] [/w]\n");
121 db_printf("\t/a == show process address info\n");
122 db_printf("\t/n == show normal process info [default]\n");
123 db_printf("\t/w == show process wait/emul info\n");
124 return;
125 }
126
127 switch (*mode) {
128
129 case 'a':
130 db_printf(" PID %10s %18s %18s %18s\n",
131 "COMMAND", "STRUCT PROC *", "UAREA *", "VMSPACE/VM_MAP");
132 break;
133 case 'n':
134 db_printf(" PID %10s %10s %10s S %7s %16s %7s\n",
135 "PPID", "PGRP", "UID", "FLAGS", "COMMAND", "WAIT");
136 break;
137 case 'w':
138 db_printf(" PID %10s %8s %4s %5s %5s %-12s%s\n",
139 "COMMAND", "EMUL", "PRI", "UTIME", "STIME",
140 "WAIT-MSG", "WAIT-CHANNEL");
141 break;
142 }
143
144 pd = proclists;
145 loop:
146 for (p = LIST_FIRST(pd->pd_list); p != NULL;
147 p = LIST_NEXT(p, p_list)) {
148 pp = p->p_pptr;
149 if (p->p_stat) {
150
151 db_printf("%c%-10d", " >"[curproc == p], p->p_pid);
152
153 switch (*mode) {
154
155 case 'a':
156 db_printf("%10.10s %18p %18p %18p\n",
157 p->p_comm, p, p->p_addr, p->p_vmspace);
158 break;
159
160 case 'n':
161 db_printf("%10d %10d %10d %d %#7x %16s %7.7s\n",
162 pp ? pp->p_pid : -1, p->p_pgrp->pg_id,
163 p->p_cred->p_ruid, p->p_stat, p->p_flag,
164 p->p_comm, (p->p_wchan && p->p_wmesg) ?
165 p->p_wmesg : "");
166 break;
167
168 case 'w':
169 db_printf("%10s %8s %4d", p->p_comm,
170 p->p_emul->e_name,p->p_priority);
171 calcru(p, tv+0, tv+1, tv+2);
172 for(i = 0; i < 2; ++i) {
173 db_printf("%4ld.%1ld", tv[i].tv_sec,
174 tv[i].tv_usec/100000);
175 }
176 if(p->p_wchan && p->p_wmesg) {
177 db_printf(" %-12s", p->p_wmesg);
178 db_printsym((db_expr_t)p->p_wchan,
179 DB_STGY_XTRN);
180 }
181 db_printf("\n");
182 break;
183
184 }
185 }
186 }
187 pd++;
188 if (pd->pd_list != NULL)
189 goto loop;
190 }
191
192 void
193 db_show_callout(addr, haddr, count, modif)
194 db_expr_t addr;
195 int haddr;
196 db_expr_t count;
197 char *modif;
198 {
199 register struct callout *p1;
200 register int cum;
201 register int s;
202 db_expr_t offset;
203 char *name;
204
205 db_printf(" cum ticks arg func\n");
206 s = splhigh();
207 for (cum = 0, p1 = calltodo.c_next; p1; p1 = p1->c_next) {
208 register int t = p1->c_time;
209
210 if (t > 0)
211 cum += t;
212
213 db_find_sym_and_offset((db_expr_t)p1->c_func, &name, &offset);
214 if (name == NULL)
215 name = "?";
216
217 db_printf("%9d %9d %p %s (%p)\n",
218 cum, t, p1->c_arg, name, p1->c_func);
219 }
220 splx(s);
221 }
222