/* Copyright 2017 - 2022 R. Thomas * Copyright 2017 - 2022 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. */ #ifndef LIEF_MACHO_CODE_SIGNATURE_DIR_COMMAND_H #define LIEF_MACHO_CODE_SIGNATURE_DIR_COMMAND_H #include #include #include "LIEF/visibility.h" #include "LIEF/types.hpp" #include "LIEF/span.hpp" #include "LIEF/MachO/LoadCommand.hpp" namespace LIEF { namespace MachO { class BinaryParser; class Builder; class LinkEdit; namespace details { struct linkedit_data_command; } class LIEF_API CodeSignatureDir : public LoadCommand { friend class BinaryParser; friend class Builder; friend class LinkEdit; public: CodeSignatureDir(); CodeSignatureDir(const details::linkedit_data_command& cmd); CodeSignatureDir& operator=(const CodeSignatureDir& copy); CodeSignatureDir(const CodeSignatureDir& copy); CodeSignatureDir* clone() const override; //! Offset in the binary where the signature starts inline uint32_t data_offset() const { return data_offset_; } //! Size of the raw signature inline uint32_t data_size() const { return data_size_; } inline void data_offset(uint32_t offset) { data_offset_ = offset; } inline void data_size(uint32_t size) { data_size_ = size; } inline span content() const { return content_; } inline span content() { return content_; } ~CodeSignatureDir() override; bool operator==(const CodeSignatureDir& rhs) const; bool operator!=(const CodeSignatureDir& rhs) const; void accept(Visitor& visitor) const override; std::ostream& print(std::ostream& os) const override; static bool classof(const LoadCommand* cmd); private: uint32_t data_offset_ = 0; uint32_t data_size_ = 0; span content_; }; } } #endif