blob: a385902e8f2d8f8fa1ac872ac32c06bbfe4df579 [file] [log] [blame]
Dan Albert58310b42015-03-13 23:06:01 -07001/*
2 * Copyright (C) 2015 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
Spencer Lowac3f7d92015-05-19 22:12:06 -070017#ifdef _WIN32
18#include <windows.h>
19#endif
20
Elliott Hughes4f713192015-12-04 22:00:26 -080021#include "android-base/logging.h"
Dan Albert58310b42015-03-13 23:06:01 -070022
Dan Albert7a87d052015-04-03 11:28:46 -070023#include <libgen.h>
24
25// For getprogname(3) or program_invocation_short_name.
26#if defined(__ANDROID__) || defined(__APPLE__)
27#include <stdlib.h>
28#elif defined(__GLIBC__)
29#include <errno.h>
30#endif
31
Dan Albert58310b42015-03-13 23:06:01 -070032#include <iostream>
33#include <limits>
34#include <sstream>
35#include <string>
Dan Albertb547c852015-03-27 11:20:14 -070036#include <utility>
Dan Albert58310b42015-03-13 23:06:01 -070037#include <vector>
38
Dan Albert5c190402015-04-29 11:32:23 -070039#ifndef _WIN32
40#include <mutex>
Dan Albert5c190402015-04-29 11:32:23 -070041#endif
42
Elliott Hughes4f713192015-12-04 22:00:26 -080043#include "android-base/macros.h"
44#include "android-base/strings.h"
Dan Albert7dfb61d2015-03-20 13:46:28 -070045#include "cutils/threads.h"
Dan Albert58310b42015-03-13 23:06:01 -070046
47// Headers for LogMessage::LogLine.
48#ifdef __ANDROID__
49#include <android/set_abort_message.h>
50#include "cutils/log.h"
51#else
52#include <sys/types.h>
53#include <unistd.h>
54#endif
55
Elliott Hughesc1fd4922015-11-11 18:02:29 +000056// For gettid.
57#if defined(__APPLE__)
58#include "AvailabilityMacros.h" // For MAC_OS_X_VERSION_MAX_ALLOWED
59#include <stdint.h>
60#include <stdlib.h>
61#include <sys/syscall.h>
62#include <sys/time.h>
63#include <unistd.h>
64#elif defined(__linux__) && !defined(__ANDROID__)
65#include <syscall.h>
66#include <unistd.h>
67#elif defined(_WIN32)
68#include <windows.h>
69#endif
70
71static pid_t GetThreadId() {
72#if defined(__BIONIC__)
73 return gettid();
74#elif defined(__APPLE__)
75 return syscall(SYS_thread_selfid);
76#elif defined(__linux__)
77 return syscall(__NR_gettid);
78#elif defined(_WIN32)
79 return GetCurrentThreadId();
80#endif
81}
82
Dan Albert5c190402015-04-29 11:32:23 -070083namespace {
84#ifndef _WIN32
85using std::mutex;
86using std::lock_guard;
87
88#if defined(__GLIBC__)
89const char* getprogname() {
90 return program_invocation_short_name;
91}
92#endif
93
94#else
95const char* getprogname() {
96 static bool first = true;
97 static char progname[MAX_PATH] = {};
98
99 if (first) {
Spencer Lowbdab59a2015-08-11 16:00:13 -0700100 CHAR longname[MAX_PATH];
101 DWORD nchars = GetModuleFileNameA(nullptr, longname, arraysize(longname));
102 if ((nchars >= arraysize(longname)) || (nchars == 0)) {
103 // String truncation or some other error.
104 strcpy(progname, "<unknown>");
105 } else {
106 strcpy(progname, basename(longname));
107 }
Dan Albert5c190402015-04-29 11:32:23 -0700108 first = false;
109 }
110
111 return progname;
112}
113
114class mutex {
115 public:
116 mutex() {
Spencer Lowbdab59a2015-08-11 16:00:13 -0700117 InitializeCriticalSection(&critical_section_);
Dan Albert5c190402015-04-29 11:32:23 -0700118 }
119 ~mutex() {
Spencer Lowbdab59a2015-08-11 16:00:13 -0700120 DeleteCriticalSection(&critical_section_);
Dan Albert5c190402015-04-29 11:32:23 -0700121 }
122
123 void lock() {
Spencer Lowbdab59a2015-08-11 16:00:13 -0700124 EnterCriticalSection(&critical_section_);
Dan Albert5c190402015-04-29 11:32:23 -0700125 }
126
127 void unlock() {
Spencer Lowbdab59a2015-08-11 16:00:13 -0700128 LeaveCriticalSection(&critical_section_);
Dan Albert5c190402015-04-29 11:32:23 -0700129 }
130
131 private:
Spencer Lowbdab59a2015-08-11 16:00:13 -0700132 CRITICAL_SECTION critical_section_;
Dan Albert5c190402015-04-29 11:32:23 -0700133};
134
135template <typename LockT>
136class lock_guard {
137 public:
138 explicit lock_guard(LockT& lock) : lock_(lock) {
139 lock_.lock();
140 }
141
142 ~lock_guard() {
143 lock_.unlock();
144 }
145
146 private:
147 LockT& lock_;
148
149 DISALLOW_COPY_AND_ASSIGN(lock_guard);
150};
151#endif
152} // namespace
153
Dan Albert58310b42015-03-13 23:06:01 -0700154namespace android {
155namespace base {
156
Josh Gao7df6b5f2015-11-12 11:54:47 -0800157static auto& logging_lock = *new mutex();
Dan Albert58310b42015-03-13 23:06:01 -0700158
Dan Albertb547c852015-03-27 11:20:14 -0700159#ifdef __ANDROID__
Josh Gao7df6b5f2015-11-12 11:54:47 -0800160static auto& gLogger = *new LogFunction(LogdLogger());
Dan Albertb547c852015-03-27 11:20:14 -0700161#else
Josh Gao7df6b5f2015-11-12 11:54:47 -0800162static auto& gLogger = *new LogFunction(StderrLogger);
Dan Albertb547c852015-03-27 11:20:14 -0700163#endif
164
Dan Albert7a87d052015-04-03 11:28:46 -0700165static bool gInitialized = false;
Dan Albert58310b42015-03-13 23:06:01 -0700166static LogSeverity gMinimumLogSeverity = INFO;
Josh Gao7df6b5f2015-11-12 11:54:47 -0800167static auto& gProgramInvocationName = *new std::unique_ptr<std::string>();
Dan Albert58310b42015-03-13 23:06:01 -0700168
Spencer Low765ae6b2015-09-17 19:36:10 -0700169LogSeverity GetMinimumLogSeverity() {
170 return gMinimumLogSeverity;
171}
172
Dan Albert7a87d052015-04-03 11:28:46 -0700173static const char* ProgramInvocationName() {
174 if (gProgramInvocationName == nullptr) {
175 gProgramInvocationName.reset(new std::string(getprogname()));
176 }
Dan Albert58310b42015-03-13 23:06:01 -0700177
Dan Albert7a87d052015-04-03 11:28:46 -0700178 return gProgramInvocationName->c_str();
Dan Albert58310b42015-03-13 23:06:01 -0700179}
180
Dan Albertb547c852015-03-27 11:20:14 -0700181void StderrLogger(LogId, LogSeverity severity, const char*, const char* file,
182 unsigned int line, const char* message) {
Spencer Lowbdab59a2015-08-11 16:00:13 -0700183 static const char log_characters[] = "VDIWEF";
184 static_assert(arraysize(log_characters) - 1 == FATAL + 1,
185 "Mismatch in size of log_characters and values in LogSeverity");
Dan Albertb547c852015-03-27 11:20:14 -0700186 char severity_char = log_characters[severity];
Dan Albert7a87d052015-04-03 11:28:46 -0700187 fprintf(stderr, "%s %c %5d %5d %s:%u] %s\n", ProgramInvocationName(),
Elliott Hughesc1fd4922015-11-11 18:02:29 +0000188 severity_char, getpid(), GetThreadId(), file, line, message);
Dan Albertb547c852015-03-27 11:20:14 -0700189}
190
191
192#ifdef __ANDROID__
193LogdLogger::LogdLogger(LogId default_log_id) : default_log_id_(default_log_id) {
194}
195
196static const android_LogPriority kLogSeverityToAndroidLogPriority[] = {
197 ANDROID_LOG_VERBOSE, ANDROID_LOG_DEBUG, ANDROID_LOG_INFO,
198 ANDROID_LOG_WARN, ANDROID_LOG_ERROR, ANDROID_LOG_FATAL,
199};
200static_assert(arraysize(kLogSeverityToAndroidLogPriority) == FATAL + 1,
201 "Mismatch in size of kLogSeverityToAndroidLogPriority and values "
202 "in LogSeverity");
203
204static const log_id kLogIdToAndroidLogId[] = {
205 LOG_ID_MAX, LOG_ID_MAIN, LOG_ID_SYSTEM,
206};
207static_assert(arraysize(kLogIdToAndroidLogId) == SYSTEM + 1,
208 "Mismatch in size of kLogIdToAndroidLogId and values in LogId");
209
210void LogdLogger::operator()(LogId id, LogSeverity severity, const char* tag,
211 const char* file, unsigned int line,
212 const char* message) {
213 int priority = kLogSeverityToAndroidLogPriority[severity];
214 if (id == DEFAULT) {
215 id = default_log_id_;
216 }
217
218 log_id lg_id = kLogIdToAndroidLogId[id];
219
220 if (priority == ANDROID_LOG_FATAL) {
221 __android_log_buf_print(lg_id, priority, tag, "%s:%u] %s", file, line,
222 message);
223 } else {
224 __android_log_buf_print(lg_id, priority, tag, "%s", message);
225 }
226}
227#endif
228
229void InitLogging(char* argv[], LogFunction&& logger) {
230 SetLogger(std::forward<LogFunction>(logger));
231 InitLogging(argv);
232}
233
Dan Albert58310b42015-03-13 23:06:01 -0700234void InitLogging(char* argv[]) {
Dan Albert7a87d052015-04-03 11:28:46 -0700235 if (gInitialized) {
Dan Albert58310b42015-03-13 23:06:01 -0700236 return;
237 }
238
Dan Albert7a87d052015-04-03 11:28:46 -0700239 gInitialized = true;
240
Dan Albert58310b42015-03-13 23:06:01 -0700241 // Stash the command line for later use. We can use /proc/self/cmdline on
Spencer Low363af562015-11-07 18:51:54 -0800242 // Linux to recover this, but we don't have that luxury on the Mac/Windows,
243 // and there are a couple of argv[0] variants that are commonly used.
Dan Albert58310b42015-03-13 23:06:01 -0700244 if (argv != nullptr) {
Dan Albert7a87d052015-04-03 11:28:46 -0700245 gProgramInvocationName.reset(new std::string(basename(argv[0])));
Dan Albert58310b42015-03-13 23:06:01 -0700246 }
Dan Albert7a87d052015-04-03 11:28:46 -0700247
Dan Albert58310b42015-03-13 23:06:01 -0700248 const char* tags = getenv("ANDROID_LOG_TAGS");
249 if (tags == nullptr) {
250 return;
251 }
252
Dan Albert47328c92015-03-19 13:24:26 -0700253 std::vector<std::string> specs = Split(tags, " ");
Dan Albert58310b42015-03-13 23:06:01 -0700254 for (size_t i = 0; i < specs.size(); ++i) {
255 // "tag-pattern:[vdiwefs]"
256 std::string spec(specs[i]);
257 if (spec.size() == 3 && StartsWith(spec, "*:")) {
258 switch (spec[2]) {
259 case 'v':
260 gMinimumLogSeverity = VERBOSE;
261 continue;
262 case 'd':
263 gMinimumLogSeverity = DEBUG;
264 continue;
265 case 'i':
266 gMinimumLogSeverity = INFO;
267 continue;
268 case 'w':
269 gMinimumLogSeverity = WARNING;
270 continue;
271 case 'e':
272 gMinimumLogSeverity = ERROR;
273 continue;
274 case 'f':
275 gMinimumLogSeverity = FATAL;
276 continue;
277 // liblog will even suppress FATAL if you say 's' for silent, but that's
278 // crazy!
279 case 's':
280 gMinimumLogSeverity = FATAL;
281 continue;
282 }
283 }
284 LOG(FATAL) << "unsupported '" << spec << "' in ANDROID_LOG_TAGS (" << tags
285 << ")";
286 }
287}
288
Dan Albertb547c852015-03-27 11:20:14 -0700289void SetLogger(LogFunction&& logger) {
Dan Albert5c190402015-04-29 11:32:23 -0700290 lock_guard<mutex> lock(logging_lock);
Dan Albertb547c852015-03-27 11:20:14 -0700291 gLogger = std::move(logger);
292}
293
Spencer Lowbdab59a2015-08-11 16:00:13 -0700294static const char* GetFileBasename(const char* file) {
Spencer Low363af562015-11-07 18:51:54 -0800295 // We can't use basename(3) even on Unix because the Mac doesn't
296 // have a non-modifying basename.
Spencer Lowbdab59a2015-08-11 16:00:13 -0700297 const char* last_slash = strrchr(file, '/');
Spencer Low363af562015-11-07 18:51:54 -0800298 if (last_slash != nullptr) {
299 return last_slash + 1;
300 }
301#if defined(_WIN32)
302 const char* last_backslash = strrchr(file, '\\');
303 if (last_backslash != nullptr) {
304 return last_backslash + 1;
305 }
306#endif
307 return file;
Spencer Lowbdab59a2015-08-11 16:00:13 -0700308}
309
Dan Albert58310b42015-03-13 23:06:01 -0700310// This indirection greatly reduces the stack impact of having lots of
311// checks/logging in a function.
312class LogMessageData {
313 public:
Dan Albert0c055862015-03-27 11:20:14 -0700314 LogMessageData(const char* file, unsigned int line, LogId id,
Spencer Low765ae6b2015-09-17 19:36:10 -0700315 LogSeverity severity, int error)
Spencer Lowbdab59a2015-08-11 16:00:13 -0700316 : file_(GetFileBasename(file)),
Dan Albert0c055862015-03-27 11:20:14 -0700317 line_number_(line),
318 id_(id),
319 severity_(severity),
Spencer Low765ae6b2015-09-17 19:36:10 -0700320 error_(error) {
Dan Albert58310b42015-03-13 23:06:01 -0700321 }
322
323 const char* GetFile() const {
324 return file_;
325 }
326
327 unsigned int GetLineNumber() const {
328 return line_number_;
329 }
330
331 LogSeverity GetSeverity() const {
332 return severity_;
333 }
334
Dan Albert0c055862015-03-27 11:20:14 -0700335 LogId GetId() const {
336 return id_;
337 }
338
Dan Albert58310b42015-03-13 23:06:01 -0700339 int GetError() const {
340 return error_;
341 }
342
343 std::ostream& GetBuffer() {
344 return buffer_;
345 }
346
347 std::string ToString() const {
348 return buffer_.str();
349 }
350
351 private:
352 std::ostringstream buffer_;
353 const char* const file_;
354 const unsigned int line_number_;
Dan Albert0c055862015-03-27 11:20:14 -0700355 const LogId id_;
Dan Albert58310b42015-03-13 23:06:01 -0700356 const LogSeverity severity_;
357 const int error_;
358
359 DISALLOW_COPY_AND_ASSIGN(LogMessageData);
360};
361
Dan Albert0c055862015-03-27 11:20:14 -0700362LogMessage::LogMessage(const char* file, unsigned int line, LogId id,
Dan Albert58310b42015-03-13 23:06:01 -0700363 LogSeverity severity, int error)
Spencer Low765ae6b2015-09-17 19:36:10 -0700364 : data_(new LogMessageData(file, line, id, severity, error)) {
Dan Albert58310b42015-03-13 23:06:01 -0700365}
366
367LogMessage::~LogMessage() {
Dan Albert58310b42015-03-13 23:06:01 -0700368 // Finish constructing the message.
369 if (data_->GetError() != -1) {
370 data_->GetBuffer() << ": " << strerror(data_->GetError());
371 }
372 std::string msg(data_->ToString());
373
Spencer Low765ae6b2015-09-17 19:36:10 -0700374 {
375 // Do the actual logging with the lock held.
376 lock_guard<mutex> lock(logging_lock);
377 if (msg.find('\n') == std::string::npos) {
Dan Albert0c055862015-03-27 11:20:14 -0700378 LogLine(data_->GetFile(), data_->GetLineNumber(), data_->GetId(),
Spencer Low765ae6b2015-09-17 19:36:10 -0700379 data_->GetSeverity(), msg.c_str());
380 } else {
381 msg += '\n';
382 size_t i = 0;
383 while (i < msg.size()) {
384 size_t nl = msg.find('\n', i);
385 msg[nl] = '\0';
386 LogLine(data_->GetFile(), data_->GetLineNumber(), data_->GetId(),
387 data_->GetSeverity(), &msg[i]);
388 i = nl + 1;
389 }
Dan Albert58310b42015-03-13 23:06:01 -0700390 }
391 }
392
393 // Abort if necessary.
394 if (data_->GetSeverity() == FATAL) {
395#ifdef __ANDROID__
396 android_set_abort_message(msg.c_str());
397#endif
398 abort();
399 }
400}
401
402std::ostream& LogMessage::stream() {
403 return data_->GetBuffer();
404}
405
Dan Albert0c055862015-03-27 11:20:14 -0700406void LogMessage::LogLine(const char* file, unsigned int line, LogId id,
Dan Albertb547c852015-03-27 11:20:14 -0700407 LogSeverity severity, const char* message) {
Dan Albert7a87d052015-04-03 11:28:46 -0700408 const char* tag = ProgramInvocationName();
Dan Albertb547c852015-03-27 11:20:14 -0700409 gLogger(id, severity, tag, file, line, message);
Dan Albert58310b42015-03-13 23:06:01 -0700410}
411
Dan Albert58310b42015-03-13 23:06:01 -0700412ScopedLogSeverity::ScopedLogSeverity(LogSeverity level) {
413 old_ = gMinimumLogSeverity;
414 gMinimumLogSeverity = level;
415}
416
417ScopedLogSeverity::~ScopedLogSeverity() {
418 gMinimumLogSeverity = old_;
419}
420
421} // namespace base
422} // namespace android