summaryrefslogtreecommitdiff
path: root/src/w_wad.c
diff options
context:
space:
mode:
authorSimon Howard2014-10-16 23:25:52 +0000
committerSimon Howard2014-10-16 23:25:52 +0000
commitd5b6bb70919f91f94b035b12ff706ef9ab08689c (patch)
treeff0e53a6bbcf6d83791507fc97e4a5083c0bf6b3 /src/w_wad.c
parentc7e82b3866134277e73f9a9d2b0f67da3fa403d0 (diff)
downloadchocolate-doom-d5b6bb70919f91f94b035b12ff706ef9ab08689c.tar.gz
chocolate-doom-d5b6bb70919f91f94b035b12ff706ef9ab08689c.tar.bz2
chocolate-doom-d5b6bb70919f91f94b035b12ff706ef9ab08689c.zip
Fix crash caused by adding a new WAD file.
This fixes #442, a crash caused by adding a new WAD file after a lump has been loaded (and cached) from a previous WAD. This manifested when playing using the Freedoom IWADs and also loading a PWAD at the same time. The Freedoom IWADs have DEHACKED lumps that are loaded from within the IWAD file. The ultimate cause (thanks to Fabian Greffrath for uncovering it) is that lumpinfo is realloc()ed after each new WAD load to store the lumpinfo_t structures from the new WAD. If a lump has been read and cached from a previous WAD file, it may end up having an invalid 'user' pointer that points to somewhere in the old lumpinfo[] array, not the new one. I think this bug was masked because realloc() will often not move data if the previous location can simply be extended. The bug was discovered when loading BTSX as a PWAD, probably because it's a large WAD that contains a lot of lumps, and forced a move during realloc.
Diffstat (limited to 'src/w_wad.c')
-rw-r--r--src/w_wad.c67
1 files changed, 52 insertions, 15 deletions
diff --git a/src/w_wad.c b/src/w_wad.c
index 1d8142c8..aa0646af 100644
--- a/src/w_wad.c
+++ b/src/w_wad.c
@@ -83,6 +83,46 @@ unsigned int W_LumpNameHash(const char *s)
return result;
}
+// Increase the size of the lumpinfo[] array to the specified size.
+static void ExtendLumpInfo(int newnumlumps)
+{
+ lumpinfo_t *newlumpinfo;
+ unsigned int i;
+
+ newlumpinfo = calloc(newnumlumps, sizeof(lumpinfo_t));
+
+ if (newlumpinfo == NULL)
+ {
+ I_Error ("Couldn't realloc lumpinfo");
+ }
+
+ // Copy over lumpinfo_t structures from the old array. If any of
+ // these lumps have been cached, we need to update the user
+ // pointers to the new location.
+ for (i = 0; i < numlumps && i < newnumlumps; ++i)
+ {
+ memcpy(&newlumpinfo[i], &lumpinfo[i], sizeof(lumpinfo_t));
+
+ if (newlumpinfo[i].cache != NULL)
+ {
+ Z_ChangeUser(newlumpinfo[i].cache, &newlumpinfo[i].cache);
+ }
+
+ // We shouldn't be generating a hash table until after all WADs have
+ // been loaded, but just in case...
+ if (lumpinfo[i].next != NULL)
+ {
+ int nextlumpnum = lumpinfo[i].next - lumpinfo;
+ newlumpinfo[i].next = &newlumpinfo[nextlumpnum];
+ }
+ }
+
+ // All done.
+ free(lumpinfo);
+ lumpinfo = newlumpinfo;
+ numlumps = newnumlumps;
+}
+
//
// LUMP BASED ROUTINES.
//
@@ -106,19 +146,20 @@ wad_file_t *W_AddFile (char *filename)
int startlump;
filelump_t *fileinfo;
filelump_t *filerover;
-
+ int newnumlumps;
+
// open the file and add to directory
wad_file = W_OpenFile(filename);
-
+
if (wad_file == NULL)
{
printf (" couldn't open %s\n", filename);
return NULL;
}
- startlump = numlumps;
-
+ newnumlumps = numlumps;
+
if (strcasecmp(filename+strlen(filename)-3 , "wad" ) )
{
// single lump file
@@ -136,7 +177,7 @@ wad_file_t *W_AddFile (char *filename)
// extension).
M_ExtractFileBase (filename, fileinfo->name);
- numlumps++;
+ newnumlumps++;
}
else
{
@@ -161,19 +202,15 @@ wad_file_t *W_AddFile (char *filename)
fileinfo = Z_Malloc(length, PU_STATIC, 0);
W_Read(wad_file, header.infotableofs, fileinfo, length);
- numlumps += header.numlumps;
+ newnumlumps += header.numlumps;
}
- // Fill in lumpinfo
- lumpinfo = realloc(lumpinfo, numlumps * sizeof(lumpinfo_t));
-
- if (lumpinfo == NULL)
- {
- I_Error ("Couldn't realloc lumpinfo");
- }
+ // Increase size of numlumps array to accomodate the new file.
+ startlump = numlumps;
+ ExtendLumpInfo(newnumlumps);
lump_p = &lumpinfo[startlump];
-
+
filerover = fileinfo;
for (i=startlump; i<numlumps; ++i)
@@ -187,7 +224,7 @@ wad_file_t *W_AddFile (char *filename)
++lump_p;
++filerover;
}
-
+
Z_Free(fileinfo);
if (lumphash != NULL)