gem5  [DEVELOP-FOR-23.0]
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
image_file_data.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2002-2004 The Regents of The University of Michigan
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are
7  * met: redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer;
9  * redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution;
12  * neither the name of the copyright holders nor the names of its
13  * contributors may be used to endorse or promote products derived from
14  * this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28 
30 
31 #include <fcntl.h>
32 #include <sys/mman.h>
33 #include <sys/types.h>
34 #include <unistd.h>
35 #include <zlib.h>
36 
37 #include <cstdio>
38 #include <vector>
39 
40 #include "base/logging.hh"
41 
42 namespace gem5
43 {
44 
45 namespace loader
46 {
47 
48 static bool
50 {
51  uint8_t buf[2] = {0};
52  size_t sz = pread(fd, buf, 2, 0);
53  panic_if(sz != 2, "Couldn't read magic bytes from object file");
54  return ((buf[0] == 0x1f) && (buf[1] == 0x8b));
55 }
56 
57 static int
59 {
60  const size_t blk_sz = 4096;
61 
62  gzFile fdz = gzdopen(fd, "rb");
63  if (!fdz) {
64  return -1;
65  }
66 
67  size_t tmp_len = strlen(P_tmpdir);
68  char *tmpnam = (char*) malloc(tmp_len + 20);
69  strcpy(tmpnam, P_tmpdir);
70  strcpy(tmpnam+tmp_len, "/gem5-gz-obj-XXXXXX"); // 19 chars
71  fd = mkstemp(tmpnam); // repurposing fd variable for output
72  if (fd < 0) {
73  free(tmpnam);
74  gzclose(fdz);
75  return fd;
76  }
77 
78  if (unlink(tmpnam) != 0)
79  warn("couldn't remove temporary file %s\n", tmpnam);
80 
81  free(tmpnam);
82 
83  auto buf = new uint8_t[blk_sz];
84  int r; // size of (r)emaining uncopied data in (buf)fer
85  while ((r = gzread(fdz, buf, blk_sz)) > 0) {
86  auto p = buf; // pointer into buffer
87  while (r > 0) {
88  auto sz = write(fd, p, r);
89  assert(sz <= r);
90  r -= sz;
91  p += sz;
92  }
93  }
94  delete[] buf;
95  gzclose(fdz);
96  if (r < 0) { // error
97  close(fd);
98  return -1;
99  }
100  assert(r == 0); // finished successfully
101  return fd; // return fd to decompressed temporary file for mmap()'ing
102 }
103 
104 ImageFileData::ImageFileData(const std::string &fname)
105 {
106  _filename = fname;
107 
108  // Open the file.
109  int fd = open(fname.c_str(), O_RDONLY);
110  fatal_if(fd < 0, "Failed to open file %s.\n"
111  "This error typically occurs when the file path specified is "
112  "incorrect.\n", fname);
113 
114  // Decompress GZ files.
115  if (hasGzipMagic(fd)) {
116  fd = doGzipLoad(fd);
117  panic_if(fd < 0, "Failed to unzip file %s.\n", fname);
118  }
119 
120  // Find the length of the file by seeking to the end.
121  off_t off = lseek(fd, 0, SEEK_END);
122  fatal_if(off < 0, "Failed to determine size of file %s.\n", fname);
123  _len = static_cast<size_t>(off);
124 
125  // Mmap the whole shebang.
126  _data = (uint8_t *)mmap(NULL, _len, PROT_READ, MAP_SHARED, fd, 0);
127  close(fd);
128 
129  panic_if(_data == MAP_FAILED, "Failed to mmap file %s.\n", fname);
130 }
131 
133 {
134  munmap((void *)_data, _len);
135 }
136 
137 } // namespace loader
138 } // namespace gem5
warn
#define warn(...)
Definition: logging.hh:256
gem5::loader::ImageFileData::_data
uint8_t * _data
Definition: image_file_data.hh:48
gem5::loader::ImageFileData::_filename
std::string _filename
Definition: image_file_data.hh:47
gem5::ArmISA::fd
Bitfield< 14, 12 > fd
Definition: types.hh:150
gem5::loader::doGzipLoad
static int doGzipLoad(int fd)
Definition: image_file_data.cc:58
gem5::VegaISA::r
Bitfield< 5 > r
Definition: pagetable.hh:60
gem5::loader::hasGzipMagic
static bool hasGzipMagic(int fd)
Definition: image_file_data.cc:49
image_file_data.hh
gem5::VegaISA::p
Bitfield< 54 > p
Definition: pagetable.hh:70
panic_if
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Definition: logging.hh:214
gem5::loader::ImageFileData::_len
size_t _len
Definition: image_file_data.hh:49
gem5::loader::ImageFileData::~ImageFileData
virtual ~ImageFileData()
Definition: image_file_data.cc:132
logging.hh
fatal_if
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
Definition: logging.hh:236
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: gpu_translation_state.hh:37
gem5::loader::ImageFileData::ImageFileData
ImageFileData(const std::string &f_name)
Definition: image_file_data.cc:104

Generated on Sun Jul 30 2023 01:56:51 for gem5 by doxygen 1.8.17