blob: 04801f810be37bee2dfb55e0bb36acfd8a1ef68f [file] [log] [blame]
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01001//===- llvm/BinaryFormat/Magic.h - File magic identification ----*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef LLVM_BINARYFORMAT_MAGIC_H
11#define LLVM_BINARYFORMAT_MAGIC_H
12
13#include "llvm/ADT/StringRef.h"
14#include "llvm/ADT/Twine.h"
15
16#include <system_error>
17
18namespace llvm {
19/// file_magic - An "enum class" enumeration of file types based on magic (the
20/// first N bytes of the file).
21struct file_magic {
22 enum Impl {
23 unknown = 0, ///< Unrecognized file
24 bitcode, ///< Bitcode file
25 archive, ///< ar style archive file
26 elf, ///< ELF Unknown type
27 elf_relocatable, ///< ELF Relocatable object file
28 elf_executable, ///< ELF Executable image
29 elf_shared_object, ///< ELF dynamically linked shared lib
30 elf_core, ///< ELF core image
31 macho_object, ///< Mach-O Object file
32 macho_executable, ///< Mach-O Executable
33 macho_fixed_virtual_memory_shared_lib, ///< Mach-O Shared Lib, FVM
34 macho_core, ///< Mach-O Core File
35 macho_preload_executable, ///< Mach-O Preloaded Executable
36 macho_dynamically_linked_shared_lib, ///< Mach-O dynlinked shared lib
37 macho_dynamic_linker, ///< The Mach-O dynamic linker
38 macho_bundle, ///< Mach-O Bundle file
39 macho_dynamically_linked_shared_lib_stub, ///< Mach-O Shared lib stub
40 macho_dsym_companion, ///< Mach-O dSYM companion file
41 macho_kext_bundle, ///< Mach-O kext bundle file
42 macho_universal_binary, ///< Mach-O universal binary
43 coff_cl_gl_object, ///< Microsoft cl.exe's intermediate code file
44 coff_object, ///< COFF object file
45 coff_import_library, ///< COFF import library
46 pecoff_executable, ///< PECOFF executable file
47 windows_resource, ///< Windows compiled resource file (.res)
48 wasm_object, ///< WebAssembly Object file
49 pdb, ///< Windows PDB debug info file
50 };
51
52 bool is_object() const { return V != unknown; }
53
54 file_magic() = default;
55 file_magic(Impl V) : V(V) {}
56 operator Impl() const { return V; }
57
58private:
59 Impl V = unknown;
60};
61
Andrew Scullcdfcccc2018-10-05 20:58:37 +010062/// Identify the type of a binary file based on how magical it is.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010063file_magic identify_magic(StringRef magic);
64
Andrew Scullcdfcccc2018-10-05 20:58:37 +010065/// Get and identify \a path's type based on its content.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010066///
67/// @param path Input path.
68/// @param result Set to the type of file, or file_magic::unknown.
69/// @returns errc::success if result has been successfully set, otherwise a
70/// platform-specific error_code.
71std::error_code identify_magic(const Twine &path, file_magic &result);
72} // namespace llvm
73
74#endif