2005-11-22 16:32:10 +00:00
|
|
|
|
/* vms-misc.c -- Miscellaneous functions for VAX (openVMS/VAX) and
|
|
|
|
|
EVAX (openVMS/Alpha) files.
|
|
|
|
|
Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
|
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
|
|
Written by Klaus K"ampf (kkaempf@rmi.de)
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
(at your option) any later version.
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
|
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
#if __STDC__
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include "bfd.h"
|
|
|
|
|
#include "sysdep.h"
|
|
|
|
|
#include "bfdlink.h"
|
|
|
|
|
#include "libbfd.h"
|
|
|
|
|
|
|
|
|
|
#include "vms.h"
|
2007-02-25 15:02:21 +00:00
|
|
|
|
|
2005-11-22 16:32:10 +00:00
|
|
|
|
#if VMS_DEBUG
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* Debug functions. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* Debug function for all vms extensions
|
2005-11-22 16:32:10 +00:00
|
|
|
|
evaluates environment variable VMS_DEBUG for a
|
|
|
|
|
numerical value on the first call
|
|
|
|
|
all error levels below this value are printed
|
|
|
|
|
|
|
|
|
|
levels:
|
|
|
|
|
1 toplevel bfd calls (functions from the bfd vector)
|
|
|
|
|
2 functions called by bfd calls
|
|
|
|
|
...
|
|
|
|
|
9 almost everything
|
|
|
|
|
|
|
|
|
|
level is also indentation level. Indentation is performed
|
2007-02-25 15:02:21 +00:00
|
|
|
|
if level > 0. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
_bfd_vms_debug (int level, char *format, ...)
|
|
|
|
|
{
|
|
|
|
|
static int min_level = -1;
|
|
|
|
|
static FILE *output = NULL;
|
|
|
|
|
char *eptr;
|
|
|
|
|
va_list args;
|
2007-02-25 15:02:21 +00:00
|
|
|
|
int abslvl = (level > 0) ? level : - level;
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
if (min_level == -1)
|
|
|
|
|
{
|
2007-02-25 15:02:21 +00:00
|
|
|
|
if ((eptr = getenv ("VMS_DEBUG")) != NULL)
|
2005-11-22 16:32:10 +00:00
|
|
|
|
{
|
2007-02-25 15:02:21 +00:00
|
|
|
|
min_level = atoi (eptr);
|
2005-11-22 16:32:10 +00:00
|
|
|
|
output = stderr;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
min_level = 0;
|
|
|
|
|
}
|
|
|
|
|
if (output == NULL)
|
|
|
|
|
return;
|
|
|
|
|
if (abslvl > min_level)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
while (--level>0)
|
|
|
|
|
fprintf (output, " ");
|
2007-02-25 15:02:21 +00:00
|
|
|
|
va_start (args, format);
|
2005-11-22 16:32:10 +00:00
|
|
|
|
vfprintf (output, format, args);
|
2007-02-25 15:02:21 +00:00
|
|
|
|
fflush (output);
|
|
|
|
|
va_end (args);
|
2005-11-22 16:32:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* A debug function
|
|
|
|
|
hex dump 'size' bytes starting at 'ptr'. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
void
|
2007-02-25 15:02:21 +00:00
|
|
|
|
_bfd_hexdump (int level,
|
|
|
|
|
unsigned char *ptr,
|
|
|
|
|
int size,
|
|
|
|
|
int offset)
|
2005-11-22 16:32:10 +00:00
|
|
|
|
{
|
|
|
|
|
unsigned char *lptr = ptr;
|
|
|
|
|
int count = 0;
|
|
|
|
|
long start = offset;
|
|
|
|
|
|
|
|
|
|
while (size-- > 0)
|
|
|
|
|
{
|
|
|
|
|
if ((count%16) == 0)
|
|
|
|
|
vms_debug (level, "%08lx:", start);
|
|
|
|
|
vms_debug (-level, " %02x", *ptr++);
|
|
|
|
|
count++;
|
|
|
|
|
start++;
|
|
|
|
|
if (size == 0)
|
|
|
|
|
{
|
|
|
|
|
while ((count%16) != 0)
|
|
|
|
|
{
|
|
|
|
|
vms_debug (-level, " ");
|
|
|
|
|
count++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if ((count%16) == 0)
|
|
|
|
|
{
|
|
|
|
|
vms_debug (-level, " ");
|
|
|
|
|
while (lptr < ptr)
|
|
|
|
|
{
|
|
|
|
|
vms_debug (-level, "%c", (*lptr < 32)?'.':*lptr);
|
|
|
|
|
lptr++;
|
|
|
|
|
}
|
|
|
|
|
vms_debug (-level, "\n");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if ((count%16) != 0)
|
|
|
|
|
vms_debug (-level, "\n");
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* Hash functions
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
These are needed when reading an object file. */
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* Allocate new vms_hash_entry
|
|
|
|
|
keep the symbol name and a pointer to the bfd symbol in the table. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
struct bfd_hash_entry *
|
2007-02-25 15:02:21 +00:00
|
|
|
|
_bfd_vms_hash_newfunc (struct bfd_hash_entry *entry,
|
|
|
|
|
struct bfd_hash_table *table,
|
|
|
|
|
const char *string)
|
2005-11-22 16:32:10 +00:00
|
|
|
|
{
|
|
|
|
|
vms_symbol_entry *ret;
|
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
2007-02-25 15:02:21 +00:00
|
|
|
|
vms_debug (5, "_bfd_vms_hash_newfunc (%p, %p, %s)\n", entry, table, string);
|
2005-11-22 16:32:10 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
if (entry == NULL)
|
2005-11-22 16:32:10 +00:00
|
|
|
|
{
|
|
|
|
|
ret = (vms_symbol_entry *)
|
|
|
|
|
bfd_hash_allocate (table, sizeof (vms_symbol_entry));
|
2007-02-25 15:02:21 +00:00
|
|
|
|
if (ret == NULL)
|
2005-11-22 16:32:10 +00:00
|
|
|
|
{
|
|
|
|
|
bfd_set_error (bfd_error_no_memory);
|
2007-02-25 15:02:21 +00:00
|
|
|
|
return NULL;
|
2005-11-22 16:32:10 +00:00
|
|
|
|
}
|
|
|
|
|
entry = (struct bfd_hash_entry *) ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Call the allocation method of the base class. */
|
|
|
|
|
ret = (vms_symbol_entry *) bfd_hash_newfunc (entry, table, string);
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
vms_debug (6, "_bfd_vms_hash_newfunc ret %p\n", ret);
|
|
|
|
|
#endif
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
ret->symbol = NULL;
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
return (struct bfd_hash_entry *)ret;
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* Object file input functions. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
/* Return type and length from record header (buf) on Alpha. */
|
|
|
|
|
|
|
|
|
|
void
|
2007-02-25 15:02:21 +00:00
|
|
|
|
_bfd_vms_get_header_values (bfd * abfd ATTRIBUTE_UNUSED,
|
|
|
|
|
unsigned char *buf,
|
|
|
|
|
int *type,
|
|
|
|
|
int *length)
|
2005-11-22 16:32:10 +00:00
|
|
|
|
{
|
|
|
|
|
if (type != 0)
|
|
|
|
|
*type = bfd_getl16 (buf);
|
|
|
|
|
buf += 2;
|
|
|
|
|
if (length != 0)
|
|
|
|
|
*length = bfd_getl16 (buf);
|
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
vms_debug (10, "_bfd_vms_get_header_values type %x, length %x\n", (type?*type:0), (length?*length:0));
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* Get next record from object file to vms_buf.
|
|
|
|
|
Set PRIV(buf_size) and return it
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
This is a little tricky since it should be portable.
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
The openVMS object file has 'variable length' which means that
|
2005-11-22 16:32:10 +00:00
|
|
|
|
read() returns data in chunks of (hopefully) correct and expected
|
|
|
|
|
size. The linker (and other tools on vms) depend on that. Unix doesn't
|
|
|
|
|
know about 'formatted' files, so reading and writing such an object
|
|
|
|
|
file in a unix environment is not trivial.
|
|
|
|
|
|
|
|
|
|
With the tool 'file' (available on all vms ftp sites), one
|
|
|
|
|
can view and change the attributes of a file. Changing from
|
|
|
|
|
'variable length' to 'fixed length, 512 bytes' reveals the
|
|
|
|
|
record length at the first 2 bytes of every record. The same
|
|
|
|
|
happens during the transfer of object files from vms to unix,
|
|
|
|
|
at least with ucx, dec's implementation of tcp/ip.
|
|
|
|
|
|
|
|
|
|
The vms format repeats the length at bytes 2 & 3 of every record.
|
|
|
|
|
|
|
|
|
|
On the first call (file_format == FF_UNKNOWN) we check if
|
|
|
|
|
the first and the third byte pair (!) of the record match.
|
|
|
|
|
If they do it's an object file in an unix environment or with
|
|
|
|
|
wrong attributes (FF_FOREIGN), else we should be in a vms
|
|
|
|
|
environment where read() returns the record size (FF_NATIVE).
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
Reading is always done in 2 steps.
|
|
|
|
|
First just the record header is read and the length extracted
|
|
|
|
|
by get_header_values,
|
2005-11-22 16:32:10 +00:00
|
|
|
|
then the read buffer is adjusted and the remaining bytes are
|
|
|
|
|
read in.
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
All file i/o is always done on even file positions. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
int
|
2007-02-25 15:02:21 +00:00
|
|
|
|
_bfd_vms_get_record (bfd * abfd)
|
2005-11-22 16:32:10 +00:00
|
|
|
|
{
|
|
|
|
|
int test_len, test_start, remaining;
|
|
|
|
|
unsigned char *vms_buf;
|
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
vms_debug (8, "_bfd_vms_get_record\n");
|
|
|
|
|
#endif
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* Minimum is 6 bytes on Alpha
|
2005-11-22 16:32:10 +00:00
|
|
|
|
(2 bytes length, 2 bytes record id, 2 bytes length repeated)
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
On the VAX there's no length information in the record
|
|
|
|
|
so start with OBJ_S_C_MAXRECSIZ. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
if (PRIV (buf_size) == 0)
|
|
|
|
|
{
|
|
|
|
|
bfd_size_type amt;
|
|
|
|
|
|
|
|
|
|
if (PRIV (is_vax))
|
|
|
|
|
{
|
|
|
|
|
amt = OBJ_S_C_MAXRECSIZ;
|
|
|
|
|
PRIV (file_format) = FF_VAX;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
amt = 6;
|
2007-02-25 15:02:21 +00:00
|
|
|
|
PRIV (vms_buf) = bfd_malloc (amt);
|
2005-11-22 16:32:10 +00:00
|
|
|
|
PRIV (buf_size) = amt;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
vms_buf = PRIV (vms_buf);
|
|
|
|
|
|
|
|
|
|
if (vms_buf == 0)
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
switch (PRIV (file_format))
|
|
|
|
|
{
|
|
|
|
|
case FF_UNKNOWN:
|
|
|
|
|
case FF_FOREIGN:
|
2007-02-25 15:02:21 +00:00
|
|
|
|
test_len = 6; /* Probe 6 bytes. */
|
|
|
|
|
test_start = 2; /* Where the record starts. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case FF_NATIVE:
|
|
|
|
|
test_len = 4;
|
|
|
|
|
test_start = 0;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
case FF_VAX:
|
|
|
|
|
test_len = 0;
|
|
|
|
|
test_start = 0;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* Skip odd alignment byte. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
if (bfd_tell (abfd) & 1)
|
|
|
|
|
{
|
|
|
|
|
if (bfd_bread (PRIV (vms_buf), (bfd_size_type) 1, abfd) != 1)
|
|
|
|
|
{
|
|
|
|
|
bfd_set_error (bfd_error_file_truncated);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* Read the record header on Alpha. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
if ((test_len != 0)
|
|
|
|
|
&& (bfd_bread (PRIV (vms_buf), (bfd_size_type) test_len, abfd)
|
|
|
|
|
!= (bfd_size_type) test_len))
|
|
|
|
|
{
|
|
|
|
|
bfd_set_error (bfd_error_file_truncated);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* Check file format on first call. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
if (PRIV (file_format) == FF_UNKNOWN)
|
2007-02-25 15:02:21 +00:00
|
|
|
|
{ /* Record length repeats ? */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
if (vms_buf[0] == vms_buf[4]
|
|
|
|
|
&& vms_buf[1] == vms_buf[5])
|
|
|
|
|
{
|
2007-02-25 15:02:21 +00:00
|
|
|
|
PRIV (file_format) = FF_FOREIGN; /* Y: foreign environment. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
test_start = 2;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2007-02-25 15:02:21 +00:00
|
|
|
|
PRIV (file_format) = FF_NATIVE; /* N: native environment. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
test_start = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (PRIV (is_vax))
|
|
|
|
|
{
|
|
|
|
|
PRIV (rec_length) = bfd_bread (vms_buf, (bfd_size_type) PRIV (buf_size),
|
|
|
|
|
abfd);
|
|
|
|
|
if (PRIV (rec_length) <= 0)
|
|
|
|
|
{
|
|
|
|
|
bfd_set_error (bfd_error_file_truncated);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
PRIV (vms_rec) = vms_buf;
|
|
|
|
|
}
|
2007-02-25 15:02:21 +00:00
|
|
|
|
else
|
2005-11-22 16:32:10 +00:00
|
|
|
|
{
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* Alpha. */
|
|
|
|
|
/* Extract vms record length. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
_bfd_vms_get_header_values (abfd, vms_buf + test_start, NULL,
|
2007-02-25 15:02:21 +00:00
|
|
|
|
& PRIV (rec_length));
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
if (PRIV (rec_length) <= 0)
|
|
|
|
|
{
|
|
|
|
|
bfd_set_error (bfd_error_file_truncated);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* That's what the linker manual says. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
if (PRIV (rec_length) > EOBJ_S_C_MAXRECSIZ)
|
|
|
|
|
{
|
|
|
|
|
bfd_set_error (bfd_error_file_truncated);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* Adjust the buffer. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
if (PRIV (rec_length) > PRIV (buf_size))
|
|
|
|
|
{
|
2007-02-25 15:02:21 +00:00
|
|
|
|
PRIV (vms_buf) = bfd_realloc (vms_buf,
|
|
|
|
|
(bfd_size_type) PRIV (rec_length));
|
2005-11-22 16:32:10 +00:00
|
|
|
|
vms_buf = PRIV (vms_buf);
|
|
|
|
|
if (vms_buf == 0)
|
|
|
|
|
return -1;
|
|
|
|
|
PRIV (buf_size) = PRIV (rec_length);
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* Read the remaining record. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
remaining = PRIV (rec_length) - test_len + test_start;
|
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
vms_debug (10, "bfd_bread remaining %d\n", remaining);
|
|
|
|
|
#endif
|
|
|
|
|
if (bfd_bread (vms_buf + test_len, (bfd_size_type) remaining, abfd) !=
|
|
|
|
|
(bfd_size_type) remaining)
|
|
|
|
|
{
|
|
|
|
|
bfd_set_error (bfd_error_file_truncated);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
PRIV (vms_rec) = vms_buf + test_start;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
vms_debug (11, "bfd_bread rec_length %d\n", PRIV (rec_length));
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
return PRIV (rec_length);
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* Get next vms record from file
|
|
|
|
|
update vms_rec and rec_length to new (remaining) values. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
int
|
2007-02-25 15:02:21 +00:00
|
|
|
|
_bfd_vms_next_record (bfd * abfd)
|
2005-11-22 16:32:10 +00:00
|
|
|
|
{
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
vms_debug (8, "_bfd_vms_next_record (len %d, size %d)\n",
|
|
|
|
|
PRIV (rec_length), PRIV (rec_size));
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
if (PRIV (rec_length) > 0)
|
2007-02-25 15:02:21 +00:00
|
|
|
|
PRIV (vms_rec) += PRIV (rec_size);
|
2005-11-22 16:32:10 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (_bfd_vms_get_record (abfd) <= 0)
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!PRIV (vms_rec) || !PRIV (vms_buf)
|
|
|
|
|
|| PRIV (vms_rec) >= (PRIV (vms_buf) + PRIV (buf_size)))
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
if (PRIV (is_vax))
|
|
|
|
|
{
|
|
|
|
|
PRIV (rec_type) = *(PRIV (vms_rec));
|
|
|
|
|
PRIV (rec_size) = PRIV (rec_length);
|
|
|
|
|
}
|
|
|
|
|
else
|
2007-02-25 15:02:21 +00:00
|
|
|
|
_bfd_vms_get_header_values (abfd, PRIV (vms_rec), &PRIV (rec_type),
|
|
|
|
|
&PRIV (rec_size));
|
|
|
|
|
|
2005-11-22 16:32:10 +00:00
|
|
|
|
PRIV (rec_length) -= PRIV (rec_size);
|
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
vms_debug (8, "_bfd_vms_next_record: rec %p, size %d, length %d, type %d\n",
|
|
|
|
|
PRIV (vms_rec), PRIV (rec_size), PRIV (rec_length),
|
|
|
|
|
PRIV (rec_type));
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
return PRIV (rec_type);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Copy sized string (string with fixed length) to new allocated area
|
|
|
|
|
size is string length (size of record) */
|
|
|
|
|
|
|
|
|
|
char *
|
2007-02-25 15:02:21 +00:00
|
|
|
|
_bfd_vms_save_sized_string (unsigned char *str, int size)
|
2005-11-22 16:32:10 +00:00
|
|
|
|
{
|
|
|
|
|
char *newstr = bfd_malloc ((bfd_size_type) size + 1);
|
|
|
|
|
|
|
|
|
|
if (newstr == NULL)
|
2007-02-25 15:02:21 +00:00
|
|
|
|
return NULL;
|
2005-11-22 16:32:10 +00:00
|
|
|
|
strncpy (newstr, (char *) str, (size_t) size);
|
|
|
|
|
newstr[size] = 0;
|
|
|
|
|
|
|
|
|
|
return newstr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Copy counted string (string with length at first byte) to new allocated area
|
|
|
|
|
ptr points to length byte on entry */
|
|
|
|
|
|
|
|
|
|
char *
|
2007-02-25 15:02:21 +00:00
|
|
|
|
_bfd_vms_save_counted_string (unsigned char *ptr)
|
2005-11-22 16:32:10 +00:00
|
|
|
|
{
|
|
|
|
|
int len = *ptr++;
|
|
|
|
|
|
|
|
|
|
return _bfd_vms_save_sized_string (ptr, len);
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* Stack routines for vms ETIR commands. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* Push value and section index. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
void
|
2007-02-25 15:02:21 +00:00
|
|
|
|
_bfd_vms_push (bfd * abfd, uquad val, int psect)
|
2005-11-22 16:32:10 +00:00
|
|
|
|
{
|
|
|
|
|
static int last_psect;
|
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
2007-02-25 15:02:21 +00:00
|
|
|
|
vms_debug (4, "<push %016lx (%d) at %d>\n", val, psect, PRIV (stackptr));
|
2005-11-22 16:32:10 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
if (psect >= 0)
|
|
|
|
|
last_psect = psect;
|
|
|
|
|
|
|
|
|
|
PRIV (stack[PRIV (stackptr)]).value = val;
|
|
|
|
|
PRIV (stack[PRIV (stackptr)]).psect = last_psect;
|
|
|
|
|
PRIV (stackptr)++;
|
|
|
|
|
if (PRIV (stackptr) >= STACKSIZE)
|
|
|
|
|
{
|
|
|
|
|
bfd_set_error (bfd_error_bad_value);
|
|
|
|
|
(*_bfd_error_handler) (_("Stack overflow (%d) in _bfd_vms_push"), PRIV (stackptr));
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* Pop value and section index. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
uquad
|
2007-02-25 15:02:21 +00:00
|
|
|
|
_bfd_vms_pop (bfd * abfd, int *psect)
|
2005-11-22 16:32:10 +00:00
|
|
|
|
{
|
|
|
|
|
uquad value;
|
|
|
|
|
|
|
|
|
|
if (PRIV (stackptr) == 0)
|
|
|
|
|
{
|
|
|
|
|
bfd_set_error (bfd_error_bad_value);
|
|
|
|
|
(*_bfd_error_handler) (_("Stack underflow in _bfd_vms_pop"));
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
PRIV (stackptr)--;
|
|
|
|
|
value = PRIV (stack[PRIV (stackptr)]).value;
|
|
|
|
|
if ((psect != NULL) && (PRIV (stack[PRIV (stackptr)]).psect >= 0))
|
|
|
|
|
*psect = PRIV (stack[PRIV (stackptr)]).psect;
|
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
vms_debug (4, "<pop %016lx(%d)>\n", value, PRIV (stack[PRIV (stackptr)]).psect);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
return value;
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* Object file output functions. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
/* GAS tends to write sections in little chunks (bfd_set_section_contents)
|
|
|
|
|
which we can't use directly. So we save the little chunks in linked
|
|
|
|
|
lists (one per section) and write them later. */
|
|
|
|
|
|
|
|
|
|
/* Add a new vms_section structure to vms_section_table
|
2007-02-25 15:02:21 +00:00
|
|
|
|
- forward chaining -. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
static vms_section *
|
2007-02-25 15:02:21 +00:00
|
|
|
|
add_new_contents (bfd * abfd, sec_ptr section)
|
2005-11-22 16:32:10 +00:00
|
|
|
|
{
|
|
|
|
|
vms_section *sptr, *newptr;
|
|
|
|
|
|
|
|
|
|
sptr = PRIV (vms_section_table)[section->index];
|
|
|
|
|
if (sptr != NULL)
|
|
|
|
|
return sptr;
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
newptr = bfd_alloc (abfd, (bfd_size_type) sizeof (vms_section));
|
|
|
|
|
if (newptr == NULL)
|
2005-11-22 16:32:10 +00:00
|
|
|
|
return NULL;
|
2007-02-25 15:02:21 +00:00
|
|
|
|
newptr->contents = bfd_alloc (abfd, section->size);
|
|
|
|
|
if (newptr->contents == NULL)
|
2005-11-22 16:32:10 +00:00
|
|
|
|
return NULL;
|
|
|
|
|
newptr->offset = 0;
|
|
|
|
|
newptr->size = section->size;
|
|
|
|
|
newptr->next = 0;
|
|
|
|
|
PRIV (vms_section_table)[section->index] = newptr;
|
|
|
|
|
return newptr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Save section data & offset to a vms_section structure
|
|
|
|
|
vms_section_table[] holds the vms_section chain. */
|
|
|
|
|
|
|
|
|
|
bfd_boolean
|
2007-02-25 15:02:21 +00:00
|
|
|
|
_bfd_save_vms_section (bfd * abfd,
|
|
|
|
|
sec_ptr section,
|
|
|
|
|
const void * data,
|
|
|
|
|
file_ptr offset,
|
|
|
|
|
bfd_size_type count)
|
2005-11-22 16:32:10 +00:00
|
|
|
|
{
|
|
|
|
|
vms_section *sptr;
|
|
|
|
|
|
|
|
|
|
if (section->index >= VMS_SECTION_COUNT)
|
|
|
|
|
{
|
|
|
|
|
bfd_set_error (bfd_error_nonrepresentable_section);
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
if (count == (bfd_size_type)0)
|
|
|
|
|
return TRUE;
|
|
|
|
|
sptr = add_new_contents (abfd, section);
|
|
|
|
|
if (sptr == NULL)
|
|
|
|
|
return FALSE;
|
|
|
|
|
memcpy (sptr->contents + offset, data, (size_t) count);
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Get vms_section pointer to saved contents for section # index */
|
|
|
|
|
|
|
|
|
|
vms_section *
|
2007-02-25 15:02:21 +00:00
|
|
|
|
_bfd_get_vms_section (bfd * abfd, int index)
|
2005-11-22 16:32:10 +00:00
|
|
|
|
{
|
|
|
|
|
if (index >= VMS_SECTION_COUNT)
|
|
|
|
|
{
|
|
|
|
|
bfd_set_error (bfd_error_nonrepresentable_section);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
return PRIV (vms_section_table)[index];
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* Object output routines. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
/* Begin new record or record header
|
|
|
|
|
write 2 bytes rectype
|
|
|
|
|
write 2 bytes record length (filled in at flush)
|
2007-02-25 15:02:21 +00:00
|
|
|
|
write 2 bytes header type (ommitted if rechead == -1). */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
void
|
2007-02-25 15:02:21 +00:00
|
|
|
|
_bfd_vms_output_begin (bfd * abfd, int rectype, int rechead)
|
2005-11-22 16:32:10 +00:00
|
|
|
|
{
|
|
|
|
|
#if VMS_DEBUG
|
2007-02-25 15:02:21 +00:00
|
|
|
|
vms_debug (6, "_bfd_vms_output_begin (type %d, head %d)\n", rectype,
|
2005-11-22 16:32:10 +00:00
|
|
|
|
rechead);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
_bfd_vms_output_short (abfd, (unsigned int) rectype);
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* Save current output position to fill in length later. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
if (PRIV (push_level) > 0)
|
|
|
|
|
PRIV (length_pos) = PRIV (output_size);
|
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
vms_debug (6, "_bfd_vms_output_begin: length_pos = %d\n",
|
|
|
|
|
PRIV (length_pos));
|
|
|
|
|
#endif
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* Placeholder for length. */
|
|
|
|
|
_bfd_vms_output_short (abfd, 0);
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
if (rechead != -1)
|
|
|
|
|
_bfd_vms_output_short (abfd, (unsigned int) rechead);
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* Set record/subrecord alignment. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
void
|
2007-02-25 15:02:21 +00:00
|
|
|
|
_bfd_vms_output_alignment (bfd * abfd, int alignto)
|
2005-11-22 16:32:10 +00:00
|
|
|
|
{
|
|
|
|
|
#if VMS_DEBUG
|
2007-02-25 15:02:21 +00:00
|
|
|
|
vms_debug (6, "_bfd_vms_output_alignment (%d)\n", alignto);
|
2005-11-22 16:32:10 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
PRIV (output_alignment) = alignto;
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* Prepare for subrecord fields. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
void
|
2007-02-25 15:02:21 +00:00
|
|
|
|
_bfd_vms_output_push (bfd * abfd)
|
2005-11-22 16:32:10 +00:00
|
|
|
|
{
|
|
|
|
|
#if VMS_DEBUG
|
2007-02-25 15:02:21 +00:00
|
|
|
|
vms_debug (6, "vms_output_push (pushed_size = %d)\n", PRIV (output_size));
|
2005-11-22 16:32:10 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
PRIV (push_level)++;
|
|
|
|
|
PRIV (pushed_size) = PRIV (output_size);
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* End of subrecord fields. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
void
|
2007-02-25 15:02:21 +00:00
|
|
|
|
_bfd_vms_output_pop (bfd * abfd)
|
2005-11-22 16:32:10 +00:00
|
|
|
|
{
|
|
|
|
|
#if VMS_DEBUG
|
2007-02-25 15:02:21 +00:00
|
|
|
|
vms_debug (6, "vms_output_pop (pushed_size = %d)\n", PRIV (pushed_size));
|
2005-11-22 16:32:10 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
_bfd_vms_output_flush (abfd);
|
|
|
|
|
PRIV (length_pos) = 2;
|
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
vms_debug (6, "vms_output_pop: length_pos = %d\n", PRIV (length_pos));
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
PRIV (pushed_size) = 0;
|
|
|
|
|
PRIV (push_level)--;
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* Flush unwritten output, ends current record. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
void
|
2007-02-25 15:02:21 +00:00
|
|
|
|
_bfd_vms_output_flush (bfd * abfd)
|
2005-11-22 16:32:10 +00:00
|
|
|
|
{
|
|
|
|
|
int real_size = PRIV (output_size);
|
|
|
|
|
int aligncount;
|
|
|
|
|
int length;
|
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
2007-02-25 15:02:21 +00:00
|
|
|
|
vms_debug (6, "_bfd_vms_output_flush (real_size = %d, pushed_size %d at lenpos %d)\n",
|
2005-11-22 16:32:10 +00:00
|
|
|
|
real_size, PRIV (pushed_size), PRIV (length_pos));
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
if (PRIV (push_level) > 0)
|
|
|
|
|
length = real_size - PRIV (pushed_size);
|
|
|
|
|
else
|
|
|
|
|
length = real_size;
|
|
|
|
|
|
|
|
|
|
if (length == 0)
|
|
|
|
|
return;
|
|
|
|
|
aligncount = (PRIV (output_alignment)
|
|
|
|
|
- (length % PRIV (output_alignment))) % PRIV (output_alignment);
|
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
vms_debug (6, "align: adding %d bytes\n", aligncount);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
while (aligncount-- > 0)
|
|
|
|
|
{
|
|
|
|
|
PRIV (output_buf)[real_size++] = 0;
|
|
|
|
|
length++;
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* Put length to buffer. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
PRIV (output_size) = PRIV (length_pos);
|
|
|
|
|
_bfd_vms_output_short (abfd, (unsigned int) length);
|
|
|
|
|
|
|
|
|
|
if (PRIV (push_level) == 0)
|
|
|
|
|
{
|
|
|
|
|
#ifndef VMS
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* Write length first, see FF_FOREIGN in the input routines. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
fwrite (PRIV (output_buf) + 2, 2, 1, (FILE *) abfd->iostream);
|
|
|
|
|
#endif
|
|
|
|
|
fwrite (PRIV (output_buf), (size_t) real_size, 1,
|
|
|
|
|
(FILE *) abfd->iostream);
|
|
|
|
|
|
|
|
|
|
PRIV (output_size) = 0;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
PRIV (output_size) = real_size;
|
|
|
|
|
PRIV (pushed_size) = PRIV (output_size);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* End record output. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
void
|
2007-02-25 15:02:21 +00:00
|
|
|
|
_bfd_vms_output_end (bfd * abfd)
|
2005-11-22 16:32:10 +00:00
|
|
|
|
{
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
vms_debug (6, "_bfd_vms_output_end\n");
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
_bfd_vms_output_flush (abfd);
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* Check remaining buffer size
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
Return what's left. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
int
|
2007-02-25 15:02:21 +00:00
|
|
|
|
_bfd_vms_output_check (bfd * abfd, int size)
|
2005-11-22 16:32:10 +00:00
|
|
|
|
{
|
|
|
|
|
#if VMS_DEBUG
|
2007-02-25 15:02:21 +00:00
|
|
|
|
vms_debug (6, "_bfd_vms_output_check (%d)\n", size);
|
2005-11-22 16:32:10 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
return (MAX_OUTREC_SIZE - (PRIV (output_size) + size + MIN_OUTREC_LUFT));
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* Output byte (8 bit) value. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
void
|
2007-02-25 15:02:21 +00:00
|
|
|
|
_bfd_vms_output_byte (bfd * abfd, unsigned int value)
|
2005-11-22 16:32:10 +00:00
|
|
|
|
{
|
|
|
|
|
#if VMS_DEBUG
|
2007-02-25 15:02:21 +00:00
|
|
|
|
vms_debug (6, "_bfd_vms_output_byte (%02x)\n", value);
|
2005-11-22 16:32:10 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
bfd_put_8 (abfd, value & 0xff, PRIV (output_buf) + PRIV (output_size));
|
|
|
|
|
PRIV (output_size) += 1;
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* Output short (16 bit) value. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
void
|
2007-02-25 15:02:21 +00:00
|
|
|
|
_bfd_vms_output_short (bfd * abfd, unsigned int value)
|
2005-11-22 16:32:10 +00:00
|
|
|
|
{
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
vms_debug (6, "_bfd_vms_output_short (%04x)\n", value);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
bfd_put_16 (abfd, (bfd_vma) value & 0xffff,
|
|
|
|
|
PRIV (output_buf) + PRIV (output_size));
|
|
|
|
|
PRIV (output_size) += 2;
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* Output long (32 bit) value. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
void
|
2007-02-25 15:02:21 +00:00
|
|
|
|
_bfd_vms_output_long (bfd * abfd, unsigned long value)
|
2005-11-22 16:32:10 +00:00
|
|
|
|
{
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
vms_debug (6, "_bfd_vms_output_long (%08lx)\n", value);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
bfd_put_32 (abfd, (bfd_vma) value, PRIV (output_buf) + PRIV (output_size));
|
|
|
|
|
PRIV (output_size) += 4;
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* Output quad (64 bit) value. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
void
|
2007-02-25 15:02:21 +00:00
|
|
|
|
_bfd_vms_output_quad (bfd * abfd, uquad value)
|
2005-11-22 16:32:10 +00:00
|
|
|
|
{
|
|
|
|
|
#if VMS_DEBUG
|
2007-02-25 15:02:21 +00:00
|
|
|
|
vms_debug (6, "_bfd_vms_output_quad (%016lx)\n", value);
|
2005-11-22 16:32:10 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
bfd_put_64(abfd, value, PRIV (output_buf) + PRIV (output_size));
|
|
|
|
|
PRIV (output_size) += 8;
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* Output c-string as counted string. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
void
|
2007-02-25 15:02:21 +00:00
|
|
|
|
_bfd_vms_output_counted (bfd * abfd, char *value)
|
2005-11-22 16:32:10 +00:00
|
|
|
|
{
|
2007-02-25 15:02:21 +00:00
|
|
|
|
int len;
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
2007-02-25 15:02:21 +00:00
|
|
|
|
vms_debug (6, "_bfd_vms_output_counted (%s)\n", value);
|
2005-11-22 16:32:10 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
len = strlen (value);
|
|
|
|
|
if (len == 0)
|
|
|
|
|
{
|
|
|
|
|
(*_bfd_error_handler) (_("_bfd_vms_output_counted called with zero bytes"));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (len > 255)
|
|
|
|
|
{
|
|
|
|
|
(*_bfd_error_handler) (_("_bfd_vms_output_counted called with too many bytes"));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
_bfd_vms_output_byte (abfd, (unsigned int) len & 0xff);
|
2007-02-25 15:02:21 +00:00
|
|
|
|
_bfd_vms_output_dump (abfd, (unsigned char *) value, len);
|
2005-11-22 16:32:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* Output character area. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
void
|
2007-02-25 15:02:21 +00:00
|
|
|
|
_bfd_vms_output_dump (bfd * abfd,
|
|
|
|
|
unsigned char *data,
|
|
|
|
|
int length)
|
2005-11-22 16:32:10 +00:00
|
|
|
|
{
|
|
|
|
|
#if VMS_DEBUG
|
2007-02-25 15:02:21 +00:00
|
|
|
|
vms_debug (6, "_bfd_vms_output_dump (%d)\n", length);
|
2005-11-22 16:32:10 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
if (length == 0)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
memcpy (PRIV (output_buf) + PRIV (output_size), data, (size_t) length);
|
|
|
|
|
PRIV (output_size) += length;
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* Output count bytes of value. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
void
|
2007-02-25 15:02:21 +00:00
|
|
|
|
_bfd_vms_output_fill (bfd * abfd,
|
|
|
|
|
int value,
|
|
|
|
|
int count)
|
2005-11-22 16:32:10 +00:00
|
|
|
|
{
|
|
|
|
|
#if VMS_DEBUG
|
2007-02-25 15:02:21 +00:00
|
|
|
|
vms_debug (6, "_bfd_vms_output_fill (val %02x times %d)\n", value, count);
|
2005-11-22 16:32:10 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
if (count == 0)
|
|
|
|
|
return;
|
|
|
|
|
memset (PRIV (output_buf) + PRIV (output_size), value, (size_t) count);
|
|
|
|
|
PRIV (output_size) += count;
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* This hash routine borrowed from GNU-EMACS, and strengthened slightly. ERY. */
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
static int
|
2007-02-25 15:02:21 +00:00
|
|
|
|
hash_string (const char *ptr)
|
2005-11-22 16:32:10 +00:00
|
|
|
|
{
|
2007-02-25 15:02:21 +00:00
|
|
|
|
const unsigned char *p = (unsigned char *) ptr;
|
|
|
|
|
const unsigned char *end = p + strlen (ptr);
|
|
|
|
|
unsigned char c;
|
|
|
|
|
int hash = 0;
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
while (p != end)
|
|
|
|
|
{
|
|
|
|
|
c = *p++;
|
|
|
|
|
hash = ((hash << 3) + (hash << 15) + (hash >> 28) + c);
|
|
|
|
|
}
|
|
|
|
|
return hash;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Generate a length-hashed VMS symbol name (limited to maxlen chars). */
|
|
|
|
|
|
|
|
|
|
char *
|
2007-02-25 15:02:21 +00:00
|
|
|
|
_bfd_vms_length_hash_symbol (bfd * abfd, const char *in, int maxlen)
|
2005-11-22 16:32:10 +00:00
|
|
|
|
{
|
|
|
|
|
long int result;
|
|
|
|
|
int in_len;
|
|
|
|
|
char *new_name;
|
|
|
|
|
const char *old_name;
|
|
|
|
|
int i;
|
|
|
|
|
static char outbuf[EOBJ_S_C_SYMSIZ+1];
|
|
|
|
|
char *out = outbuf;
|
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
2007-02-25 15:02:21 +00:00
|
|
|
|
vms_debug (4, "_bfd_vms_length_hash_symbol \"%s\"\n", in);
|
2005-11-22 16:32:10 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
if (maxlen > EOBJ_S_C_SYMSIZ)
|
|
|
|
|
maxlen = EOBJ_S_C_SYMSIZ;
|
|
|
|
|
|
2007-02-25 15:02:21 +00:00
|
|
|
|
/* Save this for later. */
|
|
|
|
|
new_name = out;
|
2005-11-22 16:32:10 +00:00
|
|
|
|
|
|
|
|
|
/* We may need to truncate the symbol, save the hash for later. */
|
|
|
|
|
in_len = strlen (in);
|
|
|
|
|
|
|
|
|
|
result = (in_len > maxlen) ? hash_string (in) : 0;
|
|
|
|
|
|
|
|
|
|
old_name = in;
|
|
|
|
|
|
|
|
|
|
/* Do the length checking. */
|
|
|
|
|
if (in_len <= maxlen)
|
2007-02-25 15:02:21 +00:00
|
|
|
|
i = in_len;
|
2005-11-22 16:32:10 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (PRIV (flag_hash_long_names))
|
|
|
|
|
i = maxlen-9;
|
|
|
|
|
else
|
|
|
|
|
i = maxlen;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
strncpy (out, in, (size_t) i);
|
|
|
|
|
in += i;
|
|
|
|
|
out += i;
|
|
|
|
|
|
|
|
|
|
if ((in_len > maxlen)
|
|
|
|
|
&& PRIV (flag_hash_long_names))
|
|
|
|
|
sprintf (out, "_%08lx", result);
|
|
|
|
|
else
|
|
|
|
|
*out = 0;
|
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
2007-02-25 15:02:21 +00:00
|
|
|
|
vms_debug (4, "--> [%d]\"%s\"\n", strlen (outbuf), outbuf);
|
2005-11-22 16:32:10 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
if (in_len > maxlen
|
|
|
|
|
&& PRIV (flag_hash_long_names)
|
|
|
|
|
&& PRIV (flag_show_after_trunc))
|
|
|
|
|
printf (_("Symbol %s replaced by %s\n"), old_name, new_name);
|
|
|
|
|
|
|
|
|
|
return outbuf;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Allocate and initialize a new symbol. */
|
|
|
|
|
|
|
|
|
|
static asymbol *
|
2007-02-25 15:02:21 +00:00
|
|
|
|
new_symbol (bfd * abfd, char *name)
|
2005-11-22 16:32:10 +00:00
|
|
|
|
{
|
|
|
|
|
asymbol *symbol;
|
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
_bfd_vms_debug (7, "new_symbol %s\n", name);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
symbol = bfd_make_empty_symbol (abfd);
|
|
|
|
|
if (symbol == 0)
|
|
|
|
|
return symbol;
|
|
|
|
|
symbol->name = name;
|
|
|
|
|
symbol->section = bfd_make_section (abfd, BFD_UND_SECTION_NAME);
|
|
|
|
|
|
|
|
|
|
return symbol;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Allocate and enter a new private symbol. */
|
|
|
|
|
|
|
|
|
|
vms_symbol_entry *
|
2007-02-25 15:02:21 +00:00
|
|
|
|
_bfd_vms_enter_symbol (bfd * abfd, char *name)
|
2005-11-22 16:32:10 +00:00
|
|
|
|
{
|
|
|
|
|
vms_symbol_entry *entry;
|
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
_bfd_vms_debug (6, "_bfd_vms_enter_symbol %s\n", name);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
entry = (vms_symbol_entry *)
|
|
|
|
|
bfd_hash_lookup (PRIV (vms_symbol_table), name, FALSE, FALSE);
|
|
|
|
|
if (entry == 0)
|
|
|
|
|
{
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
_bfd_vms_debug (8, "creating hash entry for %s\n", name);
|
|
|
|
|
#endif
|
|
|
|
|
entry = (vms_symbol_entry *) bfd_hash_lookup (PRIV (vms_symbol_table),
|
|
|
|
|
name, TRUE, FALSE);
|
|
|
|
|
if (entry != 0)
|
|
|
|
|
{
|
|
|
|
|
asymbol *symbol;
|
|
|
|
|
symbol = new_symbol (abfd, name);
|
|
|
|
|
if (symbol != 0)
|
|
|
|
|
{
|
|
|
|
|
entry->symbol = symbol;
|
|
|
|
|
PRIV (gsd_sym_count)++;
|
|
|
|
|
abfd->symcount++;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
entry = 0;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
(*_bfd_error_handler) (_("failed to enter %s"), name);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
_bfd_vms_debug (8, "found hash entry for %s\n", name);
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#if VMS_DEBUG
|
|
|
|
|
_bfd_vms_debug (7, "-> entry %p, entry->symbol %p\n", entry, entry->symbol);
|
|
|
|
|
#endif
|
|
|
|
|
return entry;
|
|
|
|
|
}
|