/* Copyright 2017 - 2021 R. Thomas * Copyright 2017 - 2021 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_PE_LOAD_CONFIGURATION_V0_H_ #define LIEF_PE_LOAD_CONFIGURATION_V0_H_ #include #include "LIEF/visibility.h" #include "LIEF/PE/LoadConfigurations/LoadConfiguration.hpp" namespace LIEF { namespace PE { template struct load_configuration_v0; //! @brief LoadConfiguration enhanced with SEH class LIEF_API LoadConfigurationV0 : public LoadConfiguration { public: static constexpr WIN_VERSION VERSION = WIN_VERSION::WIN_SEH; LoadConfigurationV0(void); LoadConfigurationV0& operator=(const LoadConfigurationV0&); LoadConfigurationV0(const LoadConfigurationV0&); template LIEF_LOCAL LoadConfigurationV0(const load_configuration_v0* header); virtual WIN_VERSION version(void) const override; //! @brief The VA of the sorted table of RVAs of each valid, unique //! SE handler in the image. uint64_t se_handler_table(void) const; //! @brief The count of unique handlers in the table. uint64_t se_handler_count(void) const; void se_handler_table(uint64_t se_handler_table); void se_handler_count(uint64_t se_handler_count); virtual ~LoadConfigurationV0(void); virtual void accept(Visitor& visitor) const override; bool operator==(const LoadConfigurationV0& rhs) const; bool operator!=(const LoadConfigurationV0& rhs) const; virtual std::ostream& print(std::ostream& os) const override; protected: uint64_t se_handler_table_; uint64_t se_handler_count_; }; } } #endif