]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/gcore/md-sparc.c
BSD 4.4 Lite Usr.bin Sources
[FreeBSD/FreeBSD.git] / usr.bin / gcore / md-sparc.c
1 /*-
2  * Copyright (c) 1992, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
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.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
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  * 3. All advertising materials mentioning features or use of this software
18  *    must display the following acknowledgement:
19  *      This product includes software developed by the University of
20  *      California, Berkeley and its contributors.
21  * 4. Neither the name of the University nor the names of its contributors
22  *    may be used to endorse or promote products derived from this software
23  *    without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35  * SUCH DAMAGE.
36  */
37
38 #ifndef lint
39 static char sccsid[] = "@(#)md-sparc.c  8.1 (Berkeley) 6/6/93";
40 #endif /* not lint */
41
42 #include <sys/param.h>
43 #include <sys/time.h>
44 #include <sys/file.h>
45 #include <sys/stat.h>
46 #include <sys/proc.h>
47 #include <sys/user.h>
48 #include <sys/sysctl.h>
49 #include <machine/vmparam.h>
50
51 #include <kvm.h>
52 #include <unistd.h>
53 #include <stdio.h>
54 #include <string.h>
55 #include "extern.h"
56
57 #ifndef offsetof
58 #define offsetof(s, f) ((int)&((s *)0)->f)
59 #endif
60
61 static void
62 shift_page(fd, off, ssize)
63         register int fd;
64         register off_t off;
65         register int ssize;
66 {
67         char buffer[NBPG];
68
69         (void)lseek(fd, (off_t)-NBPG, SEEK_END);
70         for (; ssize > 0; ssize -= NBPG) {
71                 (void)read(fd, buffer, NBPG);
72                 (void)write(fd, buffer, NBPG);
73                 (void)lseek(fd, (off_t)-2 * NBPG, SEEK_CUR);
74         }
75 }
76
77 /*
78  * Fix up the core image for the sparc.  We need to flush any register
79  * windows that are cached in the pcb out to the user stack.
80  * Also, we need to get the trap frame and possible floating point state
81  * from the top of the kernel stack and store it in the pcb.
82  */
83 void
84 md_core(kd, fd, ki)
85         kvm_t *kd;
86         int fd;
87         struct kinfo_proc *ki;
88 {
89         register struct rwindow *rw;
90         register int nsaved, cc, ssize;
91         register off_t off, s;
92         register u_long sp;
93         struct pcb pcb;
94         struct trapframe tf;
95
96         /*
97          * Before anything else read the trapframe.  Synchronizing here
98          * is impossible if the process is running.
99          */
100         cc = kvm_read(kd, (u_long)ki->kp_proc.p_md.md_tf,
101                       /* XXX */
102                       (void *)&tf, sizeof(tf));
103         if (cc < 0)
104                 err(1, "kvm_read: %s (reading kernel trapframe)",
105                       kvm_geterr(kd));
106         if (cc != sizeof(tf))
107                 err(1, "cannot read kernel trapframe");
108
109         /*
110          * Write out the real trap frame.
111          */
112         off = offsetof(struct user, u_md);
113         off += offsetof(struct md_coredump, md_tf);
114         if (lseek(fd, off, SEEK_SET) == -1)
115                 err(1, "lseek: %s", strerror(errno));
116         (void)write(fd, &tf, sizeof(tf));
117
118         if (ki->kp_proc.p_md.md_fpstate != 0) {
119                 /*
120                  * If floating point state is present, write it out too.
121                  * It comes right after the trapframe so we don't need to seek.
122                  */
123                 struct fpstate fs;
124                 cc = kvm_read(kd, (u_long)ki->kp_proc.p_md.md_fpstate,
125                               (void *)&fs, sizeof(fs));
126                 if (cc < 0)
127                         err(1, "kvm_read: %s (fpu state)", kvm_geterr(kd));
128                 if (cc != sizeof(fs))
129                         err(1, "cannot read fpu state");
130                 (void)write(fd, (char *)&fs, sizeof(fs));
131         }
132         /*
133          * Read pcb.
134          */
135         if (lseek(fd, (off_t)offsetof(struct user, u_pcb), SEEK_SET) == -1)
136                 err(1, "lseek: %s", strerror(errno));
137         cc = read(fd, (char *)&pcb, sizeof(pcb));
138         if (cc != sizeof(pcb)) {
139                 if (cc < 0)
140                         err(1, "read: %s", strerror(errno));
141                 err(1, "couldn't read pcb from core file");
142         }
143
144         /*
145          * Write any unsaved windows to the appropriate stack locations.
146          */
147         nsaved = pcb.pcb_nsaved;
148         if (nsaved == 0)
149                 return;
150
151         rw = &pcb.pcb_rw[0];
152         off = ctob(UPAGES + ki->kp_eproc.e_vm.vm_dsize);
153         ssize = ctob(ki->kp_eproc.e_vm.vm_ssize);
154         sp = tf.tf_out[6];
155         for (; --nsaved >= 0; ++rw) {
156                 /*
157                  * Copy register window into appropriate stack location.
158                  */
159                 s = ssize - (USRSTACK - sp);
160                 if (s < 0) {
161                         if (s < -NBPG)
162                                 err(1, "cannot copy pcb windows to stack");
163                         /*
164                          * It's possible to be missing the bottomost
165                          * page because a stack page hasn't been allocated
166                          * for the register save area.  Shift over
167                          * the stack segment by a page, and update 
168                          * the u-area to reflect the new stack size.  YECH!
169                          */
170                         shift_page(fd, off, ssize);
171                         ssize += NBPG;
172                         s += NBPG;
173                         ++ki->kp_eproc.e_vm.vm_ssize;
174                         (void)lseek(fd,
175                             (off_t)offsetof(struct user, u_kproc.kp_eproc.e_vm),
176                             SEEK_SET);
177                         (void)write(fd,
178                             &ki->kp_eproc.e_vm, sizeof(ki->kp_eproc.e_vm));
179                 }
180                 if (lseek(fd, off + s, SEEK_SET) == -1)
181                         err(1, "cannot copy pcb windows to stack");
182
183                 (void)write(fd, rw, sizeof(*rw));
184                 sp = rw->rw_in[6];
185         }
186 }