2 * Copyright (c) 1992, 1993
3 * The Regents of the University of California. All rights reserved.
5 * This software was developed by the Computer Systems Engineering group
6 * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
7 * contributed to Berkeley.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * @(#)md-sparc.c 8.1 (Berkeley) 6/6/93
35 * $DragonFly: src/usr.bin/gcore/md-sparc.c,v 1.5 2005/04/10 20:55:38 drhodus Exp $
39 #include <sys/param.h>
43 #include <sys/sysctl.h>
44 #include <machine/vmparam.h>
54 #define offsetof(s, f) ((int)&((s *)0)->f)
58 shift_page(int fd
, off_t off
, int ssize
)
62 (void)lseek(fd
, (off_t
)-NBPG
, SEEK_END
);
63 for (; ssize
> 0; ssize
-= NBPG
) {
64 (void)read(fd
, buffer
, NBPG
);
65 (void)write(fd
, buffer
, NBPG
);
66 (void)lseek(fd
, (off_t
)-2 * NBPG
, SEEK_CUR
);
71 * Fix up the core image for the sparc. We need to flush any register
72 * windows that are cached in the pcb out to the user stack.
73 * Also, we need to get the trap frame and possible floating point state
74 * from the top of the kernel stack and store it in the pcb.
77 md_core(kvm_t
*kd
, int fd
, struct kinfo_proc
*ki
)
80 int nsaved
, cc
, ssize
;
87 * Before anything else read the trapframe. Synchronizing here
88 * is impossible if the process is running.
90 cc
= kvm_read(kd
, (u_long
)ki
->kp_proc
.p_md
.md_tf
,
92 (void *)&tf
, sizeof(tf
));
94 errx(1, "kvm_read: %s (reading kernel trapframe)",
97 errx(1, "cannot read kernel trapframe");
100 * Write out the real trap frame.
102 off
= offsetof(struct user
, u_md
);
103 off
+= offsetof(struct md_coredump
, md_tf
);
104 if (lseek(fd
, off
, SEEK_SET
) == -1)
106 (void)write(fd
, &tf
, sizeof(tf
));
108 if (ki
->kp_proc
.p_md
.md_fpstate
!= 0) {
110 * If floating point state is present, write it out too.
111 * It comes right after the trapframe so we don't need to seek.
114 cc
= kvm_read(kd
, (u_long
)ki
->kp_proc
.p_md
.md_fpstate
,
115 (void *)&fs
, sizeof(fs
));
117 errx(1, "kvm_read: %s (fpu state)", kvm_geterr(kd
));
118 if (cc
!= sizeof(fs
))
119 errx(1, "cannot read fpu state");
120 (void)write(fd
, (char *)&fs
, sizeof(fs
));
125 if (lseek(fd
, (off_t
)offsetof(struct user
, u_pcb
), SEEK_SET
) == -1)
127 cc
= read(fd
, (char *)&pcb
, sizeof(pcb
));
128 if (cc
!= sizeof(pcb
)) {
131 errx(1, "couldn't read pcb from core file");
135 * Write any unsaved windows to the appropriate stack locations.
137 nsaved
= pcb
.pcb_nsaved
;
142 off
= ctob(UPAGES
+ ki
->kp_eproc
.e_vm
.vm_dsize
);
143 ssize
= ctob(ki
->kp_eproc
.e_vm
.vm_ssize
);
145 for (; --nsaved
>= 0; ++rw
) {
147 * Copy register window into appropriate stack location.
149 s
= ssize
- (USRSTACK
- sp
);
152 errx(1, "cannot copy pcb windows to stack");
154 * It's possible to be missing the bottomost
155 * page because a stack page hasn't been allocated
156 * for the register save area. Shift over
157 * the stack segment by a page, and update
158 * the u-area to reflect the new stack size. YECH!
160 shift_page(fd
, off
, ssize
);
163 ++ki
->kp_eproc
.e_vm
.vm_ssize
;
165 (off_t
)offsetof(struct user
, u_kproc
.kp_eproc
.e_vm
),
168 &ki
->kp_eproc
.e_vm
, sizeof(ki
->kp_eproc
.e_vm
));
170 if (lseek(fd
, off
+ s
, SEEK_SET
) == -1)
171 errx(1, "cannot copy pcb windows to stack");
173 (void)write(fd
, rw
, sizeof(*rw
));