]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/amd64/amd64/db_interface.c
Upgrade our copies of clang, llvm, lld, lldb, compiler-rt and libc++ to
[FreeBSD/FreeBSD.git] / sys / amd64 / amd64 / db_interface.c
1 /*-
2  * Mach Operating System
3  * Copyright (c) 1991,1990 Carnegie Mellon University
4  * All Rights Reserved.
5  *
6  * Permission to use, copy, modify and distribute this software and its
7  * documentation is hereby granted, provided that both the copyright
8  * notice and this permission notice appear in all copies of the
9  * software, derivative works or modified versions, and any portions
10  * thereof, and that both notices appear in supporting documentation.
11  *
12  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS
13  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
14  * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
15  *
16  * Carnegie Mellon requests users of this software to return to
17  *
18  *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
19  *  School of Computer Science
20  *  Carnegie Mellon University
21  *  Pittsburgh PA 15213-3890
22  *
23  * any improvements or extensions that they make and grant Carnegie the
24  * rights to redistribute these changes.
25  */
26
27 #include <sys/cdefs.h>
28 __FBSDID("$FreeBSD$");
29
30 /*
31  * Interface to new debugger.
32  */
33
34 #include <sys/param.h>
35 #include <sys/systm.h>
36 #include <sys/kdb.h>
37 #include <sys/pcpu.h>
38
39 #include <ddb/ddb.h>
40
41 /*
42  * Read bytes from kernel address space for debugger.
43  */
44 int
45 db_read_bytes(vm_offset_t addr, size_t size, char *data)
46 {
47         jmp_buf jb;
48         void *prev_jb;
49         char *src;
50         int ret;
51
52         prev_jb = kdb_jmpbuf(jb);
53         ret = setjmp(jb);
54         if (ret == 0) {
55                 src = (char *)addr;
56                 while (size-- > 0)
57                         *data++ = *src++;
58         }
59         (void)kdb_jmpbuf(prev_jb);
60         return (ret);
61 }
62
63 /*
64  * Write bytes to kernel address space for debugger.
65  */
66 int
67 db_write_bytes(vm_offset_t addr, size_t size, char *data)
68 {
69         jmp_buf jb;
70         void *prev_jb;
71         char *dst;
72         int ret;
73
74         prev_jb = kdb_jmpbuf(jb);
75         ret = setjmp(jb);
76         if (ret == 0) {
77                 dst = (char *)addr;
78                 while (size-- > 0)
79                         *dst++ = *data++;
80         }
81         (void)kdb_jmpbuf(prev_jb);
82         return (ret);
83 }
84
85 void
86 db_show_mdpcpu(struct pcpu *pc)
87 {
88
89         db_printf("curpmap      = %p\n", pc->pc_curpmap);
90         db_printf("tssp         = %p\n", pc->pc_tssp);
91         db_printf("commontssp   = %p\n", pc->pc_commontssp);
92         db_printf("rsp0         = 0x%lx\n", pc->pc_rsp0);
93         db_printf("gs32p        = %p\n", pc->pc_gs32p);
94         db_printf("ldt          = %p\n", pc->pc_ldt);
95         db_printf("tss          = %p\n", pc->pc_tss);
96 }