| Christopher Ferris | 7bd0178 | 2016-04-20 12:30:58 -0700 | [diff] [blame] | 1 | /* | 
 | 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 Hughes | cbc80ba | 2018-02-13 14:26:29 -0800 | [diff] [blame] | 29 | #pragma once | 
| Christopher Ferris | 7bd0178 | 2016-04-20 12:30:58 -0700 | [diff] [blame] | 30 |  | 
| Christopher Ferris | 7bd0178 | 2016-04-20 12:30:58 -0700 | [diff] [blame] | 31 | #include <pthread.h> | 
| Christopher Ferris | 06993a6 | 2022-09-07 18:19:45 -0700 | [diff] [blame] | 32 | #include <signal.h> | 
| Christopher Ferris | 4da2503 | 2018-03-07 13:38:48 -0800 | [diff] [blame] | 33 | #include <stdint.h> | 
| Christopher Ferris | 7bd0178 | 2016-04-20 12:30:58 -0700 | [diff] [blame] | 34 | #include <unistd.h> | 
 | 35 |  | 
 | 36 | #include <atomic> | 
| Christopher Ferris | 06993a6 | 2022-09-07 18:19:45 -0700 | [diff] [blame] | 37 | #include <memory> | 
| Christopher Ferris | 7bd0178 | 2016-04-20 12:30:58 -0700 | [diff] [blame] | 38 | #include <mutex> | 
 | 39 | #include <string> | 
| Christopher Ferris | 06993a6 | 2022-09-07 18:19:45 -0700 | [diff] [blame] | 40 | #include <vector> | 
| Christopher Ferris | 7bd0178 | 2016-04-20 12:30:58 -0700 | [diff] [blame] | 41 |  | 
| Josh Gao | 4956c37 | 2019-12-19 16:35:51 -0800 | [diff] [blame] | 42 | #include <platform/bionic/macros.h> | 
| Christopher Ferris | 7bd0178 | 2016-04-20 12:30:58 -0700 | [diff] [blame] | 43 |  | 
 | 44 | class RecordEntry { | 
 | 45 |  public: | 
 | 46 |   RecordEntry(); | 
 | 47 |   virtual ~RecordEntry() = default; | 
 | 48 |  | 
| Christopher Ferris | 06993a6 | 2022-09-07 18:19:45 -0700 | [diff] [blame] | 49 |   virtual bool Write(int fd) const = 0; | 
| Christopher Ferris | 7bd0178 | 2016-04-20 12:30:58 -0700 | [diff] [blame] | 50 |  | 
 | 51 |  protected: | 
 | 52 |   pid_t tid_; | 
 | 53 |  | 
 | 54 |  private: | 
| Elliott Hughes | 5e62b34 | 2018-10-25 11:00:00 -0700 | [diff] [blame] | 55 |   BIONIC_DISALLOW_COPY_AND_ASSIGN(RecordEntry); | 
| Christopher Ferris | 7bd0178 | 2016-04-20 12:30:58 -0700 | [diff] [blame] | 56 | }; | 
 | 57 |  | 
 | 58 | class ThreadCompleteEntry : public RecordEntry { | 
 | 59 |  public: | 
 | 60 |   ThreadCompleteEntry() = default; | 
 | 61 |   virtual ~ThreadCompleteEntry() = default; | 
 | 62 |  | 
| Christopher Ferris | 06993a6 | 2022-09-07 18:19:45 -0700 | [diff] [blame] | 63 |   bool Write(int fd) const override; | 
| Christopher Ferris | 7bd0178 | 2016-04-20 12:30:58 -0700 | [diff] [blame] | 64 |  | 
 | 65 |  private: | 
| Elliott Hughes | 5e62b34 | 2018-10-25 11:00:00 -0700 | [diff] [blame] | 66 |   BIONIC_DISALLOW_COPY_AND_ASSIGN(ThreadCompleteEntry); | 
| Christopher Ferris | 7bd0178 | 2016-04-20 12:30:58 -0700 | [diff] [blame] | 67 | }; | 
 | 68 |  | 
 | 69 | class AllocEntry : public RecordEntry { | 
 | 70 |  public: | 
| Elliott Hughes | 5cec377 | 2018-01-19 15:45:23 -0800 | [diff] [blame] | 71 |   explicit AllocEntry(void* pointer); | 
| Christopher Ferris | 7bd0178 | 2016-04-20 12:30:58 -0700 | [diff] [blame] | 72 |   virtual ~AllocEntry() = default; | 
 | 73 |  | 
 | 74 |  protected: | 
 | 75 |   void* pointer_; | 
 | 76 |  | 
 | 77 |  private: | 
| Elliott Hughes | 5e62b34 | 2018-10-25 11:00:00 -0700 | [diff] [blame] | 78 |   BIONIC_DISALLOW_COPY_AND_ASSIGN(AllocEntry); | 
| Christopher Ferris | 7bd0178 | 2016-04-20 12:30:58 -0700 | [diff] [blame] | 79 | }; | 
 | 80 |  | 
 | 81 | class MallocEntry : public AllocEntry { | 
 | 82 |  public: | 
 | 83 |   MallocEntry(void* pointer, size_t size); | 
 | 84 |   virtual ~MallocEntry() = default; | 
 | 85 |  | 
| Christopher Ferris | 06993a6 | 2022-09-07 18:19:45 -0700 | [diff] [blame] | 86 |   bool Write(int fd) const override; | 
| Christopher Ferris | 7bd0178 | 2016-04-20 12:30:58 -0700 | [diff] [blame] | 87 |  | 
 | 88 |  protected: | 
 | 89 |   size_t size_; | 
 | 90 |  | 
 | 91 |  private: | 
| Elliott Hughes | 5e62b34 | 2018-10-25 11:00:00 -0700 | [diff] [blame] | 92 |   BIONIC_DISALLOW_COPY_AND_ASSIGN(MallocEntry); | 
| Christopher Ferris | 7bd0178 | 2016-04-20 12:30:58 -0700 | [diff] [blame] | 93 | }; | 
 | 94 |  | 
 | 95 | class FreeEntry : public AllocEntry { | 
 | 96 |  public: | 
| Elliott Hughes | 5cec377 | 2018-01-19 15:45:23 -0800 | [diff] [blame] | 97 |   explicit FreeEntry(void* pointer); | 
| Christopher Ferris | 7bd0178 | 2016-04-20 12:30:58 -0700 | [diff] [blame] | 98 |   virtual ~FreeEntry() = default; | 
 | 99 |  | 
| Christopher Ferris | 06993a6 | 2022-09-07 18:19:45 -0700 | [diff] [blame] | 100 |   bool Write(int fd) const override; | 
| Christopher Ferris | 7bd0178 | 2016-04-20 12:30:58 -0700 | [diff] [blame] | 101 |  | 
 | 102 |  private: | 
| Elliott Hughes | 5e62b34 | 2018-10-25 11:00:00 -0700 | [diff] [blame] | 103 |   BIONIC_DISALLOW_COPY_AND_ASSIGN(FreeEntry); | 
| Christopher Ferris | 7bd0178 | 2016-04-20 12:30:58 -0700 | [diff] [blame] | 104 | }; | 
 | 105 |  | 
 | 106 | class CallocEntry : public MallocEntry { | 
 | 107 |  public: | 
 | 108 |   CallocEntry(void* pointer, size_t size, size_t nmemb); | 
 | 109 |   virtual ~CallocEntry() = default; | 
 | 110 |  | 
| Christopher Ferris | 06993a6 | 2022-09-07 18:19:45 -0700 | [diff] [blame] | 111 |   bool Write(int fd) const override; | 
| Christopher Ferris | 7bd0178 | 2016-04-20 12:30:58 -0700 | [diff] [blame] | 112 |  | 
 | 113 |  protected: | 
 | 114 |   size_t nmemb_; | 
 | 115 |  | 
 | 116 |  private: | 
| Elliott Hughes | 5e62b34 | 2018-10-25 11:00:00 -0700 | [diff] [blame] | 117 |   BIONIC_DISALLOW_COPY_AND_ASSIGN(CallocEntry); | 
| Christopher Ferris | 7bd0178 | 2016-04-20 12:30:58 -0700 | [diff] [blame] | 118 | }; | 
 | 119 |  | 
 | 120 | class ReallocEntry : public MallocEntry { | 
 | 121 |  public: | 
 | 122 |   ReallocEntry(void* pointer, size_t size, void* old_pointer); | 
 | 123 |   virtual ~ReallocEntry() = default; | 
 | 124 |  | 
| Christopher Ferris | 06993a6 | 2022-09-07 18:19:45 -0700 | [diff] [blame] | 125 |   bool Write(int fd) const override; | 
| Christopher Ferris | 7bd0178 | 2016-04-20 12:30:58 -0700 | [diff] [blame] | 126 |  | 
 | 127 |  protected: | 
 | 128 |   void* old_pointer_; | 
 | 129 |  | 
 | 130 |  private: | 
| Elliott Hughes | 5e62b34 | 2018-10-25 11:00:00 -0700 | [diff] [blame] | 131 |   BIONIC_DISALLOW_COPY_AND_ASSIGN(ReallocEntry); | 
| Christopher Ferris | 7bd0178 | 2016-04-20 12:30:58 -0700 | [diff] [blame] | 132 | }; | 
 | 133 |  | 
| Christopher Ferris | cae21a9 | 2018-02-05 18:14:55 -0800 | [diff] [blame] | 134 | // aligned_alloc, posix_memalign, memalign, pvalloc, valloc all recorded with this class. | 
| Christopher Ferris | 7bd0178 | 2016-04-20 12:30:58 -0700 | [diff] [blame] | 135 | class MemalignEntry : public MallocEntry { | 
 | 136 |  public: | 
 | 137 |   MemalignEntry(void* pointer, size_t size, size_t alignment); | 
 | 138 |   virtual ~MemalignEntry() = default; | 
 | 139 |  | 
| Christopher Ferris | 06993a6 | 2022-09-07 18:19:45 -0700 | [diff] [blame] | 140 |   bool Write(int fd) const override; | 
| Christopher Ferris | 7bd0178 | 2016-04-20 12:30:58 -0700 | [diff] [blame] | 141 |  | 
 | 142 |  protected: | 
 | 143 |   size_t alignment_; | 
 | 144 |  | 
 | 145 |  private: | 
| Elliott Hughes | 5e62b34 | 2018-10-25 11:00:00 -0700 | [diff] [blame] | 146 |   BIONIC_DISALLOW_COPY_AND_ASSIGN(MemalignEntry); | 
| Christopher Ferris | 7bd0178 | 2016-04-20 12:30:58 -0700 | [diff] [blame] | 147 | }; | 
 | 148 |  | 
| Christopher Ferris | 2b2b25b | 2017-04-05 19:13:03 -0700 | [diff] [blame] | 149 | class Config; | 
| Christopher Ferris | 7bd0178 | 2016-04-20 12:30:58 -0700 | [diff] [blame] | 150 |  | 
 | 151 | class 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 Ferris | 7bd0178 | 2016-04-20 12:30:58 -0700 | [diff] [blame] | 161 |   pthread_key_t key() { return key_; } | 
 | 162 |  | 
 | 163 |  private: | 
| Christopher Ferris | 06993a6 | 2022-09-07 18:19:45 -0700 | [diff] [blame] | 164 |   static void WriteData(int, siginfo_t*, void*); | 
 | 165 |   static RecordData* record_obj_; | 
| Christopher Ferris | 7bd0178 | 2016-04-20 12:30:58 -0700 | [diff] [blame] | 166 |  | 
| Christopher Ferris | 06993a6 | 2022-09-07 18:19:45 -0700 | [diff] [blame] | 167 |   void WriteEntries(); | 
 | 168 |  | 
 | 169 |   std::mutex entries_lock_; | 
| Christopher Ferris | 7bd0178 | 2016-04-20 12:30:58 -0700 | [diff] [blame] | 170 |   pthread_key_t key_; | 
| Christopher Ferris | 06993a6 | 2022-09-07 18:19:45 -0700 | [diff] [blame] | 171 |   std::vector<std::unique_ptr<const RecordEntry>> entries_; | 
 | 172 |   size_t cur_index_; | 
| Christopher Ferris | 7bd0178 | 2016-04-20 12:30:58 -0700 | [diff] [blame] | 173 |   std::string dump_file_; | 
 | 174 |  | 
| Elliott Hughes | 5e62b34 | 2018-10-25 11:00:00 -0700 | [diff] [blame] | 175 |   BIONIC_DISALLOW_COPY_AND_ASSIGN(RecordData); | 
| Christopher Ferris | 7bd0178 | 2016-04-20 12:30:58 -0700 | [diff] [blame] | 176 | }; |