Go to the documentation of this file.
35 #include <sys/types.h>
47 #include "debug/DiskImageRead.hh"
48 #include "debug/DiskImageWrite.hh"
63 open(
p.image_file,
p.read_only);
75 panic(
"Attempting to fork system with read-write raw disk image.");
79 open(
p.image_file,
p.read_only);
85 if (!filename.empty()) {
90 std::ios::openmode
mode = std::ios::in | std::ios::binary;
92 mode |= std::ios::out;
95 panic(
"Error opening %s", filename);
110 panic(
"file not open!\n");
111 stream.seekg(0, std::ios::end);
122 panic(
"RawDiskImage not initialized");
125 panic(
"file not open!\n");
129 panic(
"Could not seek to location in file");
131 std::streampos pos =
stream.tellg();
134 DPRINTF(DiskImageRead,
"read: offset=%d\n", (uint64_t)
offset);
137 return stream.tellg() - pos;
144 panic(
"RawDiskImage not initialized");
147 panic(
"Cannot write to a read only disk image");
150 panic(
"file not open!\n");
154 panic(
"Could not seek to location in file");
156 DPRINTF(DiskImageWrite,
"write: offset=%d\n", (uint64_t)
offset);
159 std::streampos pos =
stream.tellp();
161 return stream.tellp() - pos;
179 fatal(
"could not open read-only file");
190 SectorTable::iterator
i =
table->begin();
191 SectorTable::iterator end =
table->end();
202 if (!
dynamic_cast<const Params &
>(
params()).read_only &&
204 inform(
"Disabling saving of COW image in forked child process.\n");
213 if (!stream.is_open())
214 panic(
"file not open");
217 panic(
"premature end-of-file");
219 if (stream.bad() || stream.fail())
220 panic(
"error reading cowdisk image");
241 std::ifstream stream(file.c_str());
242 if (!stream.is_open())
245 if (stream.fail() || stream.bad())
246 panic(
"Error opening %s", file);
251 if (memcmp(&magic,
"COWDISK!",
sizeof(magic)) != 0)
252 panic(
"Could not open %s: Invalid magic", file);
254 uint32_t major_version, minor_version;
259 panic(
"Could not open %s: invalid version %d.%d != %d.%d",
262 uint64_t sector_count;
267 for (uint64_t
i = 0;
i < sector_count;
i++) {
275 (*table)[
offset] = sector;
296 if (!stream.is_open())
297 panic(
"file not open");
300 panic(
"premature end-of-file");
302 if (stream.bad() || stream.fail())
303 panic(
"error reading cowdisk image");
334 panic(
"RawDiskImage not initialized");
336 std::ofstream stream(file.c_str());
337 if (!stream.is_open() || stream.fail() || stream.bad())
338 panic(
"Error opening %s", file);
341 memcpy(&magic,
"COWDISK!",
sizeof(magic));
349 SectorTable::iterator iter =
table->begin();
350 SectorTable::iterator end =
table->end();
352 for (uint64_t
i = 0;
i <
size;
i++) {
354 panic(
"Incorrect Table Size during save of COW disk image");
367 SectorTable::iterator
i =
table->begin();
368 SectorTable::iterator end =
table->end();
384 panic(
"CowDiskImage not initialized");
387 panic(
"access out of bounds");
394 DPRINTF(DiskImageRead,
"read: offset=%d\n", (uint64_t)
offset);
404 panic(
"RawDiskImage not initialized");
407 panic(
"access out of bounds");
418 DPRINTF(DiskImageWrite,
"write: offset=%d\n", (uint64_t)
offset);
427 std::string cowFilename =
name() +
".cow";
435 std::string cowFilename;
437 cowFilename = cp.
getCptDir() +
"/" + cowFilename;
#define fatal(...)
This implements a cprintf based fatal() function.
std::streampos write(const uint8_t *data, std::streampos offset) override
std::streampos size() const override
CowDiskImage(const Params &p)
void serialize(CheckpointOut &cp) const override
Serialize an object.
static std::string dir()
Get the current checkout directory name.
#define UNSERIALIZE_SCALAR(scalar)
RawDiskImage(const Params &p)
std::unordered_map< uint64_t, Sector * > SectorTable
virtual std::streampos write(const uint8_t *data, std::streampos offset)=0
void notifyFork() override
Notify a child process of a fork.
void notifyFork() override
Notify a child process of a fork.
std::streampos read(uint8_t *data, std::streampos offset) const override
Basic interface for accessing a disk image.
void SafeWrite(std::ofstream &stream, const void *data, int count)
void SafeWriteSwap(std::ofstream &stream, const T &data)
virtual std::string name() const
const Params & params() const
void SafeRead(std::ifstream &stream, void *data, int count)
#define SERIALIZE_SCALAR(scalar)
#define DDUMP(x, data, count)
DPRINTF is a debugging trace facility that allows one to selectively enable tracing statements.
static const uint32_t VersionMajor
void initSectorTable(int hash_size)
const std::string getCptDir()
const uint8_t image_file[]
This image file contains the text "This is a test image.\n" 31 times.
std::streampos read(uint8_t *data, std::streampos offset) const override
void open(const std::string &filename, bool rd_only=false)
virtual std::streampos size() const =0
std::streampos size() const override
virtual std::streampos read(uint8_t *data, std::streampos offset) const =0
std::ostream CheckpointOut
void SafeReadSwap(std::ifstream &stream, T &data)
void registerExitCallback(const std::function< void()> &callback)
Register an exit callback.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
static const uint32_t VersionMinor
bool open(const std::string &file)
void unserialize(CheckpointIn &cp) override
Unserialize an object.
#define panic(...)
This implements a cprintf based panic() function.
std::streampos write(const uint8_t *data, std::streampos offset) override
Generated on Wed Jul 28 2021 12:10:26 for gem5 by doxygen 1.8.17