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