LIEF: Library to Instrument Executable Formats Version 0.17.0
Loading...
Searching...
No Matches
COFF/utils.hpp
Go to the documentation of this file.
1/* Copyright 2017 - 2025 R. Thomas
2 * Copyright 2017 - 2025 Quarkslab
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16#ifndef LIEF_COFF_UTILS_H
17#define LIEF_COFF_UTILS_H
18#include "LIEF/visibility.h"
19#include "LIEF/COFF/Header.hpp"
22#include <string>
23
24namespace LIEF {
25namespace COFF {
26LIEF_API Header::KIND get_kind(BinaryStream& stream);
30LIEF_API inline bool is_coff(BinaryStream& stream) {
33 return get_kind(stream) != Header::KIND::UNKNOWN;
34}
35LIEF_API inline bool is_coff(const std::string& file) {
38 auto fs = LIEF::FileStream::from_file(file);
39 return fs ? is_coff(*fs) : false;
40}
41LIEF_API inline bool is_coff(const uint8_t* buffer, size_t size) {
44 LIEF::SpanStream strm(buffer, size);
45 return is_coff(strm);
46}
47LIEF_API inline bool is_coff(const std::vector<uint8_t>& buffer) {
50 return is_coff(buffer.data(), buffer.size());
51}
52LIEF_API inline bool is_bigobj(BinaryStream& stream) {
55 return get_kind(stream) == Header::KIND::BIGOBJ;
56}
57LIEF_API inline bool is_regular(BinaryStream& stream) {
61 return get_kind(stream) == Header::KIND::REGULAR;
62}
63
64}
65}
66#endif
Header.hpp
FileStream.hpp
SpanStream.hpp
LIEF::COFF::Header::KIND
KIND
Definition COFF/Header.hpp:36
LIEF::COFF::Header::KIND::UNKNOWN
@ UNKNOWN
Definition COFF/Header.hpp:37
LIEF::COFF::Header::KIND::REGULAR
@ REGULAR
Definition COFF/Header.hpp:38
LIEF::COFF::Header::KIND::BIGOBJ
@ BIGOBJ
Definition COFF/Header.hpp:39
LIEF::FileStream::from_file
static result< FileStream > from_file(const std::string &file)
LIEF::COFF
Definition AuxiliarySymbol.hpp:29
LIEF::COFF::get_kind
Header::KIND get_kind(BinaryStream &stream)
This function determines if the given stream wraps a COFF binary and if so, whether it's a regular or...
LIEF::COFF::is_coff
bool is_coff(BinaryStream &stream)
Check if the given stream wraps a COFF file.
Definition COFF/utils.hpp:32
LIEF::COFF::is_bigobj
bool is_bigobj(BinaryStream &stream)
Check if the COFF file wrapped by the given stream is a bigobj
Definition COFF/utils.hpp:54
LIEF::COFF::is_regular
bool is_regular(BinaryStream &stream)
Check if the COFF file wrapped by the given stream is regular (i.e. not a bigobj)
Definition COFF/utils.hpp:60
LIEF
LIEF namespace.
Definition Abstract/Binary.hpp:39
visibility.h
LIEF_API
#define LIEF_API
Definition visibility.h:41