fd3619828e
This large patch removes the unnecessary bfd parameter from various bfd section macros and functions. The bfd is hardly ever used and if needed for the bfd_set_section_* or bfd_rename_section functions can be found via section->owner except for the com, und, abs, and ind std_section special sections. Those sections shouldn't be modified anyway. The patch also removes various bfd_get_section_<field> macros, replacing their use with bfd_section_<field>, and adds bfd_set_section_lma. I've also fixed a minor bug in gas where compressed section renaming was done directly rather than calling bfd_rename_section. This would have broken bfd_get_section_by_name and similar functions, but that hardly mattered at such a late stage in gas processing. bfd/ * bfd-in.h (bfd_get_section_name, bfd_get_section_vma), (bfd_get_section_lma, bfd_get_section_alignment), (bfd_get_section_size, bfd_get_section_flags), (bfd_get_section_userdata): Delete. (bfd_section_name, bfd_section_size, bfd_section_vma), (bfd_section_lma, bfd_section_alignment): Lose bfd parameter. (bfd_section_flags, bfd_section_userdata): New. (bfd_is_com_section): Rename parameter. * section.c (bfd_set_section_userdata, bfd_set_section_vma), (bfd_set_section_alignment, bfd_set_section_flags, bfd_rename_section), (bfd_set_section_size): Delete bfd parameter, rename section parameter. (bfd_set_section_lma): New. * bfd-in2.h: Regenerate. * mach-o.c (bfd_mach_o_init_section_from_mach_o): Delete bfd param, update callers. * aoutx.h, * bfd.c, * coff-alpha.c, * coff-arm.c, * coff-mips.c, * coff64-rs6000.c, * coffcode.h, * coffgen.c, * cofflink.c, * compress.c, * ecoff.c, * elf-eh-frame.c, * elf-hppa.h, * elf-ifunc.c, * elf-m10200.c, * elf-m10300.c, * elf-properties.c, * elf-s390-common.c, * elf-vxworks.c, * elf.c, * elf32-arc.c, * elf32-arm.c, * elf32-avr.c, * elf32-bfin.c, * elf32-cr16.c, * elf32-cr16c.c, * elf32-cris.c, * elf32-crx.c, * elf32-csky.c, * elf32-d10v.c, * elf32-epiphany.c, * elf32-fr30.c, * elf32-frv.c, * elf32-ft32.c, * elf32-h8300.c, * elf32-hppa.c, * elf32-i386.c, * elf32-ip2k.c, * elf32-iq2000.c, * elf32-lm32.c, * elf32-m32c.c, * elf32-m32r.c, * elf32-m68hc1x.c, * elf32-m68k.c, * elf32-mcore.c, * elf32-mep.c, * elf32-metag.c, * elf32-microblaze.c, * elf32-moxie.c, * elf32-msp430.c, * elf32-mt.c, * elf32-nds32.c, * elf32-nios2.c, * elf32-or1k.c, * elf32-ppc.c, * elf32-pru.c, * elf32-rl78.c, * elf32-rx.c, * elf32-s390.c, * elf32-score.c, * elf32-score7.c, * elf32-sh.c, * elf32-spu.c, * elf32-tic6x.c, * elf32-tilepro.c, * elf32-v850.c, * elf32-vax.c, * elf32-visium.c, * elf32-xstormy16.c, * elf32-xtensa.c, * elf64-alpha.c, * elf64-bpf.c, * elf64-hppa.c, * elf64-ia64-vms.c, * elf64-mmix.c, * elf64-ppc.c, * elf64-s390.c, * elf64-sparc.c, * elf64-x86-64.c, * elflink.c, * elfnn-aarch64.c, * elfnn-ia64.c, * elfnn-riscv.c, * elfxx-aarch64.c, * elfxx-mips.c, * elfxx-sparc.c, * elfxx-tilegx.c, * elfxx-x86.c, * i386msdos.c, * linker.c, * mach-o.c, * mmo.c, * opncls.c, * pdp11.c, * pei-x86_64.c, * peicode.h, * reloc.c, * section.c, * syms.c, * vms-alpha.c, * xcofflink.c: Update throughout for bfd section macro and function changes. binutils/ * addr2line.c, * bucomm.c, * coffgrok.c, * dlltool.c, * nm.c, * objcopy.c, * objdump.c, * od-elf32_avr.c, * od-macho.c, * od-xcoff.c, * prdbg.c, * rdcoff.c, * rddbg.c, * rescoff.c, * resres.c, * size.c, * srconv.c, * strings.c, * windmc.c: Update throughout for bfd section macro and function changes. gas/ * as.c, * as.h, * dw2gencfi.c, * dwarf2dbg.c, * ecoff.c, * read.c, * stabs.c, * subsegs.c, * subsegs.h, * write.c, * config/obj-coff-seh.c, * config/obj-coff.c, * config/obj-ecoff.c, * config/obj-elf.c, * config/obj-macho.c, * config/obj-som.c, * config/tc-aarch64.c, * config/tc-alpha.c, * config/tc-arc.c, * config/tc-arm.c, * config/tc-avr.c, * config/tc-bfin.c, * config/tc-bpf.c, * config/tc-d10v.c, * config/tc-d30v.c, * config/tc-epiphany.c, * config/tc-fr30.c, * config/tc-frv.c, * config/tc-h8300.c, * config/tc-hppa.c, * config/tc-i386.c, * config/tc-ia64.c, * config/tc-ip2k.c, * config/tc-iq2000.c, * config/tc-lm32.c, * config/tc-m32c.c, * config/tc-m32r.c, * config/tc-m68hc11.c, * config/tc-mep.c, * config/tc-microblaze.c, * config/tc-mips.c, * config/tc-mmix.c, * config/tc-mn10200.c, * config/tc-mn10300.c, * config/tc-msp430.c, * config/tc-mt.c, * config/tc-nds32.c, * config/tc-or1k.c, * config/tc-ppc.c, * config/tc-pru.c, * config/tc-rl78.c, * config/tc-rx.c, * config/tc-s12z.c, * config/tc-s390.c, * config/tc-score.c, * config/tc-score7.c, * config/tc-sh.c, * config/tc-sparc.c, * config/tc-spu.c, * config/tc-tic4x.c, * config/tc-tic54x.c, * config/tc-tic6x.c, * config/tc-tilegx.c, * config/tc-tilepro.c, * config/tc-v850.c, * config/tc-visium.c, * config/tc-wasm32.c, * config/tc-xc16x.c, * config/tc-xgate.c, * config/tc-xstormy16.c, * config/tc-xtensa.c, * config/tc-z8k.c: Update throughout for bfd section macro and function changes. * write.c (compress_debug): Use bfd_rename_section. gdb/ * aarch64-linux-tdep.c, * arm-tdep.c, * auto-load.c, * coff-pe-read.c, * coffread.c, * corelow.c, * dbxread.c, * dicos-tdep.c, * dwarf2-frame.c, * dwarf2read.c, * elfread.c, * exec.c, * fbsd-tdep.c, * gcore.c, * gdb_bfd.c, * gdb_bfd.h, * hppa-tdep.c, * i386-cygwin-tdep.c, * i386-fbsd-tdep.c, * i386-linux-tdep.c, * jit.c, * linux-tdep.c, * machoread.c, * maint.c, * mdebugread.c, * minidebug.c, * mips-linux-tdep.c, * mips-sde-tdep.c, * mips-tdep.c, * mipsread.c, * nto-tdep.c, * objfiles.c, * objfiles.h, * osabi.c, * ppc-linux-tdep.c, * ppc64-tdep.c, * record-btrace.c, * record-full.c, * remote.c, * rs6000-aix-tdep.c, * rs6000-tdep.c, * s390-linux-tdep.c, * s390-tdep.c, * solib-aix.c, * solib-dsbt.c, * solib-frv.c, * solib-spu.c, * solib-svr4.c, * solib-target.c, * spu-linux-nat.c, * spu-tdep.c, * symfile-mem.c, * symfile.c, * symmisc.c, * symtab.c, * target.c, * windows-nat.c, * xcoffread.c, * cli/cli-dump.c, * compile/compile-object-load.c, * mi/mi-interp.c: Update throughout for bfd section macro and function changes. * gcore (gcore_create_callback): Use bfd_set_section_lma. * spu-tdep.c (spu_overlay_new_objfile): Likewise. gprof/ * corefile.c, * symtab.c: Update throughout for bfd section macro and function changes. ld/ * ldcref.c, * ldctor.c, * ldelf.c, * ldlang.c, * pe-dll.c, * emultempl/aarch64elf.em, * emultempl/aix.em, * emultempl/armcoff.em, * emultempl/armelf.em, * emultempl/cr16elf.em, * emultempl/cskyelf.em, * emultempl/m68hc1xelf.em, * emultempl/m68kelf.em, * emultempl/mipself.em, * emultempl/mmix-elfnmmo.em, * emultempl/mmo.em, * emultempl/msp430.em, * emultempl/nios2elf.em, * emultempl/pe.em, * emultempl/pep.em, * emultempl/ppc64elf.em, * emultempl/xtensaelf.em: Update throughout for bfd section macro and function changes. libctf/ * ctf-open-bfd.c: Update throughout for bfd section macro changes. opcodes/ * arc-ext.c: Update throughout for bfd section macro changes. sim/ * common/sim-load.c, * common/sim-utils.c, * cris/sim-if.c, * erc32/func.c, * lm32/sim-if.c, * m32c/load.c, * m32c/trace.c, * m68hc11/interp.c, * ppc/hw_htab.c, * ppc/hw_init.c, * rl78/load.c, * rl78/trace.c, * rx/gdb-if.c, * rx/load.c, * rx/trace.c: Update throughout for bfd section macro changes.
731 lines
20 KiB
C
731 lines
20 KiB
C
/* resres.c: read_res_file and write_res_file implementation for windres.
|
|
Copyright (C) 1998-2019 Free Software Foundation, Inc.
|
|
Written by Anders Norlander <anorland@hem2.passagen.se>.
|
|
Rewritten by Kai Tietz, Onevision.
|
|
|
|
This file is part of GNU Binutils.
|
|
|
|
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 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
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.
|
|
|
|
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. */
|
|
|
|
/* FIXME: This file does not work correctly in a cross configuration.
|
|
It assumes that it can use fread and fwrite to read and write
|
|
integers. It does no swapping. */
|
|
|
|
#include "sysdep.h"
|
|
#include "bfd.h"
|
|
#include "bucomm.h"
|
|
#include "libiberty.h"
|
|
#include "windres.h"
|
|
|
|
#include <assert.h>
|
|
|
|
static rc_uint_type write_res_directory (windres_bfd *, rc_uint_type,
|
|
const rc_res_directory *, const rc_res_id *,
|
|
const rc_res_id *, rc_uint_type *, int);
|
|
static rc_uint_type write_res_resource (windres_bfd *, rc_uint_type,const rc_res_id *,
|
|
const rc_res_id *, const rc_res_resource *,
|
|
rc_uint_type *);
|
|
static rc_uint_type write_res_bin (windres_bfd *, rc_uint_type, const rc_res_resource *,
|
|
const rc_res_id *, const rc_res_id *,
|
|
const rc_res_res_info *);
|
|
|
|
static rc_uint_type write_res_id (windres_bfd *, rc_uint_type, const rc_res_id *);
|
|
static rc_uint_type write_res_info (windres_bfd *, rc_uint_type, const rc_res_res_info *);
|
|
static rc_uint_type write_res_data_hdr (windres_bfd *, rc_uint_type, res_hdr *);
|
|
|
|
static rc_uint_type write_res_header (windres_bfd *, rc_uint_type, rc_uint_type,
|
|
const rc_res_id *, const rc_res_id *,
|
|
const rc_res_res_info *);
|
|
|
|
static int read_resource_entry (windres_bfd *, rc_uint_type *, rc_uint_type);
|
|
static void read_res_data (windres_bfd *, rc_uint_type *, rc_uint_type, void *,
|
|
rc_uint_type);
|
|
static void read_res_data_hdr (windres_bfd *, rc_uint_type *, rc_uint_type, res_hdr *);
|
|
static void read_res_id (windres_bfd *, rc_uint_type *, rc_uint_type, rc_res_id *);
|
|
static unichar *read_unistring (windres_bfd *, rc_uint_type *, rc_uint_type, rc_uint_type *);
|
|
static void skip_null_resource (windres_bfd *, rc_uint_type *, rc_uint_type);
|
|
static int probe_binary (windres_bfd *wrbfd, rc_uint_type);
|
|
|
|
static unsigned long get_id_size (const rc_res_id *);
|
|
|
|
static void res_add_resource (rc_res_resource *, const rc_res_id *,
|
|
const rc_res_id *, rc_uint_type, int);
|
|
|
|
static void res_append_resource (rc_res_directory **, rc_res_resource *,
|
|
int, const rc_res_id *, int);
|
|
|
|
static rc_res_directory *resources = NULL;
|
|
|
|
static const char *filename;
|
|
|
|
extern char *program_name;
|
|
|
|
/* Read resource file */
|
|
rc_res_directory *
|
|
read_res_file (const char *fn)
|
|
{
|
|
rc_uint_type off, flen;
|
|
windres_bfd wrbfd;
|
|
bfd *abfd;
|
|
asection *sec;
|
|
filename = fn;
|
|
|
|
flen = (rc_uint_type) get_file_size (filename);
|
|
if (! flen)
|
|
fatal ("can't open '%s' for input.", filename);
|
|
abfd = windres_open_as_binary (filename, 1);
|
|
sec = bfd_get_section_by_name (abfd, ".data");
|
|
if (sec == NULL)
|
|
bfd_fatal ("bfd_get_section_by_name");
|
|
set_windres_bfd (&wrbfd, abfd, sec,
|
|
(target_is_bigendian ? WR_KIND_BFD_BIN_B
|
|
: WR_KIND_BFD_BIN_L));
|
|
off = 0;
|
|
|
|
if (! probe_binary (&wrbfd, flen))
|
|
set_windres_bfd_endianness (&wrbfd, ! target_is_bigendian);
|
|
|
|
skip_null_resource (&wrbfd, &off, flen);
|
|
|
|
while (read_resource_entry (&wrbfd, &off, flen))
|
|
;
|
|
|
|
bfd_close (abfd);
|
|
|
|
return resources;
|
|
}
|
|
|
|
/* Write resource file */
|
|
void
|
|
write_res_file (const char *fn,const rc_res_directory *resdir)
|
|
{
|
|
asection *sec;
|
|
rc_uint_type language;
|
|
bfd *abfd;
|
|
windres_bfd wrbfd;
|
|
unsigned long sec_length = 0,sec_length_wrote;
|
|
static const bfd_byte sign[] =
|
|
{0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00,
|
|
0xFF, 0xFF, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00,
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
|
|
|
|
filename = fn;
|
|
|
|
abfd = windres_open_as_binary (filename, 0);
|
|
sec = bfd_make_section_with_flags (abfd, ".data",
|
|
(SEC_HAS_CONTENTS | SEC_ALLOC
|
|
| SEC_LOAD | SEC_DATA));
|
|
if (sec == NULL)
|
|
bfd_fatal ("bfd_make_section");
|
|
/* Requiring this is probably a bug in BFD. */
|
|
sec->output_section = sec;
|
|
|
|
set_windres_bfd (&wrbfd, abfd, sec,
|
|
(target_is_bigendian ? WR_KIND_BFD_BIN_B
|
|
: WR_KIND_BFD_BIN_L));
|
|
|
|
language = -1;
|
|
sec_length = write_res_directory ((windres_bfd *) NULL, 0x20UL, resdir,
|
|
(const rc_res_id *) NULL,
|
|
(const rc_res_id *) NULL, &language, 1);
|
|
if (!bfd_set_section_size (sec, (sec_length + 3) & ~3))
|
|
bfd_fatal ("bfd_set_section_size");
|
|
if ((sec_length & 3) != 0)
|
|
set_windres_bfd_content (&wrbfd, sign, sec_length, 4-(sec_length & 3));
|
|
set_windres_bfd_content (&wrbfd, sign, 0, sizeof (sign));
|
|
language = -1;
|
|
sec_length_wrote = write_res_directory (&wrbfd, 0x20UL, resdir,
|
|
(const rc_res_id *) NULL,
|
|
(const rc_res_id *) NULL,
|
|
&language, 1);
|
|
if (sec_length != sec_length_wrote)
|
|
fatal ("res write failed with different sizes (%lu/%lu).",
|
|
(unsigned long) sec_length, (unsigned long) sec_length_wrote);
|
|
|
|
bfd_close (abfd);
|
|
return;
|
|
}
|
|
|
|
/* Read a resource entry, returns 0 when all resources are read */
|
|
static int
|
|
read_resource_entry (windres_bfd *wrbfd, rc_uint_type *off, rc_uint_type omax)
|
|
{
|
|
rc_res_id type;
|
|
rc_res_id name;
|
|
rc_res_res_info resinfo;
|
|
res_hdr reshdr;
|
|
void *buff;
|
|
|
|
rc_res_resource *r;
|
|
struct bin_res_info l;
|
|
|
|
off[0] = (off[0] + 3) & ~3;
|
|
|
|
/* Read header */
|
|
if ((off[0] + 8) > omax)
|
|
return 0;
|
|
read_res_data_hdr (wrbfd, off, omax, &reshdr);
|
|
|
|
/* read resource type */
|
|
read_res_id (wrbfd, off, omax, &type);
|
|
/* read resource id */
|
|
read_res_id (wrbfd, off, omax, &name);
|
|
|
|
off[0] = (off[0] + 3) & ~3;
|
|
|
|
/* Read additional resource header */
|
|
read_res_data (wrbfd, off, omax, &l, BIN_RES_INFO_SIZE);
|
|
resinfo.version = windres_get_32 (wrbfd, l.version, 4);
|
|
resinfo.memflags = windres_get_16 (wrbfd, l.memflags, 2);
|
|
resinfo.language = windres_get_16 (wrbfd, l.language, 2);
|
|
/* resinfo.version2 = windres_get_32 (wrbfd, l.version2, 4); */
|
|
resinfo.characteristics = windres_get_32 (wrbfd, l.characteristics, 4);
|
|
|
|
off[0] = (off[0] + 3) & ~3;
|
|
|
|
/* Allocate buffer for data */
|
|
buff = res_alloc (reshdr.data_size);
|
|
/* Read data */
|
|
read_res_data (wrbfd, off, omax, buff, reshdr.data_size);
|
|
/* Convert binary data to resource */
|
|
r = bin_to_res (wrbfd, type, buff, reshdr.data_size);
|
|
r->res_info = resinfo;
|
|
/* Add resource to resource directory */
|
|
res_add_resource (r, &type, &name, resinfo.language, 0);
|
|
|
|
return 1;
|
|
}
|
|
|
|
/* write resource directory to binary resource file */
|
|
static rc_uint_type
|
|
write_res_directory (windres_bfd *wrbfd, rc_uint_type off, const rc_res_directory *rd,
|
|
const rc_res_id *type, const rc_res_id *name, rc_uint_type *language,
|
|
int level)
|
|
{
|
|
const rc_res_entry *re;
|
|
|
|
for (re = rd->entries; re != NULL; re = re->next)
|
|
{
|
|
switch (level)
|
|
{
|
|
case 1:
|
|
/* If we're at level 1, the key of this resource is the
|
|
type. This normally duplicates the information we have
|
|
stored with the resource itself, but we need to remember
|
|
the type if this is a user define resource type. */
|
|
type = &re->id;
|
|
break;
|
|
|
|
case 2:
|
|
/* If we're at level 2, the key of this resource is the name
|
|
we are going to use in the rc printout. */
|
|
name = &re->id;
|
|
break;
|
|
|
|
case 3:
|
|
/* If we're at level 3, then this key represents a language.
|
|
Use it to update the current language. */
|
|
if (! re->id.named
|
|
&& re->id.u.id != (unsigned long) *language
|
|
&& (re->id.u.id & 0xffff) == re->id.u.id)
|
|
{
|
|
*language = re->id.u.id;
|
|
}
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
if (re->subdir)
|
|
off = write_res_directory (wrbfd, off, re->u.dir, type, name, language,
|
|
level + 1);
|
|
else
|
|
{
|
|
if (level == 3)
|
|
{
|
|
/* This is the normal case: the three levels are
|
|
TYPE/NAME/LANGUAGE. NAME will have been set at level
|
|
2, and represents the name to use. We probably just
|
|
set LANGUAGE, and it will probably match what the
|
|
resource itself records if anything. */
|
|
off = write_res_resource (wrbfd, off, type, name, re->u.res,
|
|
language);
|
|
}
|
|
else
|
|
{
|
|
fprintf (stderr, "// Resource at unexpected level %d\n", level);
|
|
off = write_res_resource (wrbfd, off, type, (rc_res_id *) NULL,
|
|
re->u.res, language);
|
|
}
|
|
}
|
|
}
|
|
|
|
return off;
|
|
}
|
|
|
|
static rc_uint_type
|
|
write_res_resource (windres_bfd *wrbfd, rc_uint_type off, const rc_res_id *type,
|
|
const rc_res_id *name, const rc_res_resource *res,
|
|
rc_uint_type *language ATTRIBUTE_UNUSED)
|
|
{
|
|
int rt;
|
|
|
|
switch (res->type)
|
|
{
|
|
default:
|
|
abort ();
|
|
|
|
case RES_TYPE_ACCELERATOR:
|
|
rt = RT_ACCELERATOR;
|
|
break;
|
|
|
|
case RES_TYPE_BITMAP:
|
|
rt = RT_BITMAP;
|
|
break;
|
|
|
|
case RES_TYPE_CURSOR:
|
|
rt = RT_CURSOR;
|
|
break;
|
|
|
|
case RES_TYPE_GROUP_CURSOR:
|
|
rt = RT_GROUP_CURSOR;
|
|
break;
|
|
|
|
case RES_TYPE_DIALOG:
|
|
rt = RT_DIALOG;
|
|
break;
|
|
|
|
case RES_TYPE_FONT:
|
|
rt = RT_FONT;
|
|
break;
|
|
|
|
case RES_TYPE_FONTDIR:
|
|
rt = RT_FONTDIR;
|
|
break;
|
|
|
|
case RES_TYPE_ICON:
|
|
rt = RT_ICON;
|
|
break;
|
|
|
|
case RES_TYPE_GROUP_ICON:
|
|
rt = RT_GROUP_ICON;
|
|
break;
|
|
|
|
case RES_TYPE_MENU:
|
|
rt = RT_MENU;
|
|
break;
|
|
|
|
case RES_TYPE_MESSAGETABLE:
|
|
rt = RT_MESSAGETABLE;
|
|
break;
|
|
|
|
case RES_TYPE_RCDATA:
|
|
rt = RT_RCDATA;
|
|
break;
|
|
|
|
case RES_TYPE_STRINGTABLE:
|
|
rt = RT_STRING;
|
|
break;
|
|
|
|
case RES_TYPE_USERDATA:
|
|
rt = 0;
|
|
break;
|
|
|
|
case RES_TYPE_VERSIONINFO:
|
|
rt = RT_VERSION;
|
|
break;
|
|
|
|
case RES_TYPE_TOOLBAR:
|
|
rt = RT_TOOLBAR;
|
|
break;
|
|
}
|
|
|
|
if (rt != 0
|
|
&& type != NULL
|
|
&& (type->named || type->u.id != (unsigned long) rt))
|
|
{
|
|
fprintf (stderr, "// Unexpected resource type mismatch: ");
|
|
res_id_print (stderr, *type, 1);
|
|
fprintf (stderr, " != %d", rt);
|
|
abort ();
|
|
}
|
|
|
|
return write_res_bin (wrbfd, off, res, type, name, &res->res_info);
|
|
}
|
|
|
|
/* Write a resource in binary resource format */
|
|
static rc_uint_type
|
|
write_res_bin (windres_bfd *wrbfd, rc_uint_type off, const rc_res_resource *res,
|
|
const rc_res_id *type, const rc_res_id *name,
|
|
const rc_res_res_info *resinfo)
|
|
{
|
|
rc_uint_type noff;
|
|
rc_uint_type datasize = 0;
|
|
|
|
noff = res_to_bin ((windres_bfd *) NULL, off, res);
|
|
datasize = noff - off;
|
|
|
|
off = write_res_header (wrbfd, off, datasize, type, name, resinfo);
|
|
return res_to_bin (wrbfd, off, res);
|
|
}
|
|
|
|
/* Get number of bytes needed to store an id in binary format */
|
|
static unsigned long
|
|
get_id_size (const rc_res_id *id)
|
|
{
|
|
if (id->named)
|
|
return sizeof (unichar) * (id->u.n.length + 1);
|
|
else
|
|
return sizeof (unichar) * 2;
|
|
}
|
|
|
|
/* Write a resource header */
|
|
static rc_uint_type
|
|
write_res_header (windres_bfd *wrbfd, rc_uint_type off, rc_uint_type datasize,
|
|
const rc_res_id *type, const rc_res_id *name,
|
|
const rc_res_res_info *resinfo)
|
|
{
|
|
res_hdr reshdr;
|
|
reshdr.data_size = datasize;
|
|
reshdr.header_size = 24 + get_id_size (type) + get_id_size (name);
|
|
|
|
reshdr.header_size = (reshdr.header_size + 3) & ~3;
|
|
|
|
off = (off + 3) & ~3;
|
|
|
|
off = write_res_data_hdr (wrbfd, off, &reshdr);
|
|
off = write_res_id (wrbfd, off, type);
|
|
off = write_res_id (wrbfd, off, name);
|
|
|
|
off = (off + 3) & ~3;
|
|
|
|
off = write_res_info (wrbfd, off, resinfo);
|
|
off = (off + 3) & ~3;
|
|
return off;
|
|
}
|
|
|
|
static rc_uint_type
|
|
write_res_data_hdr (windres_bfd *wrbfd, rc_uint_type off, res_hdr *hdr)
|
|
{
|
|
if (wrbfd)
|
|
{
|
|
struct bin_res_hdr brh;
|
|
windres_put_32 (wrbfd, brh.data_size, hdr->data_size);
|
|
windres_put_32 (wrbfd, brh.header_size, hdr->header_size);
|
|
set_windres_bfd_content (wrbfd, &brh, off, BIN_RES_HDR_SIZE);
|
|
}
|
|
return off + BIN_RES_HDR_SIZE;
|
|
}
|
|
|
|
static void
|
|
read_res_data_hdr (windres_bfd *wrbfd, rc_uint_type *off, rc_uint_type omax,
|
|
res_hdr *reshdr)
|
|
{
|
|
struct bin_res_hdr brh;
|
|
|
|
if ((off[0] + BIN_RES_HDR_SIZE) > omax)
|
|
fatal ("%s: unexpected end of file %ld/%ld", filename,(long) off[0], (long) omax);
|
|
|
|
get_windres_bfd_content (wrbfd, &brh, off[0], BIN_RES_HDR_SIZE);
|
|
reshdr->data_size = windres_get_32 (wrbfd, brh.data_size, 4);
|
|
reshdr->header_size = windres_get_32 (wrbfd, brh.header_size, 4);
|
|
off[0] += BIN_RES_HDR_SIZE;
|
|
}
|
|
|
|
/* Read data from file, abort on failure */
|
|
static void
|
|
read_res_data (windres_bfd *wrbfd, rc_uint_type *off, rc_uint_type omax, void *data,
|
|
rc_uint_type size)
|
|
{
|
|
if ((off[0] + size) > omax)
|
|
fatal ("%s: unexpected end of file %ld/%ld %ld", filename,(long) off[0],
|
|
(long) omax, (long) size);
|
|
get_windres_bfd_content (wrbfd, data, off[0], size);
|
|
off[0] += size;
|
|
}
|
|
|
|
/* Write a resource id */
|
|
static rc_uint_type
|
|
write_res_id (windres_bfd *wrbfd, rc_uint_type off, const rc_res_id *id)
|
|
{
|
|
if (id->named)
|
|
{
|
|
rc_uint_type len = (((bfd_signed_vma) id->u.n.length < 0 ? 0 : id->u.n.length) + 1);
|
|
if (wrbfd)
|
|
{
|
|
rc_uint_type i;
|
|
bfd_byte *d = (bfd_byte *) xmalloc (len * sizeof (unichar));
|
|
for (i = 0; i < (len - 1); i++)
|
|
windres_put_16 (wrbfd, d + (i * sizeof (unichar)), id->u.n.name[i]);
|
|
windres_put_16 (wrbfd, d + (i * sizeof (unichar)), 0);
|
|
set_windres_bfd_content (wrbfd, d, off, (len * sizeof (unichar)));
|
|
}
|
|
off += (len * sizeof (unichar));
|
|
}
|
|
else
|
|
{
|
|
if (wrbfd)
|
|
{
|
|
struct bin_res_id bid;
|
|
windres_put_16 (wrbfd, bid.sig, 0xffff);
|
|
windres_put_16 (wrbfd, bid.id, id->u.id);
|
|
set_windres_bfd_content (wrbfd, &bid, off, BIN_RES_ID);
|
|
}
|
|
off += BIN_RES_ID;
|
|
}
|
|
return off;
|
|
}
|
|
|
|
/* Write resource info */
|
|
static rc_uint_type
|
|
write_res_info (windres_bfd *wrbfd, rc_uint_type off, const rc_res_res_info *info)
|
|
{
|
|
if (wrbfd)
|
|
{
|
|
struct bin_res_info l;
|
|
|
|
windres_put_32 (wrbfd, l.version, info->version);
|
|
windres_put_16 (wrbfd, l.memflags, info->memflags);
|
|
windres_put_16 (wrbfd, l.language, info->language);
|
|
windres_put_32 (wrbfd, l.version2, info->version);
|
|
windres_put_32 (wrbfd, l.characteristics, info->characteristics);
|
|
set_windres_bfd_content (wrbfd, &l, off, BIN_RES_INFO_SIZE);
|
|
}
|
|
return off + BIN_RES_INFO_SIZE;
|
|
}
|
|
|
|
/* read a resource identifier */
|
|
static void
|
|
read_res_id (windres_bfd *wrbfd, rc_uint_type *off, rc_uint_type omax, rc_res_id *id)
|
|
{
|
|
struct bin_res_id bid;
|
|
unsigned short ord;
|
|
unichar *id_s = NULL;
|
|
rc_uint_type len;
|
|
|
|
read_res_data (wrbfd, off, omax, &bid, BIN_RES_ID - 2);
|
|
ord = (unsigned short) windres_get_16 (wrbfd, bid.sig, 2);
|
|
if (ord == 0xFFFF) /* an ordinal id */
|
|
{
|
|
read_res_data (wrbfd, off, omax, bid.id, BIN_RES_ID - 2);
|
|
id->named = 0;
|
|
id->u.id = windres_get_16 (wrbfd, bid.id, 2);
|
|
}
|
|
else
|
|
/* named id */
|
|
{
|
|
off[0] -= 2;
|
|
id_s = read_unistring (wrbfd, off, omax, &len);
|
|
id->named = 1;
|
|
id->u.n.length = len;
|
|
id->u.n.name = id_s;
|
|
}
|
|
}
|
|
|
|
/* Read a null terminated UNICODE string */
|
|
static unichar *
|
|
read_unistring (windres_bfd *wrbfd, rc_uint_type *off, rc_uint_type omax,
|
|
rc_uint_type *len)
|
|
{
|
|
unichar *s;
|
|
bfd_byte d[2];
|
|
unichar c;
|
|
unichar *p;
|
|
rc_uint_type l;
|
|
rc_uint_type soff = off[0];
|
|
|
|
do
|
|
{
|
|
read_res_data (wrbfd, &soff, omax, d, sizeof (unichar));
|
|
c = windres_get_16 (wrbfd, d, 2);
|
|
}
|
|
while (c != 0);
|
|
l = ((soff - off[0]) / sizeof (unichar));
|
|
|
|
/* there are hardly any names longer than 256 characters, but anyway. */
|
|
p = s = (unichar *) xmalloc (sizeof (unichar) * l);
|
|
do
|
|
{
|
|
read_res_data (wrbfd, off, omax, d, sizeof (unichar));
|
|
c = windres_get_16 (wrbfd, d, 2);
|
|
*p++ = c;
|
|
}
|
|
while (c != 0);
|
|
*len = l - 1;
|
|
return s;
|
|
}
|
|
|
|
static int
|
|
probe_binary (windres_bfd *wrbfd, rc_uint_type omax)
|
|
{
|
|
rc_uint_type off;
|
|
res_hdr reshdr;
|
|
|
|
off = 0;
|
|
read_res_data_hdr (wrbfd, &off, omax, &reshdr);
|
|
if (reshdr.data_size != 0)
|
|
return 1;
|
|
if ((reshdr.header_size != 0x20 && ! target_is_bigendian)
|
|
|| (reshdr.header_size != 0x20000000 && target_is_bigendian))
|
|
return 1;
|
|
|
|
/* Subtract size of HeaderSize. DataSize has to be zero. */
|
|
off += 0x20 - BIN_RES_HDR_SIZE;
|
|
if ((off + BIN_RES_HDR_SIZE) >= omax)
|
|
return 1;
|
|
read_res_data_hdr (wrbfd, &off, omax, &reshdr);
|
|
/* off is advanced by BIN_RES_HDR_SIZE in read_res_data_hdr()
|
|
which is part of reshdr.header_size. We shouldn't take it
|
|
into account twice. */
|
|
if ((off - BIN_RES_HDR_SIZE + reshdr.data_size + reshdr.header_size) > omax)
|
|
return 0;
|
|
return 1;
|
|
}
|
|
|
|
/* Check if file is a win32 binary resource file, if so
|
|
skip past the null resource. Returns 0 if successful, -1 on
|
|
error.
|
|
*/
|
|
static void
|
|
skip_null_resource (windres_bfd *wrbfd, rc_uint_type *off, rc_uint_type omax)
|
|
{
|
|
res_hdr reshdr;
|
|
read_res_data_hdr (wrbfd, off, omax, &reshdr);
|
|
if (reshdr.data_size != 0)
|
|
goto skip_err;
|
|
if ((reshdr.header_size != 0x20 && ! target_is_bigendian)
|
|
|| (reshdr.header_size != 0x20000000 && target_is_bigendian))
|
|
goto skip_err;
|
|
|
|
/* Subtract size of HeaderSize. DataSize has to be zero. */
|
|
off[0] += 0x20 - BIN_RES_HDR_SIZE;
|
|
if (off[0] >= omax)
|
|
goto skip_err;
|
|
|
|
return;
|
|
|
|
skip_err:
|
|
fprintf (stderr, "%s: %s: Not a valid WIN32 resource file\n", program_name,
|
|
filename);
|
|
xexit (1);
|
|
}
|
|
|
|
/* Add a resource to resource directory */
|
|
static void
|
|
res_add_resource (rc_res_resource *r, const rc_res_id *type, const rc_res_id *id,
|
|
rc_uint_type language, int dupok)
|
|
{
|
|
rc_res_id a[3];
|
|
|
|
a[0] = *type;
|
|
a[1] = *id;
|
|
a[2].named = 0;
|
|
a[2].u.id = language;
|
|
res_append_resource (&resources, r, 3, a, dupok);
|
|
}
|
|
|
|
/* Append a resource to resource directory.
|
|
This is just copied from define_resource
|
|
and modified to add an existing resource.
|
|
*/
|
|
static void
|
|
res_append_resource (rc_res_directory **res_dirs, rc_res_resource *resource,
|
|
int cids, const rc_res_id *ids, int dupok)
|
|
{
|
|
rc_res_entry *re = NULL;
|
|
int i;
|
|
|
|
assert (cids > 0);
|
|
for (i = 0; i < cids; i++)
|
|
{
|
|
rc_res_entry **pp;
|
|
|
|
if (*res_dirs == NULL)
|
|
{
|
|
*res_dirs = ((rc_res_directory *)
|
|
res_alloc (sizeof (rc_res_directory)));
|
|
|
|
(*res_dirs)->characteristics = 0;
|
|
/* Using a real timestamp only serves to create non-deterministic
|
|
results. Use zero instead. */
|
|
(*res_dirs)->time = 0;
|
|
(*res_dirs)->major = 0;
|
|
(*res_dirs)->minor = 0;
|
|
(*res_dirs)->entries = NULL;
|
|
}
|
|
|
|
for (pp = &(*res_dirs)->entries; *pp != NULL; pp = &(*pp)->next)
|
|
if (res_id_cmp ((*pp)->id, ids[i]) == 0)
|
|
break;
|
|
|
|
if (*pp != NULL)
|
|
re = *pp;
|
|
else
|
|
{
|
|
re = (rc_res_entry *) res_alloc (sizeof (rc_res_entry));
|
|
re->next = NULL;
|
|
re->id = ids[i];
|
|
if ((i + 1) < cids)
|
|
{
|
|
re->subdir = 1;
|
|
re->u.dir = NULL;
|
|
}
|
|
else
|
|
{
|
|
re->subdir = 0;
|
|
re->u.res = NULL;
|
|
}
|
|
|
|
*pp = re;
|
|
}
|
|
|
|
if ((i + 1) < cids)
|
|
{
|
|
if (! re->subdir)
|
|
{
|
|
fprintf (stderr, "%s: ", program_name);
|
|
res_ids_print (stderr, i, ids);
|
|
fprintf (stderr, ": expected to be a directory\n");
|
|
xexit (1);
|
|
}
|
|
|
|
res_dirs = &re->u.dir;
|
|
}
|
|
}
|
|
|
|
if (re->subdir)
|
|
{
|
|
fprintf (stderr, "%s: ", program_name);
|
|
res_ids_print (stderr, cids, ids);
|
|
fprintf (stderr, ": expected to be a leaf\n");
|
|
xexit (1);
|
|
}
|
|
|
|
if (re->u.res != NULL)
|
|
{
|
|
if (dupok)
|
|
return;
|
|
|
|
fprintf (stderr, "%s: warning: ", program_name);
|
|
res_ids_print (stderr, cids, ids);
|
|
fprintf (stderr, ": duplicate value\n");
|
|
}
|
|
|
|
re->u.res = resource;
|
|
}
|