Brigid Smith | a406ee6 | 2014-07-21 15:38:06 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2014 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 | |
Elliott Hughes | 40360b3 | 2014-12-29 13:29:50 -0800 | [diff] [blame] | 17 | #include <errno.h> |
Brigid Smith | a406ee6 | 2014-07-21 15:38:06 -0700 | [diff] [blame] | 18 | #include <fcntl.h> |
| 19 | #include <stdio.h> |
| 20 | #include <stdlib.h> |
Elliott Hughes | 05fc1d7 | 2015-01-28 18:02:33 -0800 | [diff] [blame] | 21 | #include <string.h> |
Brigid Smith | a406ee6 | 2014-07-21 15:38:06 -0700 | [diff] [blame] | 22 | |
Yabin Cui | 1661125 | 2015-07-21 17:27:54 -0700 | [diff] [blame] | 23 | #include "private/bionic_lock.h" |
Brigid Smith | a406ee6 | 2014-07-21 15:38:06 -0700 | [diff] [blame] | 24 | #include "private/bionic_systrace.h" |
Elliott Hughes | e4ddb3c | 2017-04-17 14:12:25 -0700 | [diff] [blame^] | 25 | #include "private/CachedProperty.h" |
Brigid Smith | a406ee6 | 2014-07-21 15:38:06 -0700 | [diff] [blame] | 26 | #include "private/libc_logging.h" |
| 27 | |
Elliott Hughes | e4ddb3c | 2017-04-17 14:12:25 -0700 | [diff] [blame^] | 28 | #include <cutils/trace.h> // For ATRACE_TAG_BIONIC. |
Brigid Smith | a406ee6 | 2014-07-21 15:38:06 -0700 | [diff] [blame] | 29 | |
| 30 | #define WRITE_OFFSET 32 |
| 31 | |
Yabin Cui | 1661125 | 2015-07-21 17:27:54 -0700 | [diff] [blame] | 32 | static Lock g_lock; |
Brigid Smith | a406ee6 | 2014-07-21 15:38:06 -0700 | [diff] [blame] | 33 | static int g_trace_marker_fd = -1; |
| 34 | |
| 35 | static bool should_trace() { |
Elliott Hughes | e4ddb3c | 2017-04-17 14:12:25 -0700 | [diff] [blame^] | 36 | static CachedProperty g_debug_atrace_tags_enableflags("debug.atrace.tags.enableflags"); |
| 37 | static uint64_t g_tags; |
Dimitry Ivanov | 2a4a5e7 | 2017-03-20 10:54:52 -0700 | [diff] [blame] | 38 | |
Elliott Hughes | e4ddb3c | 2017-04-17 14:12:25 -0700 | [diff] [blame^] | 39 | g_lock.lock(); |
| 40 | if (g_debug_atrace_tags_enableflags.DidChange()) { |
| 41 | g_tags = strtoull(g_debug_atrace_tags_enableflags.Get(), nullptr, 0); |
Brigid Smith | a406ee6 | 2014-07-21 15:38:06 -0700 | [diff] [blame] | 42 | } |
Yabin Cui | 1661125 | 2015-07-21 17:27:54 -0700 | [diff] [blame] | 43 | g_lock.unlock(); |
Elliott Hughes | e4ddb3c | 2017-04-17 14:12:25 -0700 | [diff] [blame^] | 44 | return ((g_tags & ATRACE_TAG_BIONIC) != 0); |
Yabin Cui | 1661125 | 2015-07-21 17:27:54 -0700 | [diff] [blame] | 45 | } |
Brigid Smith | a406ee6 | 2014-07-21 15:38:06 -0700 | [diff] [blame] | 46 | |
Yabin Cui | 1661125 | 2015-07-21 17:27:54 -0700 | [diff] [blame] | 47 | static int get_trace_marker_fd() { |
| 48 | g_lock.lock(); |
| 49 | if (g_trace_marker_fd == -1) { |
| 50 | g_trace_marker_fd = open("/sys/kernel/debug/tracing/trace_marker", O_CLOEXEC | O_WRONLY); |
| 51 | } |
| 52 | g_lock.unlock(); |
| 53 | return g_trace_marker_fd; |
Brigid Smith | a406ee6 | 2014-07-21 15:38:06 -0700 | [diff] [blame] | 54 | } |
| 55 | |
Dimitry Ivanov | 2a4a5e7 | 2017-03-20 10:54:52 -0700 | [diff] [blame] | 56 | void bionic_trace_begin(const char* message) { |
Brigid Smith | a406ee6 | 2014-07-21 15:38:06 -0700 | [diff] [blame] | 57 | if (!should_trace()) { |
| 58 | return; |
| 59 | } |
| 60 | |
Yabin Cui | 1661125 | 2015-07-21 17:27:54 -0700 | [diff] [blame] | 61 | int trace_marker_fd = get_trace_marker_fd(); |
| 62 | if (trace_marker_fd == -1) { |
| 63 | return; |
Brigid Smith | a406ee6 | 2014-07-21 15:38:06 -0700 | [diff] [blame] | 64 | } |
| 65 | |
| 66 | // If bionic tracing has been enabled, then write the message to the |
| 67 | // kernel trace_marker. |
| 68 | int length = strlen(message); |
| 69 | char buf[length + WRITE_OFFSET]; |
| 70 | size_t len = snprintf(buf, length + WRITE_OFFSET, "B|%d|%s", getpid(), message); |
Brigid Smith | a406ee6 | 2014-07-21 15:38:06 -0700 | [diff] [blame] | 71 | |
Yabin Cui | 1661125 | 2015-07-21 17:27:54 -0700 | [diff] [blame] | 72 | // Tracing may stop just after checking property and before writing the message. |
| 73 | // So the write is acceptable to fail. See b/20666100. |
| 74 | TEMP_FAILURE_RETRY(write(trace_marker_fd, buf, len)); |
Brigid Smith | a406ee6 | 2014-07-21 15:38:06 -0700 | [diff] [blame] | 75 | } |
| 76 | |
Dimitry Ivanov | 2a4a5e7 | 2017-03-20 10:54:52 -0700 | [diff] [blame] | 77 | void bionic_trace_end() { |
Brigid Smith | a406ee6 | 2014-07-21 15:38:06 -0700 | [diff] [blame] | 78 | if (!should_trace()) { |
| 79 | return; |
| 80 | } |
| 81 | |
Yabin Cui | 1661125 | 2015-07-21 17:27:54 -0700 | [diff] [blame] | 82 | int trace_marker_fd = get_trace_marker_fd(); |
| 83 | if (trace_marker_fd == -1) { |
| 84 | return; |
Brigid Smith | a406ee6 | 2014-07-21 15:38:06 -0700 | [diff] [blame] | 85 | } |
Yabin Cui | 1661125 | 2015-07-21 17:27:54 -0700 | [diff] [blame] | 86 | |
| 87 | TEMP_FAILURE_RETRY(write(trace_marker_fd, "E", 1)); |
Brigid Smith | a406ee6 | 2014-07-21 15:38:06 -0700 | [diff] [blame] | 88 | } |
Dimitry Ivanov | 2a4a5e7 | 2017-03-20 10:54:52 -0700 | [diff] [blame] | 89 | |
| 90 | ScopedTrace::ScopedTrace(const char* message) : called_end_(false) { |
| 91 | bionic_trace_begin(message); |
| 92 | } |
| 93 | |
| 94 | ScopedTrace::~ScopedTrace() { |
| 95 | End(); |
| 96 | } |
| 97 | |
| 98 | void ScopedTrace::End() { |
| 99 | if (!called_end_) { |
| 100 | bionic_trace_end(); |
| 101 | called_end_ = true; |
| 102 | } |
| 103 | } |