db_xxx.c revision 1.10 1 1.10 eeh /* $NetBSD: db_xxx.c,v 1.10 2000/11/28 19:20:37 eeh 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.1 gwr
43 1.1 gwr #include <sys/param.h>
44 1.1 gwr #include <sys/systm.h>
45 1.1 gwr #include <sys/kernel.h>
46 1.1 gwr #include <sys/proc.h>
47 1.1 gwr
48 1.1 gwr #include <sys/callout.h>
49 1.1 gwr #include <sys/signalvar.h>
50 1.3 ross #include <sys/resourcevar.h>
51 1.1 gwr
52 1.1 gwr #include <machine/db_machdep.h>
53 1.1 gwr
54 1.1 gwr #include <ddb/db_access.h>
55 1.1 gwr #include <ddb/db_command.h>
56 1.1 gwr #include <ddb/db_interface.h>
57 1.1 gwr #include <ddb/db_lex.h>
58 1.1 gwr #include <ddb/db_output.h>
59 1.1 gwr #include <ddb/db_sym.h>
60 1.1 gwr #include <ddb/db_extern.h>
61 1.1 gwr
62 1.1 gwr void
63 1.1 gwr db_kill_proc(addr, haddr, count, modif)
64 1.1 gwr db_expr_t addr;
65 1.1 gwr int haddr;
66 1.1 gwr db_expr_t count;
67 1.1 gwr char *modif;
68 1.1 gwr {
69 1.1 gwr struct proc *p;
70 1.1 gwr db_expr_t pid, sig;
71 1.1 gwr int t;
72 1.1 gwr
73 1.1 gwr /* What pid? */
74 1.1 gwr if (!db_expression(&pid)) {
75 1.1 gwr db_error("pid?\n");
76 1.1 gwr /*NOTREACHED*/
77 1.1 gwr }
78 1.1 gwr /* What sig? */
79 1.1 gwr t = db_read_token();
80 1.1 gwr if (t == tCOMMA) {
81 1.1 gwr if (!db_expression(&sig)) {
82 1.1 gwr db_error("sig?\n");
83 1.1 gwr /*NOTREACHED*/
84 1.1 gwr }
85 1.1 gwr } else {
86 1.1 gwr db_unread_token(t);
87 1.1 gwr sig = 15;
88 1.1 gwr }
89 1.1 gwr if (db_read_token() != tEOL) {
90 1.1 gwr db_error("?\n");
91 1.1 gwr /*NOTREACHED*/
92 1.1 gwr }
93 1.1 gwr
94 1.1 gwr p = pfind((pid_t)pid);
95 1.1 gwr if (p == NULL) {
96 1.1 gwr db_error("no such proc\n");
97 1.1 gwr /*NOTREACHED*/
98 1.1 gwr }
99 1.1 gwr psignal(p, (int)sig);
100 1.1 gwr }
101 1.1 gwr
102 1.1 gwr void
103 1.1 gwr db_show_all_procs(addr, haddr, count, modif)
104 1.1 gwr db_expr_t addr;
105 1.1 gwr int haddr;
106 1.1 gwr db_expr_t count;
107 1.1 gwr char *modif;
108 1.1 gwr {
109 1.3 ross int i;
110 1.2 chuck char *mode;
111 1.1 gwr struct proc *p, *pp;
112 1.3 ross struct timeval tv[3];
113 1.5 thorpej const struct proclist_desc *pd;
114 1.1 gwr
115 1.2 chuck if (modif[0] == 0)
116 1.2 chuck modif[0] = 'n'; /* default == normal mode */
117 1.2 chuck
118 1.2 chuck mode = strchr("mawn", modif[0]);
119 1.2 chuck if (mode == NULL || *mode == 'm') {
120 1.2 chuck db_printf("usage: show all procs [/a] [/n] [/w]\n");
121 1.2 chuck db_printf("\t/a == show process address info\n");
122 1.2 chuck db_printf("\t/n == show normal process info [default]\n");
123 1.2 chuck db_printf("\t/w == show process wait/emul info\n");
124 1.2 chuck return;
125 1.2 chuck }
126 1.2 chuck
127 1.2 chuck switch (*mode) {
128 1.2 chuck
129 1.2 chuck case 'a':
130 1.3 ross db_printf(" PID %10s %18s %18s %18s\n",
131 1.2 chuck "COMMAND", "STRUCT PROC *", "UAREA *", "VMSPACE/VM_MAP");
132 1.2 chuck break;
133 1.2 chuck case 'n':
134 1.3 ross db_printf(" PID %10s %10s %10s S %7s %16s %7s\n",
135 1.2 chuck "PPID", "PGRP", "UID", "FLAGS", "COMMAND", "WAIT");
136 1.2 chuck break;
137 1.2 chuck case 'w':
138 1.3 ross db_printf(" PID %10s %8s %4s %5s %5s %-12s%s\n",
139 1.3 ross "COMMAND", "EMUL", "PRI", "UTIME", "STIME",
140 1.3 ross "WAIT-MSG", "WAIT-CHANNEL");
141 1.2 chuck break;
142 1.2 chuck }
143 1.2 chuck
144 1.6 thorpej /* XXX LOCKING XXX */
145 1.5 thorpej pd = proclists;
146 1.5 thorpej loop:
147 1.5 thorpej for (p = LIST_FIRST(pd->pd_list); p != NULL;
148 1.5 thorpej p = LIST_NEXT(p, p_list)) {
149 1.1 gwr pp = p->p_pptr;
150 1.1 gwr if (p->p_stat) {
151 1.2 chuck
152 1.3 ross db_printf("%c%-10d", " >"[curproc == p], p->p_pid);
153 1.2 chuck
154 1.2 chuck switch (*mode) {
155 1.2 chuck
156 1.2 chuck case 'a':
157 1.2 chuck db_printf("%10.10s %18p %18p %18p\n",
158 1.2 chuck p->p_comm, p, p->p_addr, p->p_vmspace);
159 1.2 chuck break;
160 1.2 chuck
161 1.2 chuck case 'n':
162 1.2 chuck db_printf("%10d %10d %10d %d %#7x %16s %7.7s\n",
163 1.2 chuck pp ? pp->p_pid : -1, p->p_pgrp->pg_id,
164 1.2 chuck p->p_cred->p_ruid, p->p_stat, p->p_flag,
165 1.2 chuck p->p_comm, (p->p_wchan && p->p_wmesg) ?
166 1.2 chuck p->p_wmesg : "");
167 1.2 chuck break;
168 1.2 chuck
169 1.2 chuck case 'w':
170 1.3 ross db_printf("%10s %8s %4d", p->p_comm,
171 1.3 ross p->p_emul->e_name,p->p_priority);
172 1.3 ross calcru(p, tv+0, tv+1, tv+2);
173 1.3 ross for(i = 0; i < 2; ++i) {
174 1.8 kleink db_printf("%4ld.%1ld",
175 1.8 kleink (long)tv[i].tv_sec,
176 1.8 kleink (long)tv[i].tv_usec/100000);
177 1.3 ross }
178 1.3 ross if(p->p_wchan && p->p_wmesg) {
179 1.3 ross db_printf(" %-12s", p->p_wmesg);
180 1.4 eeh db_printsym((db_expr_t)p->p_wchan,
181 1.9 jhawk DB_STGY_XTRN, db_printf);
182 1.3 ross }
183 1.3 ross db_printf("\n");
184 1.2 chuck break;
185 1.2 chuck
186 1.1 gwr }
187 1.1 gwr }
188 1.1 gwr }
189 1.5 thorpej pd++;
190 1.5 thorpej if (pd->pd_list != NULL)
191 1.5 thorpej goto loop;
192 1.1 gwr }
193 1.1 gwr
194 1.1 gwr void
195 1.1 gwr db_show_callout(addr, haddr, count, modif)
196 1.1 gwr db_expr_t addr;
197 1.1 gwr int haddr;
198 1.1 gwr db_expr_t count;
199 1.1 gwr char *modif;
200 1.1 gwr {
201 1.10 eeh extern struct callout_queue *callwheel;
202 1.10 eeh extern int callwheelsize;
203 1.10 eeh int i;
204 1.1 gwr
205 1.10 eeh for (i=0; i<callwheelsize; i++) {
206 1.10 eeh struct callout_queue *bucket = &callwheel[i];
207 1.10 eeh struct callout *c = TAILQ_FIRST(bucket);
208 1.10 eeh
209 1.10 eeh if (c) db_printf("bucket %d:\n", i);
210 1.10 eeh while (c) {
211 1.10 eeh db_printf("%p: time %llx arg %p flags %x func %p: ",
212 1.10 eeh c, c->c_time, c->c_arg, c->c_flags, c->c_func);
213 1.10 eeh db_printsym((u_long)c->c_func, DB_STGY_PROC, db_printf);
214 1.10 eeh db_printf("\n");
215 1.10 eeh c = TAILQ_NEXT(c, c_link);
216 1.10 eeh }
217 1.10 eeh }
218 1.1 gwr }
219