summaryrefslogtreecommitdiffstats
path: root/tests/fillfile.c
blob: 915e249d1858b2c3c8a8b26d50b9ecf9f451cd45 (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
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
/* Test program for changing data in one section (but not others) with gaps.
   Copyright (C) 2017 Red Hat, Inc.
   This file is part of elfutils.

   This file 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.

   elfutils 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, see <http://www.gnu.org/licenses/>.  */


#ifdef HAVE_CONFIG_H
# include <config.h>
#endif

#include <errno.h>
#include <fcntl.h>
#include <inttypes.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

#include ELFUTILS_HEADER(elf)
#include <gelf.h>


/* Index of last string added.  Returned by add_string ().  */
static size_t stridx = 0;

/* Adds a string and returns the offset in the section.  */
static size_t
add_strtab_entry (Elf_Scn *strtab, const char *str)
{
  size_t lastidx = stridx;
  size_t size = strlen (str) + 1;

  Elf_Data *data = elf_newdata (strtab);
  if (data == NULL)
    {
      printf ("cannot create data SHSTRTAB section: %s\n", elf_errmsg (-1));
      exit (1);
    }

  data->d_buf = (char *) str; /* Discards const, but we will not change. */
  data->d_type = ELF_T_BYTE;
  data->d_size = size;
  data->d_align = 1;
  data->d_version = EV_CURRENT;

  stridx += size;
  printf ("add_string: '%s', stridx: %zd, lastidx: %zd\n",
	  str, stridx, lastidx);
  return lastidx;
}

static Elf_Scn *
create_strtab (Elf *elf)
{
  // Create strtab section.
  Elf_Scn *scn = elf_newscn (elf);
  if (scn == NULL)
    {
      printf ("cannot create strings section: %s\n", elf_errmsg (-1));
      exit (1);
    }

  // Add an empty string to the table as NUL entry for section zero.
  add_strtab_entry (scn, "");

  GElf_Shdr shdr_mem;
  GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
  if (shdr == NULL)
    {
      printf ("cannot get header for new strtab section: %s\n",
	      elf_errmsg (-1));
      exit (1);
    }

  shdr->sh_type = SHT_STRTAB;
  shdr->sh_flags = 0;
  shdr->sh_addr = 0;
  shdr->sh_link = SHN_UNDEF;
  shdr->sh_info = SHN_UNDEF;
  shdr->sh_addralign = 1;
  shdr->sh_entsize = 0;
  shdr->sh_name = add_strtab_entry (scn, ".strtab");

  // We have to store the section strtab index in the ELF header.
  // So sections have actual names.
  GElf_Ehdr ehdr_mem;
  GElf_Ehdr *ehdr = gelf_getehdr (elf, &ehdr_mem);
  if (ehdr == NULL)
    {
      printf ("cannot get ELF header: %s\n", elf_errmsg (-1));
      exit (1);
    }

  int ndx = elf_ndxscn (scn);
  ehdr->e_shstrndx = ndx;

  if (gelf_update_ehdr (elf, ehdr) == 0)
    {
      printf ("cannot update ELF header: %s\n", elf_errmsg (-1));
      exit (1);
    }

  // Finished strtab section, update the header.
  if (gelf_update_shdr (scn, shdr) == 0)
    {
      printf ("cannot update STRTAB section header: %s\n", elf_errmsg (-1));
      exit (1);
    }

  return scn;
}

static char sec_data[] = { 1, 2, 3, 4, 5 };
static char new_data[] = { 5, 4, 3, 2, 1 };

static void
add_data_section (Elf *elf, Elf_Scn *strtab, const char *sname)
{
  printf ("Add data section %s\n", sname);
  Elf_Scn *scn = elf_newscn (elf);
  if (scn == NULL)
    {
      printf ("cannot create strings section: %s\n", elf_errmsg (-1));
      exit (1);
    }

  GElf_Shdr shdr_mem;
  GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
  if (shdr == NULL)
    {
      printf ("cannot get header for new %s section: %s\n",
	      sname, elf_errmsg (-1));
      exit (1);
    }

  shdr->sh_type = SHT_PROGBITS;
  shdr->sh_flags = 0;
  shdr->sh_addr = 0;
  shdr->sh_link = SHN_UNDEF;
  shdr->sh_info = SHN_UNDEF;
  shdr->sh_addralign = 128;  // Large alignment to force gap between sections.
  shdr->sh_entsize = 1;
  shdr->sh_name = add_strtab_entry (strtab, sname);

  if (gelf_update_shdr (scn, shdr) == 0)
    {
      printf ("cannot update %s section header: %s\n", sname, elf_errmsg (-1));
      exit (1);
    }

  /* Add some data, but less than alignment. */
  Elf_Data *data = elf_newdata (scn);
  if (data == NULL)
    {
      printf ("cannot update %s section header: %s\n", sname, elf_errmsg (-1));
      exit (1);
    }
  data->d_buf = sec_data;
  data->d_size = 5;
}

static void
check_data (const char *sname, Elf_Data *data, char *buf)
{
  printf ("check data %s [", sname);
  for (int i = 0; i < 5; i++)
    printf ("%d%s", buf[i], i < 4 ? "," : "");
  printf ("]\n");
  if (data == NULL || data->d_buf == NULL)
    {
      printf ("No data in section %s\n", sname);
      exit (1);
    }

  if (data->d_size != 5 || memcmp (data->d_buf, buf, 5) != 0)
    {
      printf ("Wrong data in section %s [", sname);
      for (size_t i = 0; i < data->d_size; i++)
	printf ("%d%s", ((char *)data->d_buf)[i],
		i < data->d_size - 1 ? "," : "");
      printf ("]\n");
      exit(1);
    }
}

static void
check_elf (const char *fname, int class, int use_mmap)
{
  printf ("\nfname: %s\n", fname);
  stridx = 0; // Reset strtab strings index

  int fd = open (fname, O_RDWR | O_CREAT | O_TRUNC, 0666);
  if (fd == -1)
    {
      printf ("cannot open `%s': %s\n", fname, strerror (errno));
      exit (1);
    }

  Elf *elf = elf_begin (fd, use_mmap ? ELF_C_WRITE_MMAP : ELF_C_WRITE, NULL);
  if (elf == NULL)
    {
      printf ("cannot create ELF descriptor: %s\n", elf_errmsg (-1));
      exit (1);
    }

  // Create an ELF header.
  if (gelf_newehdr (elf, class) == 0)
    {
      printf ("cannot create ELF header: %s\n", elf_errmsg (-1));
      exit (1);
    }

  GElf_Ehdr ehdr_mem;
  GElf_Ehdr *ehdr = gelf_getehdr (elf, &ehdr_mem);
  if (ehdr == NULL)
    {
      printf ("cannot get ELF header: %s\n", elf_errmsg (-1));
      exit (1);
    }

  // Initialize header.
  ehdr->e_ident[EI_DATA] = class == ELFCLASS64 ? ELFDATA2LSB : ELFDATA2MSB;
  ehdr->e_ident[EI_OSABI] = ELFOSABI_GNU;
  ehdr->e_type = ET_NONE;
  ehdr->e_machine = EM_X86_64;
  ehdr->e_version = EV_CURRENT;

  if (gelf_update_ehdr (elf, ehdr) == 0)
    {
      printf ("cannot update ELF header: %s\n", elf_errmsg (-1));
      exit (1);
    }

  Elf_Scn *strtab = create_strtab (elf);
  add_data_section (elf, strtab, ".data1");
  add_data_section (elf, strtab, ".data2");
  add_data_section (elf, strtab, ".data3");
  add_data_section (elf, strtab, ".data4");

  // Write everything to disk.
  if (elf_update (elf, ELF_C_WRITE) < 0)
    {
      printf ("failure in elf_update(WRITE): %s\n", elf_errmsg (-1));
      exit (1);
    }

  if (elf_end (elf) != 0)
    {
      printf ("failure in elf_end: %s\n", elf_errmsg (-1));
      exit (1);
    }

  close (fd);

  /* Reread the ELF from disk now.  */
  printf ("Rereading %s\n", fname);
  fd = open (fname, O_RDWR, 0666);
  if (fd == -1)
    {
      printf ("cannot (re)open `%s': %s\n", fname, strerror (errno));
      exit (1);
    }

  elf = elf_begin (fd, use_mmap ? ELF_C_RDWR_MMAP : ELF_C_RDWR, NULL);
  if (elf == NULL)
    {
      printf ("cannot create ELF descriptor read-only: %s\n", elf_errmsg (-1));
      exit (1);
    }

  /* We are going to change some data (in-place), but want the layout
     to stay exactly the same. */
  elf_flagelf (elf, ELF_C_SET, ELF_F_LAYOUT);

  size_t shdrstrndx;
  if (elf_getshdrstrndx (elf, &shdrstrndx) != 0)
    {
      printf ("cannot get shdr str ndx\n");
      exit (1);
    }
  printf ("shdrstrndx: %zd\n", shdrstrndx);

  // Get third data section and change it.
  Elf_Scn *checkscn = NULL;
  Elf_Scn *scn = elf_nextscn (elf, NULL);
  while (scn != NULL)
    {
      GElf_Shdr shdr_mem;
      GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
      if (shdr == NULL)
	{
	  printf ("cannot get header for section: %s\n", elf_errmsg (-1));
	  exit (1);
	}
      const char *sname = elf_strptr (elf, shdrstrndx, shdr->sh_name);
      if (sname != NULL && strcmp (".data3", sname) == 0)
	checkscn = scn;

      // Get all data, but don't really use it
      // (this triggered the original bug).
      Elf_Data *data = elf_getdata (scn, NULL);
      if (data != NULL && data->d_buf != NULL && data->d_size == 0)
	{
	  printf ("Bad data...n");
	  exit (1);
	}
      scn = elf_nextscn (elf, scn);
    }

  if (checkscn == NULL)
    {
      printf ("ELF file doesn't have a .data3 section\n");
      exit (1);
    }

  Elf_Data *data = elf_getdata (checkscn, NULL);
  check_data (".data3", data, sec_data);
  memcpy (data->d_buf, new_data, 5);
  elf_flagdata (data, ELF_C_SET, ELF_F_DIRTY);

  // Write everything to disk.
  if (elf_update (elf, ELF_C_WRITE) < 0)
    {
      printf ("failure in elf_update(WRITE): %s\n", elf_errmsg (-1));
      exit (1);
    }

  if (elf_end (elf) != 0)
    {
      printf ("failure in elf_end: %s\n", elf_errmsg (-1));
      exit (1);
    }

  close (fd);

  // And read it in one last time.
  printf ("Rereading %s again\n", fname);
  fd = open (fname, O_RDONLY, 0666);
  if (fd == -1)
    {
      printf ("cannot open `%s' read-only: %s\n", fname, strerror (errno));
      exit (1);
    }

  elf = elf_begin (fd, use_mmap ? ELF_C_READ_MMAP : ELF_C_READ, NULL);
  if (elf == NULL)
    {
      printf ("cannot create ELF descriptor read-only: %s\n", elf_errmsg (-1));
      exit (1);
    }

  // Get all .data sections and check them.
  Elf_Scn *scn1 = NULL;
  Elf_Scn *scn2 = NULL;
  Elf_Scn *scn3 = NULL;
  Elf_Scn *scn4 = NULL;
  scn = elf_nextscn (elf, NULL);
  while (scn != NULL)
    {
      GElf_Shdr shdr_mem;
      GElf_Shdr *shdr = gelf_getshdr (scn, &shdr_mem);
      if (shdr == NULL)
	{
	  printf ("cannot get header for section: %s\n", elf_errmsg (-1));
	  exit (1);
	}
      const char *sname = elf_strptr (elf, shdrstrndx, shdr->sh_name);
      if (sname != NULL && strcmp (".data1", sname) == 0)
	scn1 = scn;
      else if (sname != NULL && strcmp (".data2", sname) == 0)
	scn2 = scn;
      else if (sname != NULL && strcmp (".data3", sname) == 0)
	scn3 = scn;
      else if (sname != NULL && strcmp (".data4", sname) == 0)
	scn4 = scn;
      scn = elf_nextscn (elf, scn);
    }

  if (scn1 == NULL)
    {
      printf ("ELF file doesn't have a .data1 section\n");
      exit (1);
    }
  data = elf_getdata (scn1, NULL);
  check_data (".data1", data, sec_data);

  if (scn2 == NULL)
    {
      printf ("ELF file doesn't have a .data2 section\n");
      exit (1);
    }
  data = elf_getdata (scn2, NULL);
  check_data (".data2", data, sec_data);

  if (scn3 == NULL)
    {
      printf ("ELF file doesn't have a .data3 section\n");
      exit (1);
    }
  data = elf_getdata (scn3, NULL);
  check_data (".data3", data, new_data);

  if (scn4 == NULL)
    {
      printf ("ELF file doesn't have a .data4 section\n");
      exit (1);
    }
  data = elf_getdata (scn4, NULL);
  check_data (".data4", data, sec_data);

  if (elf_end (elf) != 0)
    {
      printf ("failure in elf_end: %s\n", elf_errmsg (-1));
      exit (1);
    }

  close (fd);

  unlink (fname);
}

int
main (int argc __attribute__ ((unused)),
      char *argv[] __attribute__ ((unused)))
{
  elf_version (EV_CURRENT);

  elf_fill (0xA);

  check_elf ("fill.elf.32", ELFCLASS32, 0);
  check_elf ("fill.elf.32.mmap", ELFCLASS32, 1);
  check_elf ("fill.elf.64", ELFCLASS64, 0);
  check_elf ("fill.elf.64.mmap", ELFCLASS64, 1);

  return 0;
}