mirror of
https://github.com/QuasarApp/LIEF.git
synced 2025-04-28 13:24:32 +00:00
98 lines
2.4 KiB
C++
98 lines
2.4 KiB
C++
/* Copyright 2017 R. Thomas
|
|
* Copyright 2017 Quarkslab
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
#include <numeric>
|
|
#include <iomanip>
|
|
|
|
#include "LIEF/MachO/hash.hpp"
|
|
|
|
#include "LIEF/MachO/DataInCode.hpp"
|
|
|
|
namespace LIEF {
|
|
namespace MachO {
|
|
|
|
DataInCode::DataInCode(void) = default;
|
|
DataInCode& DataInCode::operator=(const DataInCode&) = default;
|
|
DataInCode::DataInCode(const DataInCode&) = default;
|
|
DataInCode::~DataInCode(void) = default;
|
|
|
|
DataInCode::DataInCode(const linkedit_data_command *cmd) :
|
|
LoadCommand::LoadCommand{static_cast<LOAD_COMMAND_TYPES>(cmd->cmd), cmd->cmdsize},
|
|
data_offset_{cmd->dataoff},
|
|
data_size_{cmd->datasize}
|
|
{}
|
|
|
|
uint32_t DataInCode::data_offset(void) const {
|
|
return this->data_offset_;
|
|
}
|
|
|
|
uint32_t DataInCode::data_size(void) const {
|
|
return this->data_size_;
|
|
}
|
|
|
|
void DataInCode::data_offset(uint32_t offset) {
|
|
this->data_offset_ = offset;
|
|
}
|
|
|
|
void DataInCode::data_size(uint32_t size) {
|
|
this->data_size_ = size;
|
|
}
|
|
|
|
|
|
DataInCode& DataInCode::add(const DataCodeEntry& entry) {
|
|
this->entries_.push_back(entry);
|
|
return *this;
|
|
}
|
|
|
|
|
|
DataInCode::it_const_entries DataInCode::entries(void) const {
|
|
return this->entries_;
|
|
}
|
|
|
|
DataInCode::it_entries DataInCode::entries(void) {
|
|
return this->entries_;
|
|
}
|
|
|
|
|
|
void DataInCode::accept(Visitor& visitor) const {
|
|
visitor.visit(*this);
|
|
}
|
|
|
|
|
|
bool DataInCode::operator==(const DataInCode& rhs) const {
|
|
size_t hash_lhs = Hash::hash(*this);
|
|
size_t hash_rhs = Hash::hash(rhs);
|
|
return hash_lhs == hash_rhs;
|
|
}
|
|
|
|
bool DataInCode::operator!=(const DataInCode& rhs) const {
|
|
return not (*this == rhs);
|
|
}
|
|
|
|
|
|
std::ostream& DataInCode::print(std::ostream& os) const {
|
|
LoadCommand::print(os);
|
|
os << std::left;
|
|
os << std::endl;
|
|
os << "Data location:" << std::endl;
|
|
os << std::setw(8) << "Offset" << ": 0x" << this->data_offset() << std::endl;
|
|
os << std::setw(8) << "Size" << ": 0x" << this->data_size() << std::endl;
|
|
return os;
|
|
}
|
|
|
|
|
|
}
|
|
}
|