blob: a02c956daffcd8e151db149b45e464ef3ebda80a [file] [log] [blame]
Christopher Ferris7bd01782016-04-20 12:30:58 -07001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in
12 * the documentation and/or other materials provided with the
13 * distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
18 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
19 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
22 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
25 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 */
28
Elliott Hughescbc80ba2018-02-13 14:26:29 -080029#pragma once
Christopher Ferris7bd01782016-04-20 12:30:58 -070030
Christopher Ferris7bd01782016-04-20 12:30:58 -070031#include <pthread.h>
Christopher Ferris06993a62022-09-07 18:19:45 -070032#include <signal.h>
Christopher Ferris4da25032018-03-07 13:38:48 -080033#include <stdint.h>
Christopher Ferris7bd01782016-04-20 12:30:58 -070034#include <unistd.h>
35
36#include <atomic>
Christopher Ferris06993a62022-09-07 18:19:45 -070037#include <memory>
Christopher Ferris7bd01782016-04-20 12:30:58 -070038#include <mutex>
39#include <string>
Christopher Ferris06993a62022-09-07 18:19:45 -070040#include <vector>
Christopher Ferris7bd01782016-04-20 12:30:58 -070041
Josh Gao4956c372019-12-19 16:35:51 -080042#include <platform/bionic/macros.h>
Christopher Ferris7bd01782016-04-20 12:30:58 -070043
44class RecordEntry {
45 public:
46 RecordEntry();
47 virtual ~RecordEntry() = default;
48
Christopher Ferris06993a62022-09-07 18:19:45 -070049 virtual bool Write(int fd) const = 0;
Christopher Ferris7bd01782016-04-20 12:30:58 -070050
51 protected:
52 pid_t tid_;
53
54 private:
Elliott Hughes5e62b342018-10-25 11:00:00 -070055 BIONIC_DISALLOW_COPY_AND_ASSIGN(RecordEntry);
Christopher Ferris7bd01782016-04-20 12:30:58 -070056};
57
58class ThreadCompleteEntry : public RecordEntry {
59 public:
60 ThreadCompleteEntry() = default;
61 virtual ~ThreadCompleteEntry() = default;
62
Christopher Ferris06993a62022-09-07 18:19:45 -070063 bool Write(int fd) const override;
Christopher Ferris7bd01782016-04-20 12:30:58 -070064
65 private:
Elliott Hughes5e62b342018-10-25 11:00:00 -070066 BIONIC_DISALLOW_COPY_AND_ASSIGN(ThreadCompleteEntry);
Christopher Ferris7bd01782016-04-20 12:30:58 -070067};
68
69class AllocEntry : public RecordEntry {
70 public:
Chia-hung Duanf7e8b172022-11-01 21:37:56 +000071 explicit AllocEntry(void* pointer, uint64_t st, uint64_t et);
Christopher Ferris7bd01782016-04-20 12:30:58 -070072 virtual ~AllocEntry() = default;
73
74 protected:
75 void* pointer_;
76
Chia-hung Duanf7e8b172022-11-01 21:37:56 +000077 // The start/end time of this operation.
78 uint64_t start_ns_;
79 uint64_t end_ns_;
80
Christopher Ferris7bd01782016-04-20 12:30:58 -070081 private:
Elliott Hughes5e62b342018-10-25 11:00:00 -070082 BIONIC_DISALLOW_COPY_AND_ASSIGN(AllocEntry);
Christopher Ferris7bd01782016-04-20 12:30:58 -070083};
84
85class MallocEntry : public AllocEntry {
86 public:
Chia-hung Duanf7e8b172022-11-01 21:37:56 +000087 MallocEntry(void* pointer, size_t size, uint64_t st, uint64_t et);
Christopher Ferris7bd01782016-04-20 12:30:58 -070088 virtual ~MallocEntry() = default;
89
Christopher Ferris06993a62022-09-07 18:19:45 -070090 bool Write(int fd) const override;
Christopher Ferris7bd01782016-04-20 12:30:58 -070091
92 protected:
93 size_t size_;
94
95 private:
Elliott Hughes5e62b342018-10-25 11:00:00 -070096 BIONIC_DISALLOW_COPY_AND_ASSIGN(MallocEntry);
Christopher Ferris7bd01782016-04-20 12:30:58 -070097};
98
99class FreeEntry : public AllocEntry {
100 public:
Chia-hung Duanf7e8b172022-11-01 21:37:56 +0000101 explicit FreeEntry(void* pointer, uint64_t st, uint64_t et);
Christopher Ferris7bd01782016-04-20 12:30:58 -0700102 virtual ~FreeEntry() = default;
103
Christopher Ferris06993a62022-09-07 18:19:45 -0700104 bool Write(int fd) const override;
Christopher Ferris7bd01782016-04-20 12:30:58 -0700105
106 private:
Elliott Hughes5e62b342018-10-25 11:00:00 -0700107 BIONIC_DISALLOW_COPY_AND_ASSIGN(FreeEntry);
Christopher Ferris7bd01782016-04-20 12:30:58 -0700108};
109
110class CallocEntry : public MallocEntry {
111 public:
Greg Kaiser23352132023-01-09 17:53:07 +0000112 CallocEntry(void* pointer, size_t nmemb, size_t size, uint64_t st, uint64_t et);
Christopher Ferris7bd01782016-04-20 12:30:58 -0700113 virtual ~CallocEntry() = default;
114
Christopher Ferris06993a62022-09-07 18:19:45 -0700115 bool Write(int fd) const override;
Christopher Ferris7bd01782016-04-20 12:30:58 -0700116
117 protected:
118 size_t nmemb_;
119
120 private:
Elliott Hughes5e62b342018-10-25 11:00:00 -0700121 BIONIC_DISALLOW_COPY_AND_ASSIGN(CallocEntry);
Christopher Ferris7bd01782016-04-20 12:30:58 -0700122};
123
124class ReallocEntry : public MallocEntry {
125 public:
Chia-hung Duanf7e8b172022-11-01 21:37:56 +0000126 ReallocEntry(void* pointer, size_t size, void* old_pointer, uint64_t st, uint64_t et);
Christopher Ferris7bd01782016-04-20 12:30:58 -0700127 virtual ~ReallocEntry() = default;
128
Christopher Ferris06993a62022-09-07 18:19:45 -0700129 bool Write(int fd) const override;
Christopher Ferris7bd01782016-04-20 12:30:58 -0700130
131 protected:
132 void* old_pointer_;
133
134 private:
Elliott Hughes5e62b342018-10-25 11:00:00 -0700135 BIONIC_DISALLOW_COPY_AND_ASSIGN(ReallocEntry);
Christopher Ferris7bd01782016-04-20 12:30:58 -0700136};
137
Christopher Ferriscae21a92018-02-05 18:14:55 -0800138// aligned_alloc, posix_memalign, memalign, pvalloc, valloc all recorded with this class.
Christopher Ferris7bd01782016-04-20 12:30:58 -0700139class MemalignEntry : public MallocEntry {
140 public:
Chia-hung Duanf7e8b172022-11-01 21:37:56 +0000141 MemalignEntry(void* pointer, size_t size, size_t alignment, uint64_t st, uint64_t et);
Christopher Ferris7bd01782016-04-20 12:30:58 -0700142 virtual ~MemalignEntry() = default;
143
Christopher Ferris06993a62022-09-07 18:19:45 -0700144 bool Write(int fd) const override;
Christopher Ferris7bd01782016-04-20 12:30:58 -0700145
146 protected:
147 size_t alignment_;
148
149 private:
Elliott Hughes5e62b342018-10-25 11:00:00 -0700150 BIONIC_DISALLOW_COPY_AND_ASSIGN(MemalignEntry);
Christopher Ferris7bd01782016-04-20 12:30:58 -0700151};
152
Christopher Ferris2b2b25b2017-04-05 19:13:03 -0700153class Config;
Christopher Ferris7bd01782016-04-20 12:30:58 -0700154
155class RecordData {
156 public:
157 RecordData();
158 virtual ~RecordData();
159
160 bool Initialize(const Config& config);
161
162 void AddEntry(const RecordEntry* entry);
163 void AddEntryOnly(const RecordEntry* entry);
164
Christopher Ferris7bd01782016-04-20 12:30:58 -0700165 pthread_key_t key() { return key_; }
166
167 private:
Christopher Ferris06993a62022-09-07 18:19:45 -0700168 static void WriteData(int, siginfo_t*, void*);
169 static RecordData* record_obj_;
Christopher Ferris7bd01782016-04-20 12:30:58 -0700170
Christopher Ferris06993a62022-09-07 18:19:45 -0700171 void WriteEntries();
172
173 std::mutex entries_lock_;
Christopher Ferris7bd01782016-04-20 12:30:58 -0700174 pthread_key_t key_;
Christopher Ferris06993a62022-09-07 18:19:45 -0700175 std::vector<std::unique_ptr<const RecordEntry>> entries_;
176 size_t cur_index_;
Christopher Ferris7bd01782016-04-20 12:30:58 -0700177 std::string dump_file_;
178
Elliott Hughes5e62b342018-10-25 11:00:00 -0700179 BIONIC_DISALLOW_COPY_AND_ASSIGN(RecordData);
Christopher Ferris7bd01782016-04-20 12:30:58 -0700180};