blob: e9e06dfc4985ca01d7dd2dc64a4dc453a6f4b42d [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
Dan Albert58310b42015-03-13 23:06:01 -070021#include "base/logging.h"
22
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
43#include "base/macros.h"
Dan Albert58310b42015-03-13 23:06:01 -070044#include "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
Dan Albert5c190402015-04-29 11:32:23 -070056namespace {
57#ifndef _WIN32
58using std::mutex;
59using std::lock_guard;
60
61#if defined(__GLIBC__)
62const char* getprogname() {
63 return program_invocation_short_name;
64}
65#endif
66
67#else
68const char* getprogname() {
69 static bool first = true;
70 static char progname[MAX_PATH] = {};
71
72 if (first) {
Spencer Lowbdab59a2015-08-11 16:00:13 -070073 CHAR longname[MAX_PATH];
74 DWORD nchars = GetModuleFileNameA(nullptr, longname, arraysize(longname));
75 if ((nchars >= arraysize(longname)) || (nchars == 0)) {
76 // String truncation or some other error.
77 strcpy(progname, "<unknown>");
78 } else {
79 strcpy(progname, basename(longname));
80 }
Dan Albert5c190402015-04-29 11:32:23 -070081 first = false;
82 }
83
84 return progname;
85}
86
87class mutex {
88 public:
89 mutex() {
Spencer Lowbdab59a2015-08-11 16:00:13 -070090 InitializeCriticalSection(&critical_section_);
Dan Albert5c190402015-04-29 11:32:23 -070091 }
92 ~mutex() {
Spencer Lowbdab59a2015-08-11 16:00:13 -070093 DeleteCriticalSection(&critical_section_);
Dan Albert5c190402015-04-29 11:32:23 -070094 }
95
96 void lock() {
Spencer Lowbdab59a2015-08-11 16:00:13 -070097 EnterCriticalSection(&critical_section_);
Dan Albert5c190402015-04-29 11:32:23 -070098 }
99
100 void unlock() {
Spencer Lowbdab59a2015-08-11 16:00:13 -0700101 LeaveCriticalSection(&critical_section_);
Dan Albert5c190402015-04-29 11:32:23 -0700102 }
103
104 private:
Spencer Lowbdab59a2015-08-11 16:00:13 -0700105 CRITICAL_SECTION critical_section_;
Dan Albert5c190402015-04-29 11:32:23 -0700106};
107
108template <typename LockT>
109class lock_guard {
110 public:
111 explicit lock_guard(LockT& lock) : lock_(lock) {
112 lock_.lock();
113 }
114
115 ~lock_guard() {
116 lock_.unlock();
117 }
118
119 private:
120 LockT& lock_;
121
122 DISALLOW_COPY_AND_ASSIGN(lock_guard);
123};
124#endif
125} // namespace
126
Dan Albert58310b42015-03-13 23:06:01 -0700127namespace android {
128namespace base {
129
Dan Albert5c190402015-04-29 11:32:23 -0700130static mutex logging_lock;
Dan Albert58310b42015-03-13 23:06:01 -0700131
Dan Albertb547c852015-03-27 11:20:14 -0700132#ifdef __ANDROID__
133static LogFunction gLogger = LogdLogger();
134#else
135static LogFunction gLogger = StderrLogger;
136#endif
137
Dan Albert7a87d052015-04-03 11:28:46 -0700138static bool gInitialized = false;
Dan Albert58310b42015-03-13 23:06:01 -0700139static LogSeverity gMinimumLogSeverity = INFO;
Dan Albert58310b42015-03-13 23:06:01 -0700140static std::unique_ptr<std::string> gProgramInvocationName;
Dan Albert58310b42015-03-13 23:06:01 -0700141
Dan Albert7a87d052015-04-03 11:28:46 -0700142static const char* ProgramInvocationName() {
143 if (gProgramInvocationName == nullptr) {
144 gProgramInvocationName.reset(new std::string(getprogname()));
145 }
Dan Albert58310b42015-03-13 23:06:01 -0700146
Dan Albert7a87d052015-04-03 11:28:46 -0700147 return gProgramInvocationName->c_str();
Dan Albert58310b42015-03-13 23:06:01 -0700148}
149
Dan Albertb547c852015-03-27 11:20:14 -0700150void StderrLogger(LogId, LogSeverity severity, const char*, const char* file,
151 unsigned int line, const char* message) {
Spencer Lowbdab59a2015-08-11 16:00:13 -0700152 static const char log_characters[] = "VDIWEF";
153 static_assert(arraysize(log_characters) - 1 == FATAL + 1,
154 "Mismatch in size of log_characters and values in LogSeverity");
Dan Albertb547c852015-03-27 11:20:14 -0700155 char severity_char = log_characters[severity];
Dan Albert7a87d052015-04-03 11:28:46 -0700156 fprintf(stderr, "%s %c %5d %5d %s:%u] %s\n", ProgramInvocationName(),
Dan Albertb547c852015-03-27 11:20:14 -0700157 severity_char, getpid(), gettid(), file, line, message);
158}
159
160
161#ifdef __ANDROID__
162LogdLogger::LogdLogger(LogId default_log_id) : default_log_id_(default_log_id) {
163}
164
165static const android_LogPriority kLogSeverityToAndroidLogPriority[] = {
166 ANDROID_LOG_VERBOSE, ANDROID_LOG_DEBUG, ANDROID_LOG_INFO,
167 ANDROID_LOG_WARN, ANDROID_LOG_ERROR, ANDROID_LOG_FATAL,
168};
169static_assert(arraysize(kLogSeverityToAndroidLogPriority) == FATAL + 1,
170 "Mismatch in size of kLogSeverityToAndroidLogPriority and values "
171 "in LogSeverity");
172
173static const log_id kLogIdToAndroidLogId[] = {
174 LOG_ID_MAX, LOG_ID_MAIN, LOG_ID_SYSTEM,
175};
176static_assert(arraysize(kLogIdToAndroidLogId) == SYSTEM + 1,
177 "Mismatch in size of kLogIdToAndroidLogId and values in LogId");
178
179void LogdLogger::operator()(LogId id, LogSeverity severity, const char* tag,
180 const char* file, unsigned int line,
181 const char* message) {
182 int priority = kLogSeverityToAndroidLogPriority[severity];
183 if (id == DEFAULT) {
184 id = default_log_id_;
185 }
186
187 log_id lg_id = kLogIdToAndroidLogId[id];
188
189 if (priority == ANDROID_LOG_FATAL) {
190 __android_log_buf_print(lg_id, priority, tag, "%s:%u] %s", file, line,
191 message);
192 } else {
193 __android_log_buf_print(lg_id, priority, tag, "%s", message);
194 }
195}
196#endif
197
198void InitLogging(char* argv[], LogFunction&& logger) {
199 SetLogger(std::forward<LogFunction>(logger));
200 InitLogging(argv);
201}
202
Spencer Lowbdab59a2015-08-11 16:00:13 -0700203// TODO: make this public; it's independently useful.
204class ErrnoRestorer {
205 public:
206 ErrnoRestorer(int saved_errno) : saved_errno_(saved_errno) {
207 }
208
209 ~ErrnoRestorer() {
210 errno = saved_errno_;
211 }
212
213 private:
214 const int saved_errno_;
215};
216
Dan Albert58310b42015-03-13 23:06:01 -0700217void InitLogging(char* argv[]) {
Dan Albert7a87d052015-04-03 11:28:46 -0700218 if (gInitialized) {
Dan Albert58310b42015-03-13 23:06:01 -0700219 return;
220 }
221
Dan Albert7a87d052015-04-03 11:28:46 -0700222 gInitialized = true;
223
Dan Albert58310b42015-03-13 23:06:01 -0700224 // Stash the command line for later use. We can use /proc/self/cmdline on
225 // Linux to recover this, but we don't have that luxury on the Mac, and there
226 // are a couple of argv[0] variants that are commonly used.
227 if (argv != nullptr) {
Dan Albert7a87d052015-04-03 11:28:46 -0700228 gProgramInvocationName.reset(new std::string(basename(argv[0])));
Dan Albert58310b42015-03-13 23:06:01 -0700229 }
Dan Albert7a87d052015-04-03 11:28:46 -0700230
Dan Albert58310b42015-03-13 23:06:01 -0700231 const char* tags = getenv("ANDROID_LOG_TAGS");
232 if (tags == nullptr) {
233 return;
234 }
235
Dan Albert47328c92015-03-19 13:24:26 -0700236 std::vector<std::string> specs = Split(tags, " ");
Dan Albert58310b42015-03-13 23:06:01 -0700237 for (size_t i = 0; i < specs.size(); ++i) {
238 // "tag-pattern:[vdiwefs]"
239 std::string spec(specs[i]);
240 if (spec.size() == 3 && StartsWith(spec, "*:")) {
241 switch (spec[2]) {
242 case 'v':
243 gMinimumLogSeverity = VERBOSE;
244 continue;
245 case 'd':
246 gMinimumLogSeverity = DEBUG;
247 continue;
248 case 'i':
249 gMinimumLogSeverity = INFO;
250 continue;
251 case 'w':
252 gMinimumLogSeverity = WARNING;
253 continue;
254 case 'e':
255 gMinimumLogSeverity = ERROR;
256 continue;
257 case 'f':
258 gMinimumLogSeverity = FATAL;
259 continue;
260 // liblog will even suppress FATAL if you say 's' for silent, but that's
261 // crazy!
262 case 's':
263 gMinimumLogSeverity = FATAL;
264 continue;
265 }
266 }
267 LOG(FATAL) << "unsupported '" << spec << "' in ANDROID_LOG_TAGS (" << tags
268 << ")";
269 }
270}
271
Dan Albertb547c852015-03-27 11:20:14 -0700272void SetLogger(LogFunction&& logger) {
Dan Albert5c190402015-04-29 11:32:23 -0700273 lock_guard<mutex> lock(logging_lock);
Dan Albertb547c852015-03-27 11:20:14 -0700274 gLogger = std::move(logger);
275}
276
Spencer Lowbdab59a2015-08-11 16:00:13 -0700277// We can't use basename(3) because this code runs on the Mac, which doesn't
278// have a non-modifying basename.
279static const char* GetFileBasename(const char* file) {
280 const char* last_slash = strrchr(file, '/');
281 return (last_slash == nullptr) ? file : last_slash + 1;
282}
283
Dan Albert58310b42015-03-13 23:06:01 -0700284// This indirection greatly reduces the stack impact of having lots of
285// checks/logging in a function.
286class LogMessageData {
287 public:
Dan Albert0c055862015-03-27 11:20:14 -0700288 LogMessageData(const char* file, unsigned int line, LogId id,
Spencer Lowbdab59a2015-08-11 16:00:13 -0700289 LogSeverity severity, int error, int saved_errno)
290 : file_(GetFileBasename(file)),
Dan Albert0c055862015-03-27 11:20:14 -0700291 line_number_(line),
292 id_(id),
293 severity_(severity),
Spencer Lowbdab59a2015-08-11 16:00:13 -0700294 error_(error),
295 errno_restorer_(saved_errno) {
Dan Albert58310b42015-03-13 23:06:01 -0700296 }
297
298 const char* GetFile() const {
299 return file_;
300 }
301
302 unsigned int GetLineNumber() const {
303 return line_number_;
304 }
305
306 LogSeverity GetSeverity() const {
307 return severity_;
308 }
309
Dan Albert0c055862015-03-27 11:20:14 -0700310 LogId GetId() const {
311 return id_;
312 }
313
Dan Albert58310b42015-03-13 23:06:01 -0700314 int GetError() const {
315 return error_;
316 }
317
318 std::ostream& GetBuffer() {
319 return buffer_;
320 }
321
322 std::string ToString() const {
323 return buffer_.str();
324 }
325
326 private:
327 std::ostringstream buffer_;
328 const char* const file_;
329 const unsigned int line_number_;
Dan Albert0c055862015-03-27 11:20:14 -0700330 const LogId id_;
Dan Albert58310b42015-03-13 23:06:01 -0700331 const LogSeverity severity_;
332 const int error_;
Spencer Lowbdab59a2015-08-11 16:00:13 -0700333 ErrnoRestorer errno_restorer_;
Dan Albert58310b42015-03-13 23:06:01 -0700334
335 DISALLOW_COPY_AND_ASSIGN(LogMessageData);
336};
337
Dan Albert0c055862015-03-27 11:20:14 -0700338LogMessage::LogMessage(const char* file, unsigned int line, LogId id,
Dan Albert58310b42015-03-13 23:06:01 -0700339 LogSeverity severity, int error)
Spencer Lowbdab59a2015-08-11 16:00:13 -0700340 : data_(new LogMessageData(file, line, id, severity, error, errno)) {
Dan Albert58310b42015-03-13 23:06:01 -0700341}
342
343LogMessage::~LogMessage() {
344 if (data_->GetSeverity() < gMinimumLogSeverity) {
345 return; // No need to format something we're not going to output.
346 }
347
348 // Finish constructing the message.
349 if (data_->GetError() != -1) {
350 data_->GetBuffer() << ": " << strerror(data_->GetError());
351 }
352 std::string msg(data_->ToString());
353
Dan Albertb547c852015-03-27 11:20:14 -0700354 if (msg.find('\n') == std::string::npos) {
355 LogLine(data_->GetFile(), data_->GetLineNumber(), data_->GetId(),
356 data_->GetSeverity(), msg.c_str());
357 } else {
358 msg += '\n';
359 size_t i = 0;
360 while (i < msg.size()) {
361 size_t nl = msg.find('\n', i);
362 msg[nl] = '\0';
Dan Albert0c055862015-03-27 11:20:14 -0700363 LogLine(data_->GetFile(), data_->GetLineNumber(), data_->GetId(),
Dan Albertb547c852015-03-27 11:20:14 -0700364 data_->GetSeverity(), &msg[i]);
365 i = nl + 1;
Dan Albert58310b42015-03-13 23:06:01 -0700366 }
367 }
368
369 // Abort if necessary.
370 if (data_->GetSeverity() == FATAL) {
371#ifdef __ANDROID__
372 android_set_abort_message(msg.c_str());
373#endif
374 abort();
375 }
376}
377
378std::ostream& LogMessage::stream() {
379 return data_->GetBuffer();
380}
381
Dan Albert0c055862015-03-27 11:20:14 -0700382void LogMessage::LogLine(const char* file, unsigned int line, LogId id,
Dan Albertb547c852015-03-27 11:20:14 -0700383 LogSeverity severity, const char* message) {
Dan Albert7a87d052015-04-03 11:28:46 -0700384 const char* tag = ProgramInvocationName();
Dan Albert5c190402015-04-29 11:32:23 -0700385 lock_guard<mutex> lock(logging_lock);
Dan Albertb547c852015-03-27 11:20:14 -0700386 gLogger(id, severity, tag, file, line, message);
Dan Albert58310b42015-03-13 23:06:01 -0700387}
388
Dan Albert58310b42015-03-13 23:06:01 -0700389ScopedLogSeverity::ScopedLogSeverity(LogSeverity level) {
390 old_ = gMinimumLogSeverity;
391 gMinimumLogSeverity = level;
392}
393
394ScopedLogSeverity::~ScopedLogSeverity() {
395 gMinimumLogSeverity = old_;
396}
397
398} // namespace base
399} // namespace android