NetBSD/sys/ddb/db_write_cmd.c

101 lines
2.4 KiB
C
Raw Normal View History

2005-06-01 16:25:27 +04:00
/* $NetBSD: db_write_cmd.c,v 1.17 2005/06/01 12:25:27 drochner 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: David B. Golub, Carnegie Mellon University
* Date: 7/90
*/
2001-11-13 01:54:03 +03:00
#include <sys/cdefs.h>
2005-06-01 16:25:27 +04:00
__KERNEL_RCSID(0, "$NetBSD: db_write_cmd.c,v 1.17 2005/06/01 12:25:27 drochner 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
#include <machine/db_machdep.h>
#include <ddb/db_lex.h>
#include <ddb/db_access.h>
#include <ddb/db_command.h>
#include <ddb/db_sym.h>
1996-02-05 04:56:47 +03:00
#include <ddb/db_extern.h>
#include <ddb/db_output.h>
1993-03-21 12:45:37 +03:00
/*
* Write to file.
*/
/*ARGSUSED*/
void
db_write_cmd(db_expr_t address, boolean_t have_addr, db_expr_t count,
2005-06-01 16:25:27 +04:00
const char *modif)
1993-03-21 12:45:37 +03:00
{
db_addr_t addr;
db_expr_t old_value;
db_expr_t new_value;
2000-03-30 15:31:26 +04:00
int size;
1993-03-21 12:45:37 +03:00
boolean_t wrote_one = FALSE;
addr = (db_addr_t) address;
switch (modif[0]) {
case 'b':
1993-03-21 12:45:37 +03:00
size = 1;
break;
case 'h':
1993-03-21 12:45:37 +03:00
size = 2;
break;
case 'l':
case '\0':
1993-03-21 12:45:37 +03:00
size = 4;
break;
default:
1996-02-05 04:56:47 +03:00
size = -1;
1993-03-21 12:45:37 +03:00
db_error("Unknown size\n");
1994-10-09 11:56:23 +03:00
/*NOTREACHED*/
1993-03-21 12:45:37 +03:00
}
while (db_expression(&new_value)) {
old_value = db_get_value(addr, size, FALSE);
db_printsym(addr, DB_STGY_ANY, db_printf);
db_printf("\t\t%s = ", db_num_to_str(old_value));
db_printf("%s\n", db_num_to_str(new_value));
db_put_value(addr, size, new_value);
addr += size;
1993-03-21 12:45:37 +03:00
wrote_one = TRUE;
1993-03-21 12:45:37 +03:00
}
1994-10-09 11:56:23 +03:00
if (!wrote_one) {
db_error("Nothing written.\n");
/*NOTREACHED*/
1994-10-09 11:56:23 +03:00
}
1993-03-21 12:45:37 +03:00
db_next = addr;
db_prev = addr - size;
db_skip_to_eol();
}