1 /*
2 * Copyright (C) 2012 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 _LIBS_CUTILS_TRACE_H
18 #define _LIBS_CUTILS_TRACE_H
19
20 #include <inttypes.h>
21 #include <stdatomic.h>
22 #include <stdbool.h>
23 #include <stdint.h>
24 #include <stdio.h>
25 #include <sys/cdefs.h>
26 #include <sys/types.h>
27 #include <unistd.h>
28
29 #include <cutils/compiler.h>
30
31 __BEGIN_DECLS
32
33 /**
34 * The ATRACE_TAG macro can be defined before including this header to trace
35 * using one of the tags defined below. It must be defined to one of the
36 * following ATRACE_TAG_* macros. The trace tag is used to filter tracing in
37 * userland to avoid some of the runtime cost of tracing when it is not desired.
38 *
39 * Defining ATRACE_TAG to be ATRACE_TAG_ALWAYS will result in the tracing always
40 * being enabled - this should ONLY be done for debug code, as userland tracing
41 * has a performance cost even when the trace is not being recorded. Defining
42 * ATRACE_TAG to be ATRACE_TAG_NEVER or leaving ATRACE_TAG undefined will result
43 * in the tracing always being disabled.
44 *
45 * ATRACE_TAG_HAL should be bitwise ORed with the relevant tags for tracing
46 * within a hardware module. For example a camera hardware module would set:
47 * #define ATRACE_TAG (ATRACE_TAG_CAMERA | ATRACE_TAG_HAL)
48 *
49 * Keep these in sync with frameworks/base/core/java/android/os/Trace.java.
50 */
51 #define ATRACE_TAG_NEVER 0 // This tag is never enabled.
52 #define ATRACE_TAG_ALWAYS (1<<0) // This tag is always enabled.
53 #define ATRACE_TAG_GRAPHICS (1<<1)
54 #define ATRACE_TAG_INPUT (1<<2)
55 #define ATRACE_TAG_VIEW (1<<3)
56 #define ATRACE_TAG_WEBVIEW (1<<4)
57 #define ATRACE_TAG_WINDOW_MANAGER (1<<5)
58 #define ATRACE_TAG_ACTIVITY_MANAGER (1<<6)
59 #define ATRACE_TAG_SYNC_MANAGER (1<<7)
60 #define ATRACE_TAG_AUDIO (1<<8)
61 #define ATRACE_TAG_VIDEO (1<<9)
62 #define ATRACE_TAG_CAMERA (1<<10)
63 #define ATRACE_TAG_HAL (1<<11)
64 #define ATRACE_TAG_APP (1<<12)
65 #define ATRACE_TAG_RESOURCES (1<<13)
66 #define ATRACE_TAG_DALVIK (1<<14)
67 #define ATRACE_TAG_RS (1<<15)
68 #define ATRACE_TAG_BIONIC (1<<16)
69 #define ATRACE_TAG_POWER (1<<17)
70 #define ATRACE_TAG_PACKAGE_MANAGER (1<<18)
71 #define ATRACE_TAG_SYSTEM_SERVER (1<<19)
72 #define ATRACE_TAG_DATABASE (1<<20)
73 #define ATRACE_TAG_NETWORK (1<<21)
74 #define ATRACE_TAG_ADB (1<<22)
75 #define ATRACE_TAG_VIBRATOR (1<<23)
76 #define ATRACE_TAG_AIDL (1<<24)
77 #define ATRACE_TAG_LAST ATRACE_TAG_AIDL
78
79 // Reserved for initialization.
80 #define ATRACE_TAG_NOT_READY (1ULL<<63)
81
82 #define ATRACE_TAG_VALID_MASK ((ATRACE_TAG_LAST - 1) | ATRACE_TAG_LAST)
83
84 #ifndef ATRACE_TAG
85 #define ATRACE_TAG ATRACE_TAG_NEVER
86 #elif ATRACE_TAG > ATRACE_TAG_VALID_MASK
87 #error ATRACE_TAG must be defined to be one of the tags defined in cutils/trace.h
88 #endif
89
90 /**
91 * Opens the trace file for writing and reads the property for initial tags.
92 * The atrace.tags.enableflags property sets the tags to trace.
93 * This function should not be explicitly called, the first call to any normal
94 * trace function will cause it to be run safely.
95 */
96 void atrace_setup();
97
98 /**
99 * If tracing is ready, set atrace_enabled_tags to the system property
100 * debug.atrace.tags.enableflags. Can be used as a sysprop change callback.
101 */
102 void atrace_update_tags();
103
104 /**
105 * Set whether the process is debuggable. By default the process is not
106 * considered debuggable. If the process is not debuggable then application-
107 * level tracing is not allowed unless the ro.debuggable system property is
108 * set to '1'.
109 */
110 void atrace_set_debuggable(bool debuggable);
111
112 /**
113 * Set whether tracing is enabled for the current process. This is used to
114 * prevent tracing within the Zygote process.
115 */
116 void atrace_set_tracing_enabled(bool enabled);
117
118 /**
119 * Flag indicating whether setup has been completed, initialized to 0.
120 * Nonzero indicates setup has completed.
121 * Note: This does NOT indicate whether or not setup was successful.
122 */
123 extern atomic_bool atrace_is_ready;
124
125 /**
126 * Set of ATRACE_TAG flags to trace for, initialized to ATRACE_TAG_NOT_READY.
127 * A value of zero indicates setup has failed.
128 * Any other nonzero value indicates setup has succeeded, and tracing is on.
129 */
130 extern uint64_t atrace_enabled_tags;
131
132 /**
133 * Handle to the kernel's trace buffer, initialized to -1.
134 * Any other value indicates setup has succeeded, and is a valid fd for tracing.
135 */
136 extern int atrace_marker_fd;
137
138 /**
139 * atrace_init readies the process for tracing by opening the trace_marker file.
140 * Calling any trace function causes this to be run, so calling it is optional.
141 * This can be explicitly run to avoid setup delay on first trace function.
142 */
143 #define ATRACE_INIT() atrace_init()
atrace_init()144 static inline void atrace_init()
145 {
146 if (CC_UNLIKELY(!atomic_load_explicit(&atrace_is_ready, memory_order_acquire))) {
147 atrace_setup();
148 }
149 }
150
151 /**
152 * Get the mask of all tags currently enabled.
153 * It can be used as a guard condition around more expensive trace calculations.
154 * Every trace function calls this, which ensures atrace_init is run.
155 */
156 #define ATRACE_GET_ENABLED_TAGS() atrace_get_enabled_tags()
atrace_get_enabled_tags()157 static inline uint64_t atrace_get_enabled_tags()
158 {
159 atrace_init();
160 return atrace_enabled_tags;
161 }
162
163 /**
164 * Test if a given tag is currently enabled.
165 * Returns nonzero if the tag is enabled, otherwise zero.
166 * It can be used as a guard condition around more expensive trace calculations.
167 */
168 #define ATRACE_ENABLED() atrace_is_tag_enabled(ATRACE_TAG)
atrace_is_tag_enabled(uint64_t tag)169 static inline uint64_t atrace_is_tag_enabled(uint64_t tag)
170 {
171 return atrace_get_enabled_tags() & tag;
172 }
173
174 /**
175 * Trace the beginning of a context. name is used to identify the context.
176 * This is often used to time function execution.
177 */
178 #define ATRACE_BEGIN(name) atrace_begin(ATRACE_TAG, name)
atrace_begin(uint64_t tag,const char * name)179 static inline void atrace_begin(uint64_t tag, const char* name)
180 {
181 if (CC_UNLIKELY(atrace_is_tag_enabled(tag))) {
182 void atrace_begin_body(const char*);
183 atrace_begin_body(name);
184 }
185 }
186
187 /**
188 * Trace the end of a context.
189 * This should match up (and occur after) a corresponding ATRACE_BEGIN.
190 */
191 #define ATRACE_END() atrace_end(ATRACE_TAG)
atrace_end(uint64_t tag)192 static inline void atrace_end(uint64_t tag)
193 {
194 if (CC_UNLIKELY(atrace_is_tag_enabled(tag))) {
195 void atrace_end_body();
196 atrace_end_body();
197 }
198 }
199
200 /**
201 * Trace the beginning of an asynchronous event. Unlike ATRACE_BEGIN/ATRACE_END
202 * contexts, asynchronous events do not need to be nested. The name describes
203 * the event, and the cookie provides a unique identifier for distinguishing
204 * simultaneous events. The name and cookie used to begin an event must be
205 * used to end it.
206 */
207 #define ATRACE_ASYNC_BEGIN(name, cookie) \
208 atrace_async_begin(ATRACE_TAG, name, cookie)
atrace_async_begin(uint64_t tag,const char * name,int32_t cookie)209 static inline void atrace_async_begin(uint64_t tag, const char* name,
210 int32_t cookie)
211 {
212 if (CC_UNLIKELY(atrace_is_tag_enabled(tag))) {
213 void atrace_async_begin_body(const char*, int32_t);
214 atrace_async_begin_body(name, cookie);
215 }
216 }
217
218 /**
219 * Trace the end of an asynchronous event.
220 * This should have a corresponding ATRACE_ASYNC_BEGIN.
221 */
222 #define ATRACE_ASYNC_END(name, cookie) atrace_async_end(ATRACE_TAG, name, cookie)
atrace_async_end(uint64_t tag,const char * name,int32_t cookie)223 static inline void atrace_async_end(uint64_t tag, const char* name, int32_t cookie)
224 {
225 if (CC_UNLIKELY(atrace_is_tag_enabled(tag))) {
226 void atrace_async_end_body(const char*, int32_t);
227 atrace_async_end_body(name, cookie);
228 }
229 }
230
231 /**
232 * Traces an integer counter value. name is used to identify the counter.
233 * This can be used to track how a value changes over time.
234 */
235 #define ATRACE_INT(name, value) atrace_int(ATRACE_TAG, name, value)
atrace_int(uint64_t tag,const char * name,int32_t value)236 static inline void atrace_int(uint64_t tag, const char* name, int32_t value)
237 {
238 if (CC_UNLIKELY(atrace_is_tag_enabled(tag))) {
239 void atrace_int_body(const char*, int32_t);
240 atrace_int_body(name, value);
241 }
242 }
243
244 /**
245 * Traces a 64-bit integer counter value. name is used to identify the
246 * counter. This can be used to track how a value changes over time.
247 */
248 #define ATRACE_INT64(name, value) atrace_int64(ATRACE_TAG, name, value)
atrace_int64(uint64_t tag,const char * name,int64_t value)249 static inline void atrace_int64(uint64_t tag, const char* name, int64_t value)
250 {
251 if (CC_UNLIKELY(atrace_is_tag_enabled(tag))) {
252 void atrace_int64_body(const char*, int64_t);
253 atrace_int64_body(name, value);
254 }
255 }
256
257 __END_DECLS
258
259 #endif // _LIBS_CUTILS_TRACE_H
260