Touches most files in bfd/, so likely will be blamed for everything..
[binutils.git] / bfd / lynx-core.c
blob1d4a763d0dc571d0494b79d7231cd4df064c2067
1 /* BFD back end for Lynx core files
2 Copyright 1993, 1994, 1995, 2001 Free Software Foundation, Inc.
3 Written by Stu Grossman of Cygnus Support.
5 This file is part of BFD, the Binary File Descriptor library.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
21 #include "bfd.h"
22 #include "sysdep.h"
23 #include "libbfd.h"
25 #ifdef LYNX_CORE
27 #include <sys/conf.h>
28 #include <sys/kernel.h>
29 /* sys/kernel.h should define this, but doesn't always, sigh. */
30 #ifndef __LYNXOS
31 #define __LYNXOS
32 #endif
33 #include <sys/mem.h>
34 #include <sys/signal.h>
35 #include <sys/time.h>
36 #include <sys/resource.h>
37 #include <sys/itimer.h>
38 #include <sys/file.h>
39 #include <sys/proc.h>
41 /* These are stored in the bfd's tdata */
43 struct lynx_core_struct
45 int sig;
46 char cmd[PNMLEN + 1];
49 #define core_hdr(bfd) ((bfd)->tdata.lynx_core_data)
50 #define core_signal(bfd) (core_hdr(bfd)->sig)
51 #define core_command(bfd) (core_hdr(bfd)->cmd)
53 /* Handle Lynx core dump file. */
55 static asection *
56 make_bfd_asection (abfd, name, flags, _raw_size, vma, filepos)
57 bfd *abfd;
58 const char *name;
59 flagword flags;
60 bfd_size_type _raw_size;
61 bfd_vma vma;
62 file_ptr filepos;
64 asection *asect;
65 char *newname;
67 newname = bfd_alloc (abfd, (bfd_size_type) strlen (name) + 1);
68 if (!newname)
69 return NULL;
71 strcpy (newname, name);
73 asect = bfd_make_section (abfd, newname);
74 if (!asect)
75 return NULL;
77 asect->flags = flags;
78 asect->_raw_size = _raw_size;
79 asect->vma = vma;
80 asect->filepos = filepos;
81 asect->alignment_power = 2;
83 return asect;
86 const bfd_target *
87 lynx_core_file_p (abfd)
88 bfd *abfd;
90 int secnum;
91 struct pssentry pss;
92 bfd_size_type tcontext_size;
93 core_st_t *threadp;
94 int pagesize;
95 asection *newsect;
96 bfd_size_type amt;
98 pagesize = getpagesize (); /* Serious cross-target issue here... This
99 really needs to come from a system-specific
100 header file. */
102 /* Get the pss entry from the core file */
104 if (bfd_seek (abfd, (file_ptr) 0, SEEK_SET) != 0)
105 return NULL;
107 amt = sizeof pss;
108 if (bfd_bread ((void *) &pss, amt, abfd) != amt)
110 /* Too small to be a core file */
111 if (bfd_get_error () != bfd_error_system_call)
112 bfd_set_error (bfd_error_wrong_format);
113 return NULL;
116 amt = sizeof (struct lynx_core_struct);
117 core_hdr (abfd) = (struct lynx_core_struct *) bfd_zalloc (abfd, amt);
119 if (!core_hdr (abfd))
120 return NULL;
122 strncpy (core_command (abfd), pss.pname, PNMLEN + 1);
124 /* Compute the size of the thread contexts */
126 tcontext_size = pss.threadcnt * sizeof (core_st_t);
128 /* Allocate space for the thread contexts */
130 threadp = (core_st_t *) bfd_alloc (abfd, tcontext_size);
131 if (!threadp)
132 return NULL;
134 /* Save thread contexts */
136 if (bfd_seek (abfd, (file_ptr) pagesize, SEEK_SET) != 0)
137 return NULL;
139 if (bfd_bread ((void *) threadp, tcontext_size, abfd) != tcontext_size)
141 /* Probably too small to be a core file */
142 if (bfd_get_error () != bfd_error_system_call)
143 bfd_set_error (bfd_error_wrong_format);
144 return NULL;
147 core_signal (abfd) = threadp->currsig;
149 newsect = make_bfd_asection (abfd, ".stack",
150 SEC_ALLOC + SEC_LOAD + SEC_HAS_CONTENTS,
151 pss.ssize,
152 pss.slimit,
153 pagesize + tcontext_size);
154 if (!newsect)
155 return NULL;
157 newsect = make_bfd_asection (abfd, ".data",
158 SEC_ALLOC + SEC_LOAD + SEC_HAS_CONTENTS,
159 pss.data_len + pss.bss_len,
160 pss.data_start,
161 pagesize + tcontext_size + pss.ssize
162 #if defined (SPARC) || defined (__SPARC__)
163 /* SPARC Lynx seems to start dumping
164 the .data section at a page
165 boundary. It's OK to check a
166 #define like SPARC here because this
167 file can only be compiled on a Lynx
168 host. */
169 + pss.data_start % pagesize
170 #endif
172 if (!newsect)
173 return NULL;
175 /* And, now for the .reg/XXX pseudo sections. Each thread has it's own
176 .reg/XXX section, where XXX is the thread id (without leading zeros). The
177 currently running thread (at the time of the core dump) also has an alias
178 called `.reg' (just to keep GDB happy). Note that we use `.reg/XXX' as
179 opposed to `.regXXX' because GDB expects that .reg2 will be the floating-
180 point registers. */
182 newsect = make_bfd_asection (abfd, ".reg",
183 SEC_HAS_CONTENTS,
184 sizeof (core_st_t),
186 pagesize);
187 if (!newsect)
188 return NULL;
190 for (secnum = 0; secnum < pss.threadcnt; secnum++)
192 char secname[100];
194 sprintf (secname, ".reg/%d", BUILDPID (0, threadp[secnum].tid));
195 newsect = make_bfd_asection (abfd, secname,
196 SEC_HAS_CONTENTS,
197 sizeof (core_st_t),
199 pagesize + secnum * sizeof (core_st_t));
200 if (!newsect)
201 return NULL;
204 return abfd->xvec;
207 char *
208 lynx_core_file_failing_command (abfd)
209 bfd *abfd;
211 return core_command (abfd);
215 lynx_core_file_failing_signal (abfd)
216 bfd *abfd;
218 return core_signal (abfd);
221 boolean
222 lynx_core_file_matches_executable_p (core_bfd, exec_bfd)
223 bfd *core_bfd, *exec_bfd;
225 return true; /* FIXME, We have no way of telling at this point */
228 #endif /* LYNX_CORE */