blob: 9dbe9ac906f938901735d43fc8468e2615c57ae6 [file] [log] [blame]
Yabin Cui8f622512015-05-05 19:58:07 -07001/*
2 * Copyright (C) 2015 The Android Open Source Project
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
17#ifndef SIMPLE_PERF_READ_ELF_H_
18#define SIMPLE_PERF_READ_ELF_H_
19
Yabin Cuiec12ed92015-06-08 10:38:10 -070020#include <functional>
Yabin Cuidec43c12016-07-29 16:40:40 -070021#include <ostream>
Yabin Cui8f622512015-05-05 19:58:07 -070022#include <string>
23#include "build_id.h"
24
Yabin Cuidec43c12016-07-29 16:40:40 -070025// Read ELF functions are called in different situations, so it is hard to
26// decide whether to report error or not. So read ELF functions don't report
27// error when something wrong happens, instead they return ElfStatus, which
28// identifies different errors met while reading elf file.
29enum ElfStatus {
30 NO_ERROR,
31 FILE_NOT_FOUND,
32 READ_FAILED,
33 FILE_MALFORMED,
34 NO_SYMBOL_TABLE,
35 NO_BUILD_ID,
36 BUILD_ID_MISMATCH,
37 SECTION_NOT_FOUND,
38};
39
40std::ostream& operator<<(std::ostream& os, const ElfStatus& status);
41
42ElfStatus GetBuildIdFromNoteFile(const std::string& filename, BuildId* build_id);
43ElfStatus GetBuildIdFromElfFile(const std::string& filename, BuildId* build_id);
44ElfStatus GetBuildIdFromEmbeddedElfFile(const std::string& filename, uint64_t file_offset,
45 uint32_t file_size, BuildId* build_id);
Yabin Cui8f622512015-05-05 19:58:07 -070046
Yabin Cui2c17e0d2015-06-11 14:57:21 -070047// The symbol prefix used to indicate that the symbol belongs to android linker.
48static const std::string linker_prefix = "__dl_";
49
Yabin Cuiec12ed92015-06-08 10:38:10 -070050struct ElfFileSymbol {
Yabin Cui39d3cae2015-07-13 16:23:13 -070051 uint64_t vaddr;
Yabin Cuiec12ed92015-06-08 10:38:10 -070052 uint64_t len;
53 bool is_func;
Yabin Cuib3783552015-06-11 11:15:42 -070054 bool is_label;
Yabin Cuiec12ed92015-06-08 10:38:10 -070055 bool is_in_text_section;
56 std::string name;
Yabin Cuiffaa9122016-01-15 15:25:48 -080057
58 ElfFileSymbol() : vaddr(0), len(0), is_func(false), is_label(false), is_in_text_section(false) {
59 }
Yabin Cuiec12ed92015-06-08 10:38:10 -070060};
61
Yabin Cuidec43c12016-07-29 16:40:40 -070062ElfStatus ParseSymbolsFromElfFile(const std::string& filename,
63 const BuildId& expected_build_id,
64 const std::function<void(const ElfFileSymbol&)>& callback);
65ElfStatus ParseSymbolsFromEmbeddedElfFile(const std::string& filename, uint64_t file_offset,
66 uint32_t file_size, const BuildId& expected_build_id,
67 const std::function<void(const ElfFileSymbol&)>& callback);
Yabin Cui9e43e9f2018-03-09 15:57:13 -080068ElfStatus ParseSymbolsFromElfFileInMemory(const char* data, size_t size,
69 const std::function<void(const ElfFileSymbol&)>& callback);
70ElfStatus ParseDynamicSymbolsFromElfFile(const std::string& filename,
71 const std::function<void(const ElfFileSymbol&)>& callback);
Yabin Cuiec12ed92015-06-08 10:38:10 -070072
Yabin Cuidec43c12016-07-29 16:40:40 -070073ElfStatus ReadMinExecutableVirtualAddressFromElfFile(const std::string& filename,
74 const BuildId& expected_build_id,
75 uint64_t* min_addr);
Yabin Cui8422f342018-05-09 17:27:27 -070076ElfStatus ReadMinExecutableVirtualAddressFromEmbeddedElfFile(const std::string& filename,
77 uint64_t file_offset,
78 uint32_t file_size,
79 const BuildId& expected_build_id,
80 uint64_t* min_vaddr);
Yabin Cui547c60e2015-10-12 16:56:05 -070081
Yabin Cuidec43c12016-07-29 16:40:40 -070082ElfStatus ReadSectionFromElfFile(const std::string& filename, const std::string& section_name,
83 std::string* content);
Yabin Cuibe7ec662016-03-02 13:56:28 -080084
Yabin Cuia5bdf0a2015-06-22 19:41:39 -070085// Expose the following functions for unit tests.
86bool IsArmMappingSymbol(const char* name);
Yabin Cuidec43c12016-07-29 16:40:40 -070087ElfStatus IsValidElfFile(int fd);
Yabin Cui9e43e9f2018-03-09 15:57:13 -080088bool IsValidElfFileMagic(const char* buf, size_t buf_size);
Yabin Cuidec43c12016-07-29 16:40:40 -070089ElfStatus IsValidElfPath(const std::string& filename);
Yabin Cuif79a0082016-11-14 11:23:14 -080090bool GetBuildIdFromNoteSection(const char* section, size_t section_size, BuildId* build_id);
Yabin Cuia5bdf0a2015-06-22 19:41:39 -070091
Yabin Cui8f622512015-05-05 19:58:07 -070092#endif // SIMPLE_PERF_READ_ELF_H_