Home | History | Annotate | Line # | Download | only in ddb
db_xxx.c revision 1.11.2.5
      1  1.11.2.5  nathanw /*	$NetBSD: db_xxx.c,v 1.11.2.5 2002/02/28 04:13:09 nathanw 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.11.2.4  nathanw 
     43  1.11.2.4  nathanw #include <sys/cdefs.h>
     44  1.11.2.5  nathanw __KERNEL_RCSID(0, "$NetBSD: db_xxx.c,v 1.11.2.5 2002/02/28 04:13:09 nathanw 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.11.2.1  nathanw #include <sys/lwp.h>
     50       1.1      gwr #include <sys/proc.h>
     51  1.11.2.2  nathanw #include <sys/msgbuf.h>
     52       1.1      gwr 
     53       1.1      gwr #include <sys/callout.h>
     54       1.1      gwr #include <sys/signalvar.h>
     55       1.3     ross #include <sys/resourcevar.h>
     56       1.1      gwr 
     57       1.1      gwr #include <machine/db_machdep.h>
     58       1.1      gwr 
     59       1.1      gwr #include <ddb/db_access.h>
     60       1.1      gwr #include <ddb/db_command.h>
     61       1.1      gwr #include <ddb/db_interface.h>
     62       1.1      gwr #include <ddb/db_lex.h>
     63       1.1      gwr #include <ddb/db_output.h>
     64       1.1      gwr #include <ddb/db_sym.h>
     65       1.1      gwr #include <ddb/db_extern.h>
     66       1.1      gwr 
     67       1.1      gwr void
     68  1.11.2.5  nathanw db_kill_proc(db_expr_t addr, int haddr, db_expr_t count, char *modif)
     69       1.1      gwr {
     70       1.1      gwr 	struct proc *p;
     71       1.1      gwr 	db_expr_t pid, sig;
     72       1.1      gwr 	int t;
     73       1.1      gwr 
     74       1.1      gwr 	/* What pid? */
     75       1.1      gwr 	if (!db_expression(&pid)) {
     76       1.1      gwr 		db_error("pid?\n");
     77  1.11.2.5  nathanw 		/*NOTREACHED*/
     78       1.1      gwr 	}
     79       1.1      gwr 	/* What sig? */
     80       1.1      gwr 	t = db_read_token();
     81       1.1      gwr 	if (t == tCOMMA) {
     82       1.1      gwr 		if (!db_expression(&sig)) {
     83       1.1      gwr 			db_error("sig?\n");
     84       1.1      gwr 			/*NOTREACHED*/
     85       1.1      gwr 		}
     86       1.1      gwr 	} else {
     87       1.1      gwr 		db_unread_token(t);
     88       1.1      gwr 		sig = 15;
     89       1.1      gwr 	}
     90       1.1      gwr 	if (db_read_token() != tEOL) {
     91  1.11.2.5  nathanw 		db_error("?\n");
     92  1.11.2.5  nathanw 		/*NOTREACHED*/
     93       1.1      gwr 	}
     94       1.1      gwr 
     95       1.1      gwr 	p = pfind((pid_t)pid);
     96       1.1      gwr 	if (p == NULL) {
     97       1.1      gwr 		db_error("no such proc\n");
     98  1.11.2.5  nathanw 		/*NOTREACHED*/
     99       1.1      gwr 	}
    100       1.1      gwr 	psignal(p, (int)sig);
    101       1.1      gwr }
    102       1.1      gwr 
    103       1.1      gwr void
    104  1.11.2.5  nathanw db_show_all_procs(db_expr_t addr, int haddr, db_expr_t count, char *modif)
    105       1.1      gwr {
    106       1.3     ross 	int i;
    107  1.11.2.1  nathanw 
    108       1.2    chuck 	char *mode;
    109  1.11.2.1  nathanw 	struct proc *p, *pp, *cp;
    110  1.11.2.1  nathanw 	struct lwp *l, *cl;
    111  1.11.2.3  nathanw 	struct timeval tv[2];
    112       1.5  thorpej 	const struct proclist_desc *pd;
    113  1.11.2.5  nathanw 
    114       1.2    chuck 	if (modif[0] == 0)
    115       1.2    chuck 		modif[0] = 'n';			/* default == normal mode */
    116       1.2    chuck 
    117  1.11.2.1  nathanw 	mode = strchr("mawln", modif[0]);
    118       1.2    chuck 	if (mode == NULL || *mode == 'm') {
    119       1.2    chuck 		db_printf("usage: show all procs [/a] [/n] [/w]\n");
    120       1.2    chuck 		db_printf("\t/a == show process address info\n");
    121  1.11.2.1  nathanw 		db_printf("\t/l == show LWP 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.11.2.5  nathanw 	switch (*mode) {
    128       1.2    chuck 	case 'a':
    129       1.3     ross 		db_printf(" PID       %10s %18s %18s %18s\n",
    130       1.2    chuck 		    "COMMAND", "STRUCT PROC *", "UAREA *", "VMSPACE/VM_MAP");
    131       1.2    chuck 		break;
    132  1.11.2.1  nathanw 	case 'l':
    133  1.11.2.1  nathanw 		db_printf(" PID        %4s S %7s %18s %18s %-12s\n",
    134  1.11.2.1  nathanw 		    "LID", "FLAGS", "STRUCT LWP *", "UAREA *", "WAIT");
    135  1.11.2.1  nathanw 		break;
    136       1.2    chuck 	case 'n':
    137  1.11.2.1  nathanw 		db_printf(" PID       %8s %8s %10s S %7s %4s %16s %7s\n",
    138  1.11.2.1  nathanw 		    "PPID", "PGRP", "UID", "FLAGS", "LWPS", "COMMAND", "WAIT");
    139       1.2    chuck 		break;
    140       1.2    chuck 	case 'w':
    141       1.3     ross 		db_printf(" PID       %10s %8s %4s %5s %5s %-12s%s\n",
    142       1.3     ross 		    "COMMAND", "EMUL", "PRI", "UTIME", "STIME",
    143       1.3     ross 		    "WAIT-MSG", "WAIT-CHANNEL");
    144       1.2    chuck 		break;
    145       1.2    chuck 	}
    146       1.2    chuck 
    147       1.6  thorpej 	/* XXX LOCKING XXX */
    148       1.5  thorpej 	pd = proclists;
    149  1.11.2.1  nathanw 	cp = curproc ? curproc->l_proc : 0;
    150  1.11.2.1  nathanw 	cl = curproc;
    151  1.11.2.3  nathanw 	for (pd = proclists; pd->pd_list != NULL; pd++) {
    152  1.11.2.3  nathanw 		LIST_FOREACH(p, pd->pd_list, p_list) {
    153  1.11.2.3  nathanw 			pp = p->p_pptr;
    154  1.11.2.3  nathanw 			if (p->p_stat == 0) {
    155  1.11.2.3  nathanw 				continue;
    156  1.11.2.3  nathanw 			}
    157  1.11.2.1  nathanw 			l = LIST_FIRST(&p->p_lwps);
    158  1.11.2.1  nathanw 			db_printf("%c%-10d", " >"[cp == p], p->p_pid);
    159       1.2    chuck 
    160       1.2    chuck 			switch (*mode) {
    161       1.2    chuck 
    162       1.2    chuck 			case 'a':
    163       1.2    chuck 				db_printf("%10.10s %18p %18p %18p\n",
    164  1.11.2.1  nathanw 				    p->p_comm, p, l->l_addr, p->p_vmspace);
    165  1.11.2.1  nathanw 				break;
    166  1.11.2.1  nathanw 			case 'l':
    167  1.11.2.1  nathanw 				do {
    168  1.11.2.1  nathanw 					db_printf("%c%4d %d %#7x %18p %18p %s\n",
    169  1.11.2.1  nathanw 					    " >"[cl == l], l->l_lid,
    170  1.11.2.1  nathanw 					    l->l_stat, l->l_flag, l,
    171  1.11.2.1  nathanw 					    l->l_addr,
    172  1.11.2.1  nathanw 					    (l->l_wchan && l->l_wmesg) ?
    173  1.11.2.1  nathanw 					    l->l_wmesg : "");
    174  1.11.2.1  nathanw 
    175  1.11.2.1  nathanw 					l = LIST_NEXT(l, l_sibling);
    176  1.11.2.1  nathanw 					if (l)
    177  1.11.2.1  nathanw 						db_printf("%11s","");
    178  1.11.2.1  nathanw 				} while (l != NULL);
    179       1.2    chuck 				break;
    180       1.2    chuck 			case 'n':
    181  1.11.2.1  nathanw 				db_printf("%8d %8d %10d %d %#7x %4d %16s %7.7s\n",
    182       1.2    chuck 				    pp ? pp->p_pid : -1, p->p_pgrp->pg_id,
    183       1.2    chuck 				    p->p_cred->p_ruid, p->p_stat, p->p_flag,
    184  1.11.2.1  nathanw 				    p->p_nlwps, p->p_comm,
    185  1.11.2.1  nathanw 				    (p->p_nlwps > 1) ? "*" : (
    186  1.11.2.1  nathanw 				    (l->l_wchan && l->l_wmesg) ?
    187  1.11.2.1  nathanw 				    l->l_wmesg : ""));
    188       1.2    chuck 				break;
    189       1.2    chuck 
    190       1.2    chuck 			case 'w':
    191       1.3     ross 				db_printf("%10s %8s %4d", p->p_comm,
    192  1.11.2.1  nathanw 				    p->p_emul->e_name,l->l_priority);
    193  1.11.2.3  nathanw 				calcru(p, &tv[0], &tv[1], NULL);
    194  1.11.2.3  nathanw 				for (i = 0; i < 2; ++i) {
    195       1.8   kleink 					db_printf("%4ld.%1ld",
    196       1.8   kleink 					    (long)tv[i].tv_sec,
    197       1.8   kleink 					    (long)tv[i].tv_usec/100000);
    198       1.3     ross 				}
    199  1.11.2.3  nathanw 				if (p->p_nlwps <= 1) {
    200  1.11.2.3  nathanw 				if (l->l_wchan && l->l_wmesg) {
    201  1.11.2.1  nathanw 					db_printf(" %-12s", l->l_wmesg);
    202  1.11.2.1  nathanw 					db_printsym((db_expr_t)l->l_wchan,
    203       1.9    jhawk 					    DB_STGY_XTRN, db_printf);
    204  1.11.2.1  nathanw 				} } else {
    205  1.11.2.1  nathanw 					db_printf(" * ");
    206       1.3     ross 				}
    207       1.3     ross 				db_printf("\n");
    208       1.2    chuck 				break;
    209       1.2    chuck 
    210       1.1      gwr 			}
    211       1.1      gwr 		}
    212       1.1      gwr 	}
    213       1.1      gwr }
    214       1.1      gwr 
    215       1.1      gwr void
    216  1.11.2.5  nathanw db_show_callout(db_expr_t addr, int haddr, db_expr_t count, char *modif)
    217       1.1      gwr {
    218  1.11.2.3  nathanw 	uint64_t hint;
    219      1.10      eeh 	int i;
    220       1.1      gwr 
    221      1.11  thorpej 	for (i = 0; i < callwheelsize; i++) {
    222      1.10      eeh 		struct callout_queue *bucket = &callwheel[i];
    223  1.11.2.3  nathanw 		struct callout *c = TAILQ_FIRST(&bucket->cq_q);
    224      1.10      eeh 
    225  1.11.2.3  nathanw 		if (c) {
    226  1.11.2.3  nathanw 			db_printf("bucket %d (hint %llx):\n", i,
    227  1.11.2.3  nathanw 			    (long long) bucket->cq_hint);
    228  1.11.2.3  nathanw 			hint = UQUAD_MAX;
    229  1.11.2.3  nathanw 			while (c) {
    230  1.11.2.3  nathanw 				if (c->c_time < hint)
    231  1.11.2.3  nathanw 					hint = c->c_time;
    232  1.11.2.3  nathanw 				db_printf("%p: time %llx arg %p flags %x "
    233  1.11.2.3  nathanw 				    "func %p: ", c, (long long) c->c_time,
    234  1.11.2.3  nathanw 				    c->c_arg, c->c_flags, c->c_func);
    235  1.11.2.3  nathanw 				db_printsym((u_long)c->c_func, DB_STGY_PROC,
    236  1.11.2.3  nathanw 				    db_printf);
    237  1.11.2.3  nathanw 				db_printf("\n");
    238  1.11.2.3  nathanw 				c = TAILQ_NEXT(c, c_link);
    239  1.11.2.3  nathanw 			}
    240  1.11.2.3  nathanw 			if (bucket->cq_hint < hint)
    241  1.11.2.3  nathanw 				printf("** HINT IS STALE\n");
    242      1.10      eeh 		}
    243      1.10      eeh 	}
    244  1.11.2.2  nathanw }
    245  1.11.2.2  nathanw 
    246  1.11.2.2  nathanw void
    247  1.11.2.5  nathanw db_dmesg(db_expr_t addr, int haddr, db_expr_t count, char *modif)
    248  1.11.2.2  nathanw {
    249  1.11.2.2  nathanw 	struct kern_msgbuf *mbp;
    250  1.11.2.2  nathanw 	int ch, newl, skip, i;
    251  1.11.2.2  nathanw 	char *p, *bufdata;
    252  1.11.2.2  nathanw 
    253  1.11.2.2  nathanw 	mbp = msgbufp;
    254  1.11.2.2  nathanw 	bufdata = &mbp->msg_bufc[0];
    255  1.11.2.2  nathanw 
    256  1.11.2.2  nathanw 	for (newl = skip = i = 0, p = bufdata + mbp->msg_bufx;
    257  1.11.2.2  nathanw 	    i < mbp->msg_bufs; i++, p++) {
    258  1.11.2.2  nathanw 		if (p == bufdata + mbp->msg_bufs)
    259  1.11.2.2  nathanw 			p = bufdata;
    260  1.11.2.2  nathanw 		ch = *p;
    261  1.11.2.2  nathanw 		/* Skip "\n<.*>" syslog sequences. */
    262  1.11.2.2  nathanw 		if (skip) {
    263  1.11.2.2  nathanw 			if (ch == '>')
    264  1.11.2.2  nathanw 				newl = skip = 0;
    265  1.11.2.2  nathanw 			continue;
    266  1.11.2.2  nathanw 		}
    267  1.11.2.2  nathanw 		if (newl && ch == '<') {
    268  1.11.2.2  nathanw 			skip = 1;
    269  1.11.2.2  nathanw 			continue;
    270  1.11.2.2  nathanw 		}
    271  1.11.2.2  nathanw 		if (ch == '\0')
    272  1.11.2.2  nathanw 			continue;
    273  1.11.2.2  nathanw 		newl = ch == '\n';
    274  1.11.2.2  nathanw 		db_printf("%c", ch);
    275  1.11.2.2  nathanw 	}
    276  1.11.2.2  nathanw 	if (!newl)
    277  1.11.2.2  nathanw 		db_printf("\n");
    278       1.1      gwr }
    279