blob: 43dba6af8649399e934c4de2de48260883eb0fd3 [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:
Elliott Hughes5cec3772018-01-19 15:45:23 -080071 explicit AllocEntry(void* pointer);
Christopher Ferris7bd01782016-04-20 12:30:58 -070072 virtual ~AllocEntry() = default;
73
74 protected:
75 void* pointer_;
76
77 private:
Elliott Hughes5e62b342018-10-25 11:00:00 -070078 BIONIC_DISALLOW_COPY_AND_ASSIGN(AllocEntry);
Christopher Ferris7bd01782016-04-20 12:30:58 -070079};
80
81class MallocEntry : public AllocEntry {
82 public:
83 MallocEntry(void* pointer, size_t size);
84 virtual ~MallocEntry() = default;
85
Christopher Ferris06993a62022-09-07 18:19:45 -070086 bool Write(int fd) const override;
Christopher Ferris7bd01782016-04-20 12:30:58 -070087
88 protected:
89 size_t size_;
90
91 private:
Elliott Hughes5e62b342018-10-25 11:00:00 -070092 BIONIC_DISALLOW_COPY_AND_ASSIGN(MallocEntry);
Christopher Ferris7bd01782016-04-20 12:30:58 -070093};
94
95class FreeEntry : public AllocEntry {
96 public:
Elliott Hughes5cec3772018-01-19 15:45:23 -080097 explicit FreeEntry(void* pointer);
Christopher Ferris7bd01782016-04-20 12:30:58 -070098 virtual ~FreeEntry() = default;
99
Christopher Ferris06993a62022-09-07 18:19:45 -0700100 bool Write(int fd) const override;
Christopher Ferris7bd01782016-04-20 12:30:58 -0700101
102 private:
Elliott Hughes5e62b342018-10-25 11:00:00 -0700103 BIONIC_DISALLOW_COPY_AND_ASSIGN(FreeEntry);
Christopher Ferris7bd01782016-04-20 12:30:58 -0700104};
105
106class CallocEntry : public MallocEntry {
107 public:
108 CallocEntry(void* pointer, size_t size, size_t nmemb);
109 virtual ~CallocEntry() = default;
110
Christopher Ferris06993a62022-09-07 18:19:45 -0700111 bool Write(int fd) const override;
Christopher Ferris7bd01782016-04-20 12:30:58 -0700112
113 protected:
114 size_t nmemb_;
115
116 private:
Elliott Hughes5e62b342018-10-25 11:00:00 -0700117 BIONIC_DISALLOW_COPY_AND_ASSIGN(CallocEntry);
Christopher Ferris7bd01782016-04-20 12:30:58 -0700118};
119
120class ReallocEntry : public MallocEntry {
121 public:
122 ReallocEntry(void* pointer, size_t size, void* old_pointer);
123 virtual ~ReallocEntry() = default;
124
Christopher Ferris06993a62022-09-07 18:19:45 -0700125 bool Write(int fd) const override;
Christopher Ferris7bd01782016-04-20 12:30:58 -0700126
127 protected:
128 void* old_pointer_;
129
130 private:
Elliott Hughes5e62b342018-10-25 11:00:00 -0700131 BIONIC_DISALLOW_COPY_AND_ASSIGN(ReallocEntry);
Christopher Ferris7bd01782016-04-20 12:30:58 -0700132};
133
Christopher Ferriscae21a92018-02-05 18:14:55 -0800134// aligned_alloc, posix_memalign, memalign, pvalloc, valloc all recorded with this class.
Christopher Ferris7bd01782016-04-20 12:30:58 -0700135class MemalignEntry : public MallocEntry {
136 public:
137 MemalignEntry(void* pointer, size_t size, size_t alignment);
138 virtual ~MemalignEntry() = default;
139
Christopher Ferris06993a62022-09-07 18:19:45 -0700140 bool Write(int fd) const override;
Christopher Ferris7bd01782016-04-20 12:30:58 -0700141
142 protected:
143 size_t alignment_;
144
145 private:
Elliott Hughes5e62b342018-10-25 11:00:00 -0700146 BIONIC_DISALLOW_COPY_AND_ASSIGN(MemalignEntry);
Christopher Ferris7bd01782016-04-20 12:30:58 -0700147};
148
Christopher Ferris2b2b25b2017-04-05 19:13:03 -0700149class Config;
Christopher Ferris7bd01782016-04-20 12:30:58 -0700150
151class RecordData {
152 public:
153 RecordData();
154 virtual ~RecordData();
155
156 bool Initialize(const Config& config);
157
158 void AddEntry(const RecordEntry* entry);
159 void AddEntryOnly(const RecordEntry* entry);
160
Christopher Ferris7bd01782016-04-20 12:30:58 -0700161 pthread_key_t key() { return key_; }
162
163 private:
Christopher Ferris06993a62022-09-07 18:19:45 -0700164 static void WriteData(int, siginfo_t*, void*);
165 static RecordData* record_obj_;
Christopher Ferris7bd01782016-04-20 12:30:58 -0700166
Christopher Ferris06993a62022-09-07 18:19:45 -0700167 void WriteEntries();
168
169 std::mutex entries_lock_;
Christopher Ferris7bd01782016-04-20 12:30:58 -0700170 pthread_key_t key_;
Christopher Ferris06993a62022-09-07 18:19:45 -0700171 std::vector<std::unique_ptr<const RecordEntry>> entries_;
172 size_t cur_index_;
Christopher Ferris7bd01782016-04-20 12:30:58 -0700173 std::string dump_file_;
174
Elliott Hughes5e62b342018-10-25 11:00:00 -0700175 BIONIC_DISALLOW_COPY_AND_ASSIGN(RecordData);
Christopher Ferris7bd01782016-04-20 12:30:58 -0700176};