# Node ID a27f78c13415653e12a800fb75f7c78b30297500 # Parent c0ea80fed78fef29ad2829b9d93e7bd568c46665 diff --git a/src/base/loader/object_file.cc b/src/base/loader/object_file.cc --- a/src/base/loader/object_file.cc +++ b/src/base/loader/object_file.cc @@ -33,6 +33,7 @@ #include #include #include +#include #include #include @@ -101,6 +102,57 @@ } } +static bool +hasGzipMagic(int fd) +{ + uint8_t buf[2] = {0}; + size_t sz = pread(fd, buf, 2, 0); + panic_if(sz != 2, "Couldn't read magic bytes from object file"); + return ((buf[0] == 0x1f) && (buf[1] == 0x8b)); +} + +static int +doGzipLoad(int fd) +{ + const size_t blk_sz = 4096; + + gzFile fdz = gzdopen(fd, "rb"); + if (!fdz) { + return -1; + } + + char tmpnam[] = "/tmp/gem5-gz-obj-XXXXXX"; + fd = mkstemp(tmpnam); // repurposing fd variable for output + if (fd < 0) { + gzclose(fdz); + return fd; + } + + if (unlink(tmpnam) != 0) + warn("couldn't remove temporary file %s\n", tmpnam); + + auto buf = new uint8_t[blk_sz]; + size_t len = 0; // total length of uncompressed data + int r; // size of (r)emaining uncopied data in (buf)fer + while ((r = gzread(fdz, buf, blk_sz)) > 0) { + len += r; + auto p = buf; // pointer into buffer + while (r > 0) { + auto sz = write(fd, p, r); + assert(sz <= r); + r -= sz; + p += sz; + } + } + delete[] buf; + gzclose(fdz); // also closes underlying fd 'fd' + if (r < 0) { // error + close(fd); + return -1; + } + assert(r == 0); // finished successfully + return fd; // return fd to decompressed temporary file for mmap()'ing +} ObjectFile * createObjectFile(const string &fname, bool raw) @@ -111,15 +163,26 @@ return NULL; } + size_t len = 0; + + // decompress GZ files + if (hasGzipMagic(fd)) { + fd = doGzipLoad(fd); + if (fd < 0) { + return NULL; + } + } + // find the length of the file by seeking to the end off_t off = lseek(fd, 0, SEEK_END); - fatal_if(off < 0, "Failed to determine size of object file %s\n", fname); - size_t len = static_cast(off); + fatal_if(off < 0, + "Failed to determine size of object file %s\n", fname); + len = static_cast(off); // mmap the whole shebang - uint8_t *fileData = - (uint8_t *)mmap(NULL, len, PROT_READ, MAP_SHARED, fd, 0); + auto fileData = (uint8_t *)mmap(NULL, len, PROT_READ, MAP_SHARED, fd, 0); close(fd); + if (fileData == MAP_FAILED) { return NULL; }