Home | History | Annotate | Line # | Download | only in ddb
db_xxx.c revision 1.37.6.1
      1  1.37.6.1      yamt /*	$NetBSD: db_xxx.c,v 1.37.6.1 2006/05/24 10:57:36 yamt 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.26       agc  * 3. Neither the name of the University nor the names of its contributors
     16       1.1       gwr  *    may be used to endorse or promote products derived from this software
     17       1.1       gwr  *    without specific prior written permission.
     18       1.1       gwr  *
     19       1.1       gwr  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     20       1.1       gwr  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21       1.1       gwr  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22       1.1       gwr  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     23       1.1       gwr  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24       1.1       gwr  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25       1.1       gwr  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26       1.1       gwr  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27       1.1       gwr  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28       1.1       gwr  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29       1.1       gwr  * SUCH DAMAGE.
     30       1.1       gwr  *
     31       1.1       gwr  *	from: kern_proc.c	8.4 (Berkeley) 1/4/94
     32       1.1       gwr  */
     33       1.1       gwr 
     34       1.1       gwr /*
     35       1.1       gwr  * Miscellaneous DDB functions that are intimate (xxx) with various
     36       1.1       gwr  * data structures and functions used by the kernel (proc, callout).
     37       1.1       gwr  */
     38      1.15     lukem 
     39      1.21    briggs #include "opt_kgdb.h"
     40      1.21    briggs 
     41      1.15     lukem #include <sys/cdefs.h>
     42  1.37.6.1      yamt __KERNEL_RCSID(0, "$NetBSD: db_xxx.c,v 1.37.6.1 2006/05/24 10:57:36 yamt Exp $");
     43       1.1       gwr 
     44       1.1       gwr #include <sys/param.h>
     45       1.1       gwr #include <sys/systm.h>
     46       1.1       gwr #include <sys/kernel.h>
     47       1.1       gwr #include <sys/proc.h>
     48      1.12    atatat #include <sys/msgbuf.h>
     49       1.1       gwr 
     50       1.1       gwr #include <sys/callout.h>
     51       1.1       gwr #include <sys/signalvar.h>
     52       1.3      ross #include <sys/resourcevar.h>
     53      1.34        he #include <sys/pool.h>
     54  1.37.6.1      yamt #include <sys/kauth.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.21    briggs #ifdef KGDB
     66      1.21    briggs #include <sys/kgdb.h>
     67      1.21    briggs #endif
     68       1.1       gwr 
     69       1.1       gwr void
     70      1.31  drochner db_kill_proc(db_expr_t addr, int haddr, db_expr_t count, const char *modif)
     71       1.1       gwr {
     72       1.1       gwr 	struct proc *p;
     73       1.1       gwr 	db_expr_t pid, sig;
     74       1.1       gwr 	int t;
     75       1.1       gwr 
     76       1.1       gwr 	/* What pid? */
     77       1.1       gwr 	if (!db_expression(&pid)) {
     78       1.1       gwr 		db_error("pid?\n");
     79      1.16    simonb 		/*NOTREACHED*/
     80       1.1       gwr 	}
     81       1.1       gwr 	/* What sig? */
     82       1.1       gwr 	t = db_read_token();
     83       1.1       gwr 	if (t == tCOMMA) {
     84       1.1       gwr 		if (!db_expression(&sig)) {
     85       1.1       gwr 			db_error("sig?\n");
     86       1.1       gwr 			/*NOTREACHED*/
     87       1.1       gwr 		}
     88       1.1       gwr 	} else {
     89       1.1       gwr 		db_unread_token(t);
     90       1.1       gwr 		sig = 15;
     91       1.1       gwr 	}
     92       1.1       gwr 	if (db_read_token() != tEOL) {
     93      1.16    simonb 		db_error("?\n");
     94      1.16    simonb 		/*NOTREACHED*/
     95       1.1       gwr 	}
     96       1.1       gwr 
     97       1.1       gwr 	p = pfind((pid_t)pid);
     98       1.1       gwr 	if (p == NULL) {
     99       1.1       gwr 		db_error("no such proc\n");
    100      1.16    simonb 		/*NOTREACHED*/
    101       1.1       gwr 	}
    102       1.1       gwr 	psignal(p, (int)sig);
    103       1.1       gwr }
    104      1.21    briggs 
    105      1.21    briggs #ifdef KGDB
    106      1.21    briggs void
    107      1.31  drochner db_kgdb_cmd(db_expr_t addr, int haddr, db_expr_t count, const char *modif)
    108      1.21    briggs {
    109      1.21    briggs 	kgdb_active++;
    110      1.21    briggs 	kgdb_trap(db_trap_type, DDB_REGS);
    111      1.21    briggs 	kgdb_active--;
    112      1.21    briggs }
    113      1.21    briggs #endif
    114       1.1       gwr 
    115       1.1       gwr void
    116      1.31  drochner db_show_all_procs(db_expr_t addr, int haddr, db_expr_t count, const char *modif)
    117       1.1       gwr {
    118       1.3      ross 	int i;
    119      1.18   thorpej 
    120      1.31  drochner 	const char *mode;
    121      1.18   thorpej 	struct proc *p, *pp, *cp;
    122      1.18   thorpej 	struct lwp *l, *cl;
    123      1.14       chs 	struct timeval tv[2];
    124       1.5   thorpej 	const struct proclist_desc *pd;
    125      1.16    simonb 
    126       1.2     chuck 	if (modif[0] == 0)
    127      1.31  drochner 		mode = "n";			/* default == normal mode */
    128      1.31  drochner 	else
    129      1.31  drochner 		mode = strchr("mawln", modif[0]);
    130       1.2     chuck 
    131       1.2     chuck 	if (mode == NULL || *mode == 'm') {
    132      1.36       uwe 		db_printf("usage: show all procs [/a] [/l] [/n] [/w]\n");
    133       1.2     chuck 		db_printf("\t/a == show process address info\n");
    134      1.18   thorpej 		db_printf("\t/l == show LWP info\n");
    135       1.2     chuck 		db_printf("\t/n == show normal process info [default]\n");
    136       1.2     chuck 		db_printf("\t/w == show process wait/emul info\n");
    137       1.2     chuck 		return;
    138       1.2     chuck 	}
    139      1.16    simonb 
    140       1.2     chuck 	switch (*mode) {
    141       1.2     chuck 	case 'a':
    142       1.3      ross 		db_printf(" PID       %10s %18s %18s %18s\n",
    143       1.2     chuck 		    "COMMAND", "STRUCT PROC *", "UAREA *", "VMSPACE/VM_MAP");
    144       1.2     chuck 		break;
    145      1.18   thorpej 	case 'l':
    146      1.27       uwe 		db_printf(" PID        %4s S %9s %18s %18s %-12s\n",
    147      1.18   thorpej 		    "LID", "FLAGS", "STRUCT LWP *", "UAREA *", "WAIT");
    148      1.18   thorpej 		break;
    149       1.2     chuck 	case 'n':
    150      1.18   thorpej 		db_printf(" PID       %8s %8s %10s S %7s %4s %16s %7s\n",
    151      1.18   thorpej 		    "PPID", "PGRP", "UID", "FLAGS", "LWPS", "COMMAND", "WAIT");
    152       1.2     chuck 		break;
    153       1.2     chuck 	case 'w':
    154       1.3      ross 		db_printf(" PID       %10s %8s %4s %5s %5s %-12s%s\n",
    155       1.3      ross 		    "COMMAND", "EMUL", "PRI", "UTIME", "STIME",
    156       1.3      ross 		    "WAIT-MSG", "WAIT-CHANNEL");
    157       1.2     chuck 		break;
    158       1.2     chuck 	}
    159       1.2     chuck 
    160       1.6   thorpej 	/* XXX LOCKING XXX */
    161       1.5   thorpej 	pd = proclists;
    162      1.18   thorpej 	cp = curproc;
    163      1.18   thorpej 	cl = curlwp;
    164      1.14       chs 	for (pd = proclists; pd->pd_list != NULL; pd++) {
    165      1.14       chs 		LIST_FOREACH(p, pd->pd_list, p_list) {
    166      1.14       chs 			pp = p->p_pptr;
    167      1.14       chs 			if (p->p_stat == 0) {
    168      1.14       chs 				continue;
    169      1.14       chs 			}
    170      1.24      fvdl 			l = LIST_FIRST(&p->p_lwps);
    171      1.35       uwe 			db_printf("%c%-10d", (cp == p ? '>' : ' '), p->p_pid);
    172       1.2     chuck 
    173       1.2     chuck 			switch (*mode) {
    174       1.2     chuck 
    175       1.2     chuck 			case 'a':
    176       1.2     chuck 				db_printf("%10.10s %18p %18p %18p\n",
    177      1.19        pk 				    p->p_comm, p,
    178      1.19        pk 				    l != NULL ? l->l_addr : 0,
    179      1.19        pk 				    p->p_vmspace);
    180      1.18   thorpej 				break;
    181      1.18   thorpej 			case 'l':
    182      1.19        pk 				 while (l != NULL) {
    183      1.27       uwe 					db_printf("%c%4d %d %#9x %18p %18p %s\n",
    184      1.35       uwe 					    (cl == l ? '>' : ' '), l->l_lid,
    185      1.30     perry 					    l->l_stat, l->l_flag, l,
    186      1.30     perry 					    l->l_addr,
    187      1.18   thorpej 					    (l->l_wchan && l->l_wmesg) ?
    188      1.18   thorpej 					    l->l_wmesg : "");
    189      1.18   thorpej 
    190      1.18   thorpej 					l = LIST_NEXT(l, l_sibling);
    191      1.18   thorpej 					if (l)
    192      1.18   thorpej 						db_printf("%11s","");
    193      1.19        pk 				}
    194       1.2     chuck 				break;
    195       1.2     chuck 			case 'n':
    196      1.18   thorpej 				db_printf("%8d %8d %10d %d %#7x %4d %16s %7.7s\n",
    197       1.2     chuck 				    pp ? pp->p_pid : -1, p->p_pgrp->pg_id,
    198  1.37.6.1      yamt 				    kauth_cred_getuid(p->p_cred), p->p_stat, p->p_flag,
    199      1.18   thorpej 				    p->p_nlwps, p->p_comm,
    200      1.19        pk 				    (p->p_nlwps != 1) ? "*" : (
    201      1.30     perry 				    (l->l_wchan && l->l_wmesg) ?
    202      1.18   thorpej 				    l->l_wmesg : ""));
    203       1.2     chuck 				break;
    204       1.2     chuck 
    205       1.2     chuck 			case 'w':
    206       1.3      ross 				db_printf("%10s %8s %4d", p->p_comm,
    207      1.19        pk 				    p->p_emul->e_name,
    208      1.19        pk 				    (l != NULL) ? l->l_priority : -1);
    209      1.14       chs 				calcru(p, &tv[0], &tv[1], NULL);
    210      1.14       chs 				for (i = 0; i < 2; ++i) {
    211       1.8    kleink 					db_printf("%4ld.%1ld",
    212       1.8    kleink 					    (long)tv[i].tv_sec,
    213       1.8    kleink 					    (long)tv[i].tv_usec/100000);
    214       1.3      ross 				}
    215      1.19        pk 				if (p->p_nlwps == 1) {
    216      1.18   thorpej 				if (l->l_wchan && l->l_wmesg) {
    217      1.18   thorpej 					db_printf(" %-12s", l->l_wmesg);
    218      1.17       scw 					db_printsym(
    219      1.18   thorpej 					    (db_expr_t)(intptr_t)l->l_wchan,
    220       1.9     jhawk 					    DB_STGY_XTRN, db_printf);
    221      1.18   thorpej 				} } else {
    222      1.18   thorpej 					db_printf(" * ");
    223       1.3      ross 				}
    224       1.3      ross 				db_printf("\n");
    225       1.2     chuck 				break;
    226       1.2     chuck 
    227       1.1       gwr 			}
    228      1.10       eeh 		}
    229      1.10       eeh 	}
    230      1.12    atatat }
    231      1.12    atatat 
    232      1.12    atatat void
    233      1.33      yamt db_show_all_pools(db_expr_t addr, int haddr, db_expr_t count, const char *modif)
    234      1.33      yamt {
    235      1.33      yamt 
    236      1.33      yamt 	pool_printall(modif, db_printf);
    237      1.33      yamt }
    238      1.33      yamt 
    239      1.33      yamt void
    240      1.31  drochner db_dmesg(db_expr_t addr, int haddr, db_expr_t count, const char *modif)
    241      1.12    atatat {
    242      1.12    atatat 	struct kern_msgbuf *mbp;
    243      1.25    simonb 	db_expr_t print;
    244      1.12    atatat 	int ch, newl, skip, i;
    245      1.12    atatat 	char *p, *bufdata;
    246      1.22    atatat 
    247      1.22    atatat         if (!msgbufenabled || msgbufp->msg_magic != MSG_MAGIC) {
    248      1.22    atatat 		db_printf("message buffer not available\n");
    249      1.22    atatat 		return;
    250      1.22    atatat 	}
    251      1.12    atatat 
    252      1.12    atatat 	mbp = msgbufp;
    253      1.12    atatat 	bufdata = &mbp->msg_bufc[0];
    254      1.12    atatat 
    255      1.25    simonb 	if (haddr && addr < mbp->msg_bufs)
    256      1.25    simonb 		print = addr;
    257      1.25    simonb 	else
    258      1.25    simonb 		print = mbp->msg_bufs;
    259      1.25    simonb 
    260      1.12    atatat 	for (newl = skip = i = 0, p = bufdata + mbp->msg_bufx;
    261      1.12    atatat 	    i < mbp->msg_bufs; i++, p++) {
    262      1.12    atatat 		if (p == bufdata + mbp->msg_bufs)
    263      1.12    atatat 			p = bufdata;
    264      1.25    simonb 		if (i < mbp->msg_bufs - print)
    265      1.25    simonb 			continue;
    266      1.12    atatat 		ch = *p;
    267      1.12    atatat 		/* Skip "\n<.*>" syslog sequences. */
    268      1.12    atatat 		if (skip) {
    269      1.12    atatat 			if (ch == '>')
    270      1.12    atatat 				newl = skip = 0;
    271      1.12    atatat 			continue;
    272      1.12    atatat 		}
    273      1.12    atatat 		if (newl && ch == '<') {
    274      1.12    atatat 			skip = 1;
    275      1.12    atatat 			continue;
    276      1.12    atatat 		}
    277      1.12    atatat 		if (ch == '\0')
    278      1.12    atatat 			continue;
    279      1.12    atatat 		newl = ch == '\n';
    280      1.12    atatat 		db_printf("%c", ch);
    281      1.12    atatat 	}
    282      1.12    atatat 	if (!newl)
    283      1.12    atatat 		db_printf("\n");
    284      1.28   thorpej }
    285      1.28   thorpej 
    286      1.29   nathanw #ifdef __HAVE_BIGENDIAN_BITOPS
    287      1.29   nathanw #define	RQMASK(n) (0x80000000 >> (n))
    288      1.29   nathanw #else
    289      1.29   nathanw #define	RQMASK(n) (0x00000001 << (n))
    290      1.29   nathanw #endif
    291      1.29   nathanw 
    292      1.28   thorpej void
    293      1.31  drochner db_show_sched_qs(db_expr_t addr, int haddr, db_expr_t count, const char *modif)
    294      1.28   thorpej {
    295      1.28   thorpej 	struct prochd *ph;
    296      1.28   thorpej 	struct lwp *l;
    297      1.28   thorpej 	int i, first;
    298      1.28   thorpej 
    299      1.28   thorpej 	for (i = 0; i < RUNQUE_NQS; i++)
    300      1.28   thorpej 	{
    301      1.28   thorpej 		first = 1;
    302      1.28   thorpej 		ph = &sched_qs[i];
    303      1.37       uwe 		for (l = ph->ph_link; l != (void *)ph; l = l->l_forw) {
    304      1.28   thorpej 			if (first) {
    305      1.28   thorpej 				db_printf("%c%d",
    306      1.29   nathanw 				    (sched_whichqs & RQMASK(i))
    307      1.28   thorpej 				    ? ' ' : '!', i);
    308      1.28   thorpej 				first = 0;
    309      1.28   thorpej 			}
    310      1.32      yamt 			db_printf("\t%d.%d (%s) pri=%d usrpri=%d\n",
    311      1.32      yamt 			    l->l_proc->p_pid,
    312      1.32      yamt 			    l->l_lid, l->l_proc->p_comm,
    313      1.32      yamt 			    (int)l->l_priority, (int)l->l_usrpri);
    314      1.28   thorpej 		}
    315      1.28   thorpej 	}
    316       1.1       gwr }
    317