Codemod: use #include angle brackets in folly and thrift
[folly.git] / folly / experimental / symbolizer / Elf.cpp
index f28ed07b016d8cafb0fa9287f3cf077190571f68..6f525f3fd40780a5ea5439ca65a31b0bdb64bd0a 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2013 Facebook, Inc.
+ * Copyright 2014 Facebook, Inc.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  */
 
 
-#include "folly/experimental/symbolizer/Elf.h"
+#include <folly/experimental/symbolizer/Elf.h>
 
 #include <sys/mman.h>
 #include <sys/types.h>
 #include <sys/stat.h>
-#include <endian.h>
 #include <fcntl.h>
 
 #include <string>
 
 #include <glog/logging.h>
 
-#include "folly/Conv.h"
-#include "folly/Exception.h"
+#include <folly/Conv.h>
+#include <folly/Exception.h>
 
 namespace folly {
 namespace symbolizer {
 
-ElfFile::ElfFile()
+ElfFile::ElfFile() noexcept
   : fd_(-1),
     file_(static_cast<char*>(MAP_FAILED)),
     length_(0),
@@ -41,18 +40,33 @@ ElfFile::ElfFile()
 }
 
 ElfFile::ElfFile(const char* name, bool readOnly)
-  : fd_(open(name, (readOnly) ? O_RDONLY : O_RDWR)),
+  : fd_(-1),
     file_(static_cast<char*>(MAP_FAILED)),
     length_(0),
     baseAddress_(0) {
+  open(name, readOnly);
+}
+
+void ElfFile::open(const char* name, bool readOnly) {
+  const char* msg = "";
+  int r = openNoThrow(name, readOnly, &msg);
+  folly::checkUnixError(r, msg);
+}
+
+int ElfFile::openNoThrow(const char* name, bool readOnly, const char** msg)
+  noexcept {
+  FOLLY_SAFE_CHECK(fd_ == -1, "File already open");
+  fd_ = ::open(name, readOnly ? O_RDONLY : O_RDWR);
   if (fd_ == -1) {
-    folly::throwSystemError("open ", name);
+    if (msg) *msg = "open";
+    return -1;
   }
 
   struct stat st;
   int r = fstat(fd_, &st);
   if (r == -1) {
-    folly::throwSystemError("fstat");
+    if (msg) *msg = "fstat";
+    return -1;
   }
 
   length_ = st.st_size;
@@ -62,9 +76,11 @@ ElfFile::ElfFile(const char* name, bool readOnly)
   }
   file_ = static_cast<char*>(mmap(nullptr, length_, prot, MAP_SHARED, fd_, 0));
   if (file_ == MAP_FAILED) {
-    folly::throwSystemError("mmap");
+    if (msg) *msg = "mmap";
+    return -1;
   }
   init();
+  return 0;
 }
 
 ElfFile::~ElfFile() {
@@ -113,48 +129,48 @@ void ElfFile::init() {
   auto& elfHeader = this->elfHeader();
 
   // Validate ELF magic numbers
-  enforce(elfHeader.e_ident[EI_MAG0] == ELFMAG0 &&
-          elfHeader.e_ident[EI_MAG1] == ELFMAG1 &&
-          elfHeader.e_ident[EI_MAG2] == ELFMAG2 &&
-          elfHeader.e_ident[EI_MAG3] == ELFMAG3,
-          "invalid ELF magic");
+  FOLLY_SAFE_CHECK(elfHeader.e_ident[EI_MAG0] == ELFMAG0 &&
+                   elfHeader.e_ident[EI_MAG1] == ELFMAG1 &&
+                   elfHeader.e_ident[EI_MAG2] == ELFMAG2 &&
+                   elfHeader.e_ident[EI_MAG3] == ELFMAG3,
+                   "invalid ELF magic");
 
   // Validate ELF class (32/64 bits)
 #define EXPECTED_CLASS P1(ELFCLASS, __ELF_NATIVE_CLASS)
 #define P1(a, b) P2(a, b)
 #define P2(a, b) a ## b
-  enforce(elfHeader.e_ident[EI_CLASS] == EXPECTED_CLASS,
-          "invalid ELF class");
+  FOLLY_SAFE_CHECK(elfHeader.e_ident[EI_CLASS] == EXPECTED_CLASS,
+                   "invalid ELF class");
 #undef P1
 #undef P2
 #undef EXPECTED_CLASS
 
   // Validate ELF data encoding (LSB/MSB)
-#if __BYTE_ORDER == __LITTLE_ENDIAN
+#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
 # define EXPECTED_ENCODING ELFDATA2LSB
-#elif __BYTE_ORDER == __BIG_ENDIAN
+#elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
 # define EXPECTED_ENCODING ELFDATA2MSB
 #else
 # error Unsupported byte order
 #endif
-  enforce(elfHeader.e_ident[EI_DATA] == EXPECTED_ENCODING,
-          "invalid ELF encoding");
+  FOLLY_SAFE_CHECK(elfHeader.e_ident[EI_DATA] == EXPECTED_ENCODING,
+                   "invalid ELF encoding");
 #undef EXPECTED_ENCODING
 
   // Validate ELF version (1)
-  enforce(elfHeader.e_ident[EI_VERSION] == EV_CURRENT &&
-          elfHeader.e_version == EV_CURRENT,
-          "invalid ELF version");
+  FOLLY_SAFE_CHECK(elfHeader.e_ident[EI_VERSION] == EV_CURRENT &&
+                   elfHeader.e_version == EV_CURRENT,
+                   "invalid ELF version");
 
   // We only support executable and shared object files
-  enforce(elfHeader.e_type == ET_EXEC || elfHeader.e_type == ET_DYN,
-          "invalid ELF file type");
+  FOLLY_SAFE_CHECK(elfHeader.e_type == ET_EXEC || elfHeader.e_type == ET_DYN,
+                   "invalid ELF file type");
 
-  enforce(elfHeader.e_phnum != 0, "no program header!");
-  enforce(elfHeader.e_phentsize == sizeof(ElfW(Phdr)),
-          "invalid program header entry size");
-  enforce(elfHeader.e_shentsize == sizeof(ElfW(Shdr)),
-          "invalid section header entry size");
+  FOLLY_SAFE_CHECK(elfHeader.e_phnum != 0, "no program header!");
+  FOLLY_SAFE_CHECK(elfHeader.e_phentsize == sizeof(ElfW(Phdr)),
+                   "invalid program header entry size");
+  FOLLY_SAFE_CHECK(elfHeader.e_shentsize == sizeof(ElfW(Shdr)),
+                   "invalid section header entry size");
 
   const ElfW(Phdr)* programHeader = &at<ElfW(Phdr)>(elfHeader.e_phoff);
   bool foundBase = false;
@@ -168,11 +184,11 @@ void ElfFile::init() {
     }
   }
 
-  enforce(foundBase, "could not find base address");
+  FOLLY_SAFE_CHECK(foundBase, "could not find base address");
 }
 
 const ElfW(Shdr)* ElfFile::getSectionByIndex(size_t idx) const {
-  enforce(idx < elfHeader().e_shnum, "invalid section index");
+  FOLLY_SAFE_CHECK(idx < elfHeader().e_shnum, "invalid section index");
   return &at<ElfW(Shdr)>(elfHeader().e_shoff + idx * sizeof(ElfW(Shdr)));
 }
 
@@ -181,19 +197,21 @@ folly::StringPiece ElfFile::getSectionBody(const ElfW(Shdr)& section) const {
 }
 
 void ElfFile::validateStringTable(const ElfW(Shdr)& stringTable) const {
-  enforce(stringTable.sh_type == SHT_STRTAB, "invalid type for string table");
+  FOLLY_SAFE_CHECK(stringTable.sh_type == SHT_STRTAB,
+                   "invalid type for string table");
 
   const char* start = file_ + stringTable.sh_offset;
   // First and last bytes must be 0
-  enforce(stringTable.sh_size == 0 ||
-          (start[0] == '\0' && start[stringTable.sh_size - 1] == '\0'),
-          "invalid string table");
+  FOLLY_SAFE_CHECK(stringTable.sh_size == 0 ||
+                   (start[0] == '\0' && start[stringTable.sh_size - 1] == '\0'),
+                   "invalid string table");
 }
 
 const char* ElfFile::getString(const ElfW(Shdr)& stringTable, size_t offset)
   const {
   validateStringTable(stringTable);
-  enforce(offset < stringTable.sh_size, "invalid offset in string table");
+  FOLLY_SAFE_CHECK(offset < stringTable.sh_size,
+                   "invalid offset in string table");
 
   return file_ + stringTable.sh_offset + offset;
 }