From b70b3ff9b1679bb1e0a215b7acd9b6d55497a46b Mon Sep 17 00:00:00 2001 From: norly Date: Thu, 20 Jun 2013 01:56:24 +0100 Subject: Separate library code, build .a/.so --- src/modelops/check.c | 54 ---------------------------------------------------- 1 file changed, 54 deletions(-) delete mode 100644 src/modelops/check.c (limited to 'src/modelops/check.c') diff --git a/src/modelops/check.c b/src/modelops/check.c deleted file mode 100644 index 5234bef..0000000 --- a/src/modelops/check.c +++ /dev/null @@ -1,54 +0,0 @@ -#include -#include -#include -#include - - -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; -} -- cgit v1.2.3