summaryrefslogtreecommitdiff
path: root/src/libelfu/modelops/check.c
blob: 5234befa1c9fa0d9a22e9c1d6cc5aa430409d9c3 (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
#include <assert.h>
#include <stdlib.h>
#include <sys/types.h>
#include <libelfu/libelfu.h>


int elfu_mCheck(ElfuElf *me)
{
  size_t numSecs;
  ElfuScn **sortedSecs;
  size_t i;

  sortedSecs = elfu_mScnSortedByOffset(me, &numSecs);
  if (!sortedSecs) {
    return -1;
  }


  /* Check for overlapping sections */
  for (i = 0; i < numSecs - 1; i++) {
    if (sortedSecs[i]->shdr.sh_offset + SCNFILESIZE(&sortedSecs[i]->shdr)
        > sortedSecs[i+1]->shdr.sh_offset) {
      ELFU_WARN("elfu_check: Found overlapping sections: %s and %s.\n",
                elfu_mScnName(me, sortedSecs[i]),
                elfu_mScnName(me, sortedSecs[i+1]));
    }
  }


  /* Check for sections overlapping with EHDR */
  for (i = 0; i < numSecs; i++) {
    if (sortedSecs[i]->shdr.sh_offset < me->ehdr.e_ehsize) {
      ELFU_WARN("elfu_check: Found section overlapping with EHDR: %s.\n",
                elfu_mScnName(me, sortedSecs[i]));
    }
  }


  /* Check for sections overlapping with PHDRs */
  for (i = 0; i < numSecs; i++) {
    if (OVERLAPPING(sortedSecs[i]->shdr.sh_offset,
                    SCNFILESIZE(&sortedSecs[i]->shdr),
                    me->ehdr.e_phoff,
                    me->ehdr.e_phentsize * me->ehdr.e_phnum)) {
      ELFU_WARN("elfu_check: Found section overlapping with PHDRs: %s.\n",
                elfu_mScnName(me, sortedSecs[i]));
    }
  }


  free(sortedSecs);

  return 0;
}