aboutsummaryrefslogtreecommitdiff
path: root/libsframe
diff options
context:
space:
mode:
Diffstat (limited to 'libsframe')
-rw-r--r--libsframe/sframe.c22
1 files changed, 13 insertions, 9 deletions
diff --git a/libsframe/sframe.c b/libsframe/sframe.c
index 4aada1a..d206780 100644
--- a/libsframe/sframe.c
+++ b/libsframe/sframe.c
@@ -401,7 +401,10 @@ flip_sframe (char *frame_buf, size_t buf_size, uint32_t to_foreign)
unsigned int fre_type = 0;
uint32_t fre_offset = 0;
size_t esz = 0;
+ size_t hdrsz = 0;
int err = 0;
+ /* For error checking. */
+ size_t bytes_flipped = 0;
/* Header must be in host endianness at this time. */
ihp = (sframe_header *)frame_buf;
@@ -411,14 +414,18 @@ flip_sframe (char *frame_buf, size_t buf_size, uint32_t to_foreign)
/* The contents of the SFrame header are safe to read. Get the number of
FDEs and the first FDE in the buffer. */
+ hdrsz = sframe_get_hdr_size (ihp);
num_fdes = ihp->sfh_num_fdes;
- fdes = frame_buf + sframe_get_hdr_size (ihp) + ihp->sfh_fdeoff;
+ fdes = frame_buf + hdrsz + ihp->sfh_fdeoff;
fdep = (sframe_func_desc_entry *)fdes;
j = 0;
prev_frep_index = 0;
for (i = 0; i < num_fdes; fdep++, i++)
{
+ if ((char*)fdep >= (frame_buf + buf_size))
+ goto bad;
+
if (to_foreign)
{
num_fres = fdep->sfde_func_num_fres;
@@ -427,6 +434,7 @@ flip_sframe (char *frame_buf, size_t buf_size, uint32_t to_foreign)
}
flip_fde (fdep);
+ bytes_flipped += sizeof (sframe_func_desc_entry);
if (!to_foreign)
{
@@ -441,20 +449,16 @@ flip_sframe (char *frame_buf, size_t buf_size, uint32_t to_foreign)
{
if (flip_fre (fp, fre_type, &esz))
goto bad;
+ bytes_flipped += esz;
- if (esz == 0)
+ if (esz == 0 || esz > buf_size)
goto bad;
fp += esz;
}
prev_frep_index = j;
}
- /* All FREs must have been endian flipped by now. */
- if (j != ihp->sfh_num_fres)
- goto bad;
- /* Contents, if any, must have been processed by now.
- Recall that .sframe section with just a SFrame header may be generated by
- GAS if no SFrame FDEs were found for the input file. */
- if (ihp->sfh_num_fres && ((frame_buf + buf_size) != (void*)fp))
+ /* All FDEs and FREs must have been endian flipped by now. */
+ if ((j != ihp->sfh_num_fres) || (bytes_flipped != (buf_size - hdrsz)))
goto bad;
/* Success. */