aboutsummaryrefslogtreecommitdiff
path: root/binutils/rescoff.c
blob: 65df9bfbd735940350cb2d11bd5b3d902628acce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
/* resrc.c -- read and write Windows rc files.
   Copyright 1997 Free Software Foundation, Inc.
   Written by Ian Lance Taylor, Cygnus Support.

   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 2 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., 59 Temple Place - Suite 330, Boston, MA
   02111-1307, USA.  */

/* This file contains function that read and write Windows resources
   in COFF files.  */

#include "bfd.h"
#include "bucomm.h"
#include "libiberty.h"
#include "windres.h"

/* In order to use the address of a resource data entry, we need to
   get the image base of the file.  Right now we extract it from
   internal BFD information.  FIXME.  */

#include "coff/internal.h"
#include "libcoff.h"

/* Information we extract from the file.  */

struct coff_file_info
{
  /* File name.  */
  const char *filename;
  /* Data read from the file.  */
  const bfd_byte *data;
  /* End of data read from file.  */
  const bfd_byte *data_end;
  /* Address of the resource section minus the image base of the file.  */
  bfd_vma secaddr;
  /* Non-zero if the file is big endian.  */
  int big_endian;
};

/* A resource directory table in a COFF file.  */

struct extern_res_directory
{
  /* Characteristics.  */
  bfd_byte characteristics[4];
  /* Time stamp.  */
  bfd_byte time[4];
  /* Major version number.  */
  bfd_byte major[2];
  /* Minor version number.  */
  bfd_byte minor[2];
  /* Number of named directory entries.  */
  bfd_byte name_count[2];
  /* Number of directory entries with IDs.  */
  bfd_byte id_count[2];
};

/* A resource directory entry in a COFF file.  */

struct extern_res_entry
{
  /* Name or ID.  */
  bfd_byte name[4];
  /* Address of resource entry or subdirectory.  */
  bfd_byte rva[4];
};

/* A resource data entry in a COFF file.  */

struct extern_res_data
{
  /* Address of resource data.  This is apparently a file relative
     address, rather than a section offset.  */
  bfd_byte rva[4];
  /* Size of resource data.  */
  bfd_byte size[4];
  /* Code page.  */
  bfd_byte codepage[4];
  /* Reserved.  */
  bfd_byte reserved[4];
};

/* Macros to swap in values.  */

#define get_16(fi, s) ((fi)->big_endian ? bfd_getb16 (s) : bfd_getl16 (s))
#define get_32(fi, s) ((fi)->big_endian ? bfd_getb32 (s) : bfd_getl32 (s))

/* Local functions.  */

static void overrun PARAMS ((const struct coff_file_info *, const char *));
static struct res_directory *read_coff_res_dir
  PARAMS ((const bfd_byte *, const struct coff_file_info *));
static struct res_resource *read_coff_data_entry
  PARAMS ((const bfd_byte *, const struct coff_file_info *));

/* Read the resources in a COFF file.  */

struct res_directory *
read_coff_rsrc (filename, target)
     const char *filename;
     const char *target;
{
  bfd *abfd;
  char **matching;
  asection *sec;
  bfd_size_type size;
  bfd_byte *data;
  struct coff_file_info finfo;

  abfd = bfd_openr (filename, target);
  if (abfd == NULL)
    bfd_fatal (filename);

  if (! bfd_check_format_matches (abfd, bfd_object, &matching))
    {
      bfd_nonfatal (bfd_get_filename (abfd));
      if (bfd_get_error () == bfd_error_file_ambiguously_recognized)
	list_matching_formats (matching);
      xexit (1);
    }

  sec = bfd_get_section_by_name (abfd, ".rsrc");
  if (sec == NULL)
    {
      fprintf (stderr, "%s: %s: no resource section\n", program_name,
	       filename);
      xexit (1);
    }

  size = bfd_section_size (abfd, sec);
  data = (bfd_byte *) xmalloc (size);

  if (! bfd_get_section_contents (abfd, sec, data, 0, size))
    bfd_fatal ("can't read resource section");

  finfo.filename = filename;
  finfo.data = data;
  finfo.data_end = data + size;
  finfo.secaddr = (bfd_get_section_vma (abfd, sec)
		   - pe_data (abfd)->pe_opthdr.ImageBase);
  finfo.big_endian = bfd_big_endian (abfd);

  bfd_close (abfd);

  /* Now just read in the top level resource directory.  Note that we
     don't free data, since we create resource entries that point into
     it.  If we ever want to free up the resource information we read,
     this will have to be cleaned up.  */

  return read_coff_res_dir (data, &finfo);
}

/* Give an error if we are out of bounds.  */

static void
overrun (finfo, msg)
     const struct coff_file_info *finfo;
     const char *msg;
{
  fatal ("%s: %s: address out of bounds", finfo->filename, msg);
}

/* Read a resource directory.  */

static struct res_directory *
read_coff_res_dir (data, finfo)
     const bfd_byte *data;
     const struct coff_file_info *finfo;
{
  const struct extern_res_directory *erd;
  struct res_directory *rd;
  int name_count, id_count, i;
  struct res_entry **pp;
  const struct extern_res_entry *ere;

  if (finfo->data_end - data < sizeof (struct extern_res_directory))
    overrun (finfo, "directory");

  erd = (const struct extern_res_directory *) data;

  rd = (struct res_directory *) xmalloc (sizeof *rd);
  rd->characteristics = get_32 (finfo, erd->characteristics);
  rd->time = get_32 (finfo, erd->time);
  rd->major = get_16 (finfo, erd->major);
  rd->minor = get_16 (finfo, erd->minor);
  rd->entries = NULL;

  name_count = get_16 (finfo, erd->name_count);
  id_count = get_16 (finfo, erd->id_count);

  pp = &rd->entries;

  /* The resource directory entries immediately follow the directory
     table.  */
  ere = (const struct extern_res_entry *) (erd + 1);

  for (i = 0; i < name_count; i++, ere++)
    {
      unsigned long name, rva;
      struct res_entry *re;
      const bfd_byte *ers;
      int length, j;

      if ((const bfd_byte *) ere >= finfo->data_end)
	overrun (finfo, "named directory entry");

      name = get_32 (finfo, ere->name);
      rva = get_32 (finfo, ere->rva);

      /* For some reason the high bit in NAME is set.  */
      name &=~ 0x80000000;

      if (name > finfo->data_end - finfo->data)
	overrun (finfo, "directory entry name");

      ers = finfo->data + name;

      re = (struct res_entry *) xmalloc (sizeof *re);
      re->next = NULL;
      re->id.named = 1;
      length = get_16 (finfo, ers);
      re->id.u.n.length = length;
      re->id.u.n.name = ((unsigned short *)
			 xmalloc (length * sizeof (unsigned short)));
      for (j = 0; j < length; j++)
	re->id.u.n.name[j] = get_16 (finfo, ers + j * 2 + 2);

      if ((rva & 0x80000000) != 0)
	{
	  rva &=~ 0x80000000;
	  if (rva >= finfo->data_end - finfo->data)
	    overrun (finfo, "named subdirectory");
	  re->subdir = 1;
	  re->u.dir = read_coff_res_dir (finfo->data + rva, finfo);
	}
      else
	{
	  if (rva >= finfo->data_end - finfo->data)
	    overrun (finfo, "named resource");
	  re->subdir = 0;
	  re->u.res = read_coff_data_entry (finfo->data + rva, finfo);
	}

      *pp = re;
      pp = &re->next;
    }

  for (i = 0; i < id_count; i++, ere++)
    {
      unsigned long name, rva;
      struct res_entry *re;

      if ((const bfd_byte *) ere >= finfo->data_end)
	overrun (finfo, "ID directory entry");

      name = get_32 (finfo, ere->name);
      rva = get_32 (finfo, ere->rva);

      re = (struct res_entry *) xmalloc (sizeof *re);
      re->next = NULL;
      re->id.named = 0;
      re->id.u.id = name;

      if ((rva & 0x80000000) != 0)
	{
	  rva &=~ 0x80000000;
	  if (rva >= finfo->data_end - finfo->data)
	    overrun (finfo, "ID subdirectory");
	  re->subdir = 1;
	  re->u.dir = read_coff_res_dir (finfo->data + rva, finfo);
	}
      else
	{
	  if (rva >= finfo->data_end - finfo->data)
	    overrun (finfo, "ID resource");
	  re->subdir = 0;
	  re->u.res = read_coff_data_entry (finfo->data + rva, finfo);
	}

      *pp = re;
      pp = &re->next;
    }

  return rd;
}

/* Read a resource data entry.  */

static struct res_resource *
read_coff_data_entry (data, finfo)
     const bfd_byte *data;
     const struct coff_file_info *finfo;
{
  const struct extern_res_data *erd;
  struct res_resource *r;
  unsigned long size, rva;
  const bfd_byte *resdata;

  if (finfo->data_end - data < sizeof (struct extern_res_data))
    overrun (finfo, "data entry");

  erd = (const struct extern_res_data *) data;

  r = (struct res_resource *) xmalloc (sizeof *r);
  memset (&r->res_info, 0, sizeof (struct res_res_info));
  r->coff_info.codepage = get_32 (finfo, erd->codepage);
  r->coff_info.reserved = get_32 (finfo, erd->reserved);

  size = get_32 (finfo, erd->size);
  rva = get_32 (finfo, erd->rva);
  if (rva < finfo->secaddr
      || rva - finfo->secaddr >= finfo->data_end - finfo->data)
    overrun (finfo, "resource data");

  resdata = finfo->data + (rva - finfo->secaddr);

  r->type = RES_TYPE_USERDATA;
  r->u.userdata = ((struct rcdata_data *)
		   xmalloc (sizeof (struct rcdata_data)));
  r->u.userdata->first = ((struct rcdata_item *)
			  xmalloc (sizeof (struct rcdata_item)));
  r->u.userdata->last = r->u.userdata->first;
  r->u.userdata->first->next = NULL;
  r->u.userdata->first->type = RCDATA_BUFFER;
  r->u.userdata->first->u.buffer.length = size;
  r->u.userdata->first->u.buffer.data = (unsigned char *) resdata;

  return r;
}