NetBSD/sys/ddb/db_watch.c

231 lines
5.2 KiB
C
Raw Normal View History

/* $NetBSD: db_watch.c,v 1.19 2002/02/15 07:33:54 simonb Exp $ */
/*
1993-03-21 12:45:37 +03:00
* Mach Operating System
* Copyright (c) 1991,1990 Carnegie Mellon University
* All Rights Reserved.
*
1993-03-21 12:45:37 +03:00
* Permission to use, copy, modify and distribute this software and its
* documentation is hereby granted, provided that both the copyright
* notice and this permission notice appear in all copies of the
* software, derivative works or modified versions, and any portions
* thereof, and that both notices appear in supporting documentation.
*
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
1993-03-21 12:45:37 +03:00
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
* ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
*
1993-03-21 12:45:37 +03:00
* Carnegie Mellon requests users of this software to return to
*
1993-03-21 12:45:37 +03:00
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
* School of Computer Science
* Carnegie Mellon University
* Pittsburgh PA 15213-3890
*
1993-03-21 12:45:37 +03:00
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* Author: Richard P. Draves, Carnegie Mellon University
* Date: 10/90
*/
2001-11-13 01:54:03 +03:00
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: db_watch.c,v 1.19 2002/02/15 07:33:54 simonb Exp $");
2001-11-13 01:54:03 +03:00
1993-12-18 07:46:25 +03:00
#include <sys/param.h>
#include <sys/proc.h>
1993-03-21 12:45:37 +03:00
1994-10-09 11:29:55 +03:00
#include <machine/db_machdep.h>
#include <ddb/db_break.h>
1993-03-21 12:45:37 +03:00
#include <ddb/db_watch.h>
1994-10-09 11:19:29 +03:00
#include <ddb/db_lex.h>
1993-03-21 12:45:37 +03:00
#include <ddb/db_access.h>
1996-02-05 04:56:47 +03:00
#include <ddb/db_run.h>
1993-03-21 12:45:37 +03:00
#include <ddb/db_sym.h>
1996-02-05 04:56:47 +03:00
#include <ddb/db_output.h>
#include <ddb/db_command.h>
#include <ddb/db_extern.h>
1993-03-21 12:45:37 +03:00
/*
* Watchpoints.
*/
static boolean_t db_watchpoints_inserted = TRUE;
1993-03-21 12:45:37 +03:00
#define NWATCHPOINTS 100
static struct db_watchpoint db_watch_table[NWATCHPOINTS];
static db_watchpoint_t db_next_free_watchpoint = &db_watch_table[0];
static db_watchpoint_t db_free_watchpoints = 0;
static db_watchpoint_t db_watchpoint_list = 0;
static void db_delete_watchpoint(struct vm_map *, db_addr_t);
static void db_list_watchpoints(void);
static void db_set_watchpoint(struct vm_map *, db_addr_t, vsize_t);
static db_watchpoint_t db_watchpoint_alloc(void);
static void db_watchpoint_free(db_watchpoint_t);
1993-03-21 12:45:37 +03:00
db_watchpoint_t
db_watchpoint_alloc(void)
1993-03-21 12:45:37 +03:00
{
2000-03-30 15:31:26 +04:00
db_watchpoint_t watch;
1993-03-21 12:45:37 +03:00
if ((watch = db_free_watchpoints) != 0) {
db_free_watchpoints = watch->link;
return (watch);
1993-03-21 12:45:37 +03:00
}
if (db_next_free_watchpoint == &db_watch_table[NWATCHPOINTS]) {
db_printf("All watchpoints used.\n");
return (0);
1993-03-21 12:45:37 +03:00
}
watch = db_next_free_watchpoint;
db_next_free_watchpoint++;
return (watch);
}
void
db_watchpoint_free(db_watchpoint_t watch)
1993-03-21 12:45:37 +03:00
{
watch->link = db_free_watchpoints;
db_free_watchpoints = watch;
}
void
db_set_watchpoint(struct vm_map *map, db_addr_t addr, vsize_t size)
1993-03-21 12:45:37 +03:00
{
2000-03-30 15:31:26 +04:00
db_watchpoint_t watch;
1993-03-21 12:45:37 +03:00
if (map == NULL) {
db_printf("No map.\n");
return;
1993-03-21 12:45:37 +03:00
}
/*
* Should we do anything fancy with overlapping regions?
*/
for (watch = db_watchpoint_list; watch != 0; watch = watch->link)
if (db_map_equal(watch->map, map) &&
(watch->loaddr == addr) &&
(watch->hiaddr == addr+size)) {
db_printf("Already set.\n");
return;
}
1993-03-21 12:45:37 +03:00
watch = db_watchpoint_alloc();
if (watch == 0) {
db_printf("Too many watchpoints.\n");
return;
1993-03-21 12:45:37 +03:00
}
watch->map = map;
watch->loaddr = addr;
watch->hiaddr = addr+size;
watch->link = db_watchpoint_list;
db_watchpoint_list = watch;
db_watchpoints_inserted = FALSE;
}
static void
db_delete_watchpoint(struct vm_map *map, db_addr_t addr)
1993-03-21 12:45:37 +03:00
{
2000-03-30 15:31:26 +04:00
db_watchpoint_t watch;
db_watchpoint_t *prev;
1993-03-21 12:45:37 +03:00
for (prev = &db_watchpoint_list;
(watch = *prev) != 0;
prev = &watch->link)
if (db_map_equal(watch->map, map) &&
(watch->loaddr <= addr) &&
(addr < watch->hiaddr)) {
*prev = watch->link;
db_watchpoint_free(watch);
return;
}
1993-03-21 12:45:37 +03:00
db_printf("Not set.\n");
}
void
db_list_watchpoints(void)
1993-03-21 12:45:37 +03:00
{
2000-03-30 15:31:26 +04:00
db_watchpoint_t watch;
1993-03-21 12:45:37 +03:00
if (db_watchpoint_list == 0) {
db_printf("No watchpoints set\n");
return;
1993-03-21 12:45:37 +03:00
}
db_printf(" Map Address Size\n");
for (watch = db_watchpoint_list; watch != 0; watch = watch->link)
db_printf("%s%p %8lx %lx\n",
db_map_current(watch->map) ? "*" : " ",
watch->map, watch->loaddr,
watch->hiaddr - watch->loaddr);
1993-03-21 12:45:37 +03:00
}
/* Delete watchpoint */
/*ARGSUSED*/
void
db_deletewatch_cmd(db_expr_t addr, int have_addr, db_expr_t count, char *modif)
1993-03-21 12:45:37 +03:00
{
1993-03-21 12:45:37 +03:00
db_delete_watchpoint(db_map_addr(addr), addr);
}
/* Set watchpoint */
/*ARGSUSED*/
void
db_watchpoint_cmd(db_expr_t addr, int have_addr, db_expr_t count, char *modif)
1993-03-21 12:45:37 +03:00
{
vsize_t size;
db_expr_t value;
1993-03-21 12:45:37 +03:00
if (db_expression(&value))
size = (vsize_t) value;
1993-03-21 12:45:37 +03:00
else
size = 4;
1993-03-21 12:45:37 +03:00
db_skip_to_eol();
db_set_watchpoint(db_map_addr(addr), addr, size);
}
/* list watchpoints */
1996-02-05 04:56:47 +03:00
/*ARGSUSED*/
1993-03-21 12:45:37 +03:00
void
db_listwatch_cmd(db_expr_t addr, int have_addr, db_expr_t count, char *modif)
1993-03-21 12:45:37 +03:00
{
1993-03-21 12:45:37 +03:00
db_list_watchpoints();
}
void
db_set_watchpoints(void)
1993-03-21 12:45:37 +03:00
{
2000-03-30 15:31:26 +04:00
db_watchpoint_t watch;
1993-03-21 12:45:37 +03:00
if (!db_watchpoints_inserted) {
for (watch = db_watchpoint_list;
watch != 0;
watch = watch->link) {
pmap_protect(watch->map->pmap,
trunc_page(watch->loaddr),
round_page(watch->hiaddr),
VM_PROT_READ);
pmap_update(watch->map->pmap);
}
db_watchpoints_inserted = TRUE;
1993-03-21 12:45:37 +03:00
}
}
void
db_clear_watchpoints(void)
1993-03-21 12:45:37 +03:00
{
db_watchpoints_inserted = FALSE;
1993-03-21 12:45:37 +03:00
}