2014-02-26 18:50:16 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012-2013 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2014-02-15 01:05:05 +01:00
|
|
|
#include <ctype.h>
|
2016-12-29 16:26:30 +01:00
|
|
|
#include <inttypes.h>
|
2014-02-26 18:50:16 +01:00
|
|
|
#include <poll.h>
|
2014-04-28 23:07:23 +02:00
|
|
|
#include <sys/prctl.h>
|
2014-02-26 18:50:16 +01:00
|
|
|
#include <sys/socket.h>
|
2016-02-23 17:55:43 +01:00
|
|
|
#include <sys/types.h>
|
2014-03-24 18:26:47 +01:00
|
|
|
|
2014-02-26 18:50:16 +01:00
|
|
|
#include <cutils/sockets.h>
|
2016-09-30 22:30:33 +02:00
|
|
|
#include <private/android_logger.h>
|
2014-02-26 18:50:16 +01:00
|
|
|
|
|
|
|
#include "FlushCommand.h"
|
2016-02-23 17:55:43 +01:00
|
|
|
#include "LogBuffer.h"
|
|
|
|
#include "LogBufferElement.h"
|
|
|
|
#include "LogReader.h"
|
|
|
|
#include "LogUtils.h"
|
2014-02-26 18:50:16 +01:00
|
|
|
|
2017-03-10 23:31:54 +01:00
|
|
|
LogReader::LogReader(LogBuffer* logbuf)
|
|
|
|
: SocketListener(getLogSocket(), true), mLogbuf(*logbuf) {
|
2015-05-13 00:21:31 +02:00
|
|
|
}
|
2014-02-26 18:50:16 +01:00
|
|
|
|
|
|
|
// When we are notified a new log entry is available, inform
|
2017-12-04 07:10:40 +01:00
|
|
|
// listening sockets who are watching this entry's log id.
|
|
|
|
void LogReader::notifyNewLog(log_mask_t logMask) {
|
|
|
|
FlushCommand command(*this, logMask);
|
2014-02-26 18:50:16 +01:00
|
|
|
runOnEachSocket(&command);
|
|
|
|
}
|
|
|
|
|
2018-10-09 02:33:50 +02:00
|
|
|
// Note returning false will release the SocketClient instance.
|
2017-03-10 23:31:54 +01:00
|
|
|
bool LogReader::onDataAvailable(SocketClient* cli) {
|
2015-03-17 15:56:32 +01:00
|
|
|
static bool name_set;
|
|
|
|
if (!name_set) {
|
|
|
|
prctl(PR_SET_NAME, "logd.reader");
|
|
|
|
name_set = true;
|
|
|
|
}
|
2014-04-28 23:07:23 +02:00
|
|
|
|
2014-02-26 18:50:16 +01:00
|
|
|
char buffer[255];
|
|
|
|
|
|
|
|
int len = read(cli->getSocket(), buffer, sizeof(buffer) - 1);
|
|
|
|
if (len <= 0) {
|
|
|
|
doSocketDelete(cli);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
buffer[len] = '\0';
|
|
|
|
|
2018-10-09 02:33:50 +02:00
|
|
|
// Clients are only allowed to send one command, disconnect them if they
|
|
|
|
// send another.
|
|
|
|
LogTimeEntry::wrlock();
|
|
|
|
for (const auto& entry : mLogbuf.mTimes) {
|
|
|
|
if (entry->mClient == cli) {
|
|
|
|
entry->release_Locked();
|
|
|
|
LogTimeEntry::unlock();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
LogTimeEntry::unlock();
|
|
|
|
|
2014-02-26 18:50:16 +01:00
|
|
|
unsigned long tail = 0;
|
|
|
|
static const char _tail[] = " tail=";
|
2017-03-10 23:31:54 +01:00
|
|
|
char* cp = strstr(buffer, _tail);
|
2014-02-26 18:50:16 +01:00
|
|
|
if (cp) {
|
|
|
|
tail = atol(cp + sizeof(_tail) - 1);
|
|
|
|
}
|
|
|
|
|
2014-02-15 01:05:05 +01:00
|
|
|
log_time start(log_time::EPOCH);
|
|
|
|
static const char _start[] = " start=";
|
|
|
|
cp = strstr(buffer, _start);
|
|
|
|
if (cp) {
|
|
|
|
// Parse errors will result in current time
|
|
|
|
start.strptime(cp + sizeof(_start) - 1, "%s.%q");
|
|
|
|
}
|
|
|
|
|
2015-11-30 20:35:56 +01:00
|
|
|
uint64_t timeout = 0;
|
|
|
|
static const char _timeout[] = " timeout=";
|
|
|
|
cp = strstr(buffer, _timeout);
|
|
|
|
if (cp) {
|
|
|
|
timeout = atol(cp + sizeof(_timeout) - 1) * NS_PER_SEC +
|
|
|
|
log_time(CLOCK_REALTIME).nsec();
|
|
|
|
}
|
|
|
|
|
2014-02-26 18:50:16 +01:00
|
|
|
unsigned int logMask = -1;
|
|
|
|
static const char _logIds[] = " lids=";
|
|
|
|
cp = strstr(buffer, _logIds);
|
|
|
|
if (cp) {
|
|
|
|
logMask = 0;
|
|
|
|
cp += sizeof(_logIds) - 1;
|
|
|
|
while (*cp && *cp != '\0') {
|
|
|
|
int val = 0;
|
2014-02-15 01:05:05 +01:00
|
|
|
while (isdigit(*cp)) {
|
|
|
|
val = val * 10 + *cp - '0';
|
2014-02-26 18:50:16 +01:00
|
|
|
++cp;
|
|
|
|
}
|
|
|
|
logMask |= 1 << val;
|
|
|
|
if (*cp != ',') {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
++cp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pid_t pid = 0;
|
|
|
|
static const char _pid[] = " pid=";
|
|
|
|
cp = strstr(buffer, _pid);
|
|
|
|
if (cp) {
|
|
|
|
pid = atol(cp + sizeof(_pid) - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool nonBlock = false;
|
2016-12-02 19:08:48 +01:00
|
|
|
if (!fastcmp<strncmp>(buffer, "dumpAndClose", 12)) {
|
2014-09-16 18:19:47 +02:00
|
|
|
// Allow writer to get some cycles, and wait for pending notifications
|
|
|
|
sched_yield();
|
2017-04-18 23:09:45 +02:00
|
|
|
LogTimeEntry::wrlock();
|
2014-09-16 18:19:47 +02:00
|
|
|
LogTimeEntry::unlock();
|
|
|
|
sched_yield();
|
2014-02-26 18:50:16 +01:00
|
|
|
nonBlock = true;
|
|
|
|
}
|
|
|
|
|
2017-03-10 17:44:14 +01:00
|
|
|
log_time sequence = start;
|
|
|
|
//
|
|
|
|
// This somewhat expensive data validation operation is required
|
|
|
|
// for non-blocking, with timeout. The incoming timestamp must be
|
|
|
|
// in range of the list, if not, return immediately. This is
|
|
|
|
// used to prevent us from from getting stuck in timeout processing
|
|
|
|
// with an invalid time.
|
|
|
|
//
|
|
|
|
// Find if time is really present in the logs, monotonic or real, implicit
|
|
|
|
// conversion from monotonic or real as necessary to perform the check.
|
|
|
|
// Exit in the check loop ASAP as you find a transition from older to
|
|
|
|
// newer, but use the last entry found to ensure overlap.
|
|
|
|
//
|
|
|
|
if (nonBlock && (sequence != log_time::EPOCH) && timeout) {
|
|
|
|
class LogFindStart { // A lambda by another name
|
|
|
|
private:
|
2014-02-19 16:33:12 +01:00
|
|
|
const pid_t mPid;
|
|
|
|
const unsigned mLogMask;
|
2017-03-10 17:44:14 +01:00
|
|
|
bool mStartTimeSet;
|
|
|
|
log_time mStart;
|
|
|
|
log_time& mSequence;
|
|
|
|
log_time mLast;
|
|
|
|
bool mIsMonotonic;
|
2014-02-19 16:33:12 +01:00
|
|
|
|
2017-03-10 23:31:54 +01:00
|
|
|
public:
|
2017-03-10 17:44:14 +01:00
|
|
|
LogFindStart(pid_t pid, unsigned logMask, log_time& sequence,
|
|
|
|
bool isMonotonic)
|
2017-03-10 23:31:54 +01:00
|
|
|
: mPid(pid),
|
|
|
|
mLogMask(logMask),
|
2017-03-10 17:44:14 +01:00
|
|
|
mStartTimeSet(false),
|
|
|
|
mStart(sequence),
|
|
|
|
mSequence(sequence),
|
|
|
|
mLast(sequence),
|
|
|
|
mIsMonotonic(isMonotonic) {
|
2015-05-13 00:21:31 +02:00
|
|
|
}
|
2014-02-19 16:33:12 +01:00
|
|
|
|
2017-03-10 23:31:54 +01:00
|
|
|
static int callback(const LogBufferElement* element, void* obj) {
|
|
|
|
LogFindStart* me = reinterpret_cast<LogFindStart*>(obj);
|
|
|
|
if ((!me->mPid || (me->mPid == element->getPid())) &&
|
|
|
|
(me->mLogMask & (1 << element->getLogId()))) {
|
2017-03-10 17:44:14 +01:00
|
|
|
log_time real = element->getRealTime();
|
|
|
|
if (me->mStart == real) {
|
|
|
|
me->mSequence = real;
|
|
|
|
me->mStartTimeSet = true;
|
2015-03-03 22:39:37 +01:00
|
|
|
return -1;
|
2017-03-10 17:44:14 +01:00
|
|
|
} else if (!me->mIsMonotonic || android::isMonotonic(real)) {
|
|
|
|
if (me->mStart < real) {
|
|
|
|
me->mSequence = me->mLast;
|
|
|
|
me->mStartTimeSet = true;
|
2015-03-03 22:39:37 +01:00
|
|
|
return -1;
|
2014-02-19 16:33:12 +01:00
|
|
|
}
|
2017-03-10 17:44:14 +01:00
|
|
|
me->mLast = real;
|
2015-09-08 17:56:32 +02:00
|
|
|
} else {
|
2017-03-10 17:44:14 +01:00
|
|
|
me->mLast = real;
|
2014-02-19 16:33:12 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-03-10 23:31:54 +01:00
|
|
|
bool found() {
|
2017-03-10 17:44:14 +01:00
|
|
|
return mStartTimeSet;
|
2017-03-10 23:31:54 +01:00
|
|
|
}
|
2017-03-10 17:44:14 +01:00
|
|
|
|
|
|
|
} logFindStart(pid, logMask, sequence,
|
2015-09-08 17:56:32 +02:00
|
|
|
logbuf().isMonotonic() && android::isMonotonic(start));
|
2014-02-19 16:33:12 +01:00
|
|
|
|
2017-03-31 19:48:39 +02:00
|
|
|
logbuf().flushTo(cli, sequence, nullptr, FlushCommand::hasReadLogs(cli),
|
2016-01-26 23:32:35 +01:00
|
|
|
FlushCommand::hasSecurityLogs(cli),
|
2014-02-19 16:33:12 +01:00
|
|
|
logFindStart.callback, &logFindStart);
|
|
|
|
|
|
|
|
if (!logFindStart.found()) {
|
2017-03-10 17:44:14 +01:00
|
|
|
doSocketDelete(cli);
|
|
|
|
return false;
|
2014-02-19 16:33:12 +01:00
|
|
|
}
|
2014-02-15 01:05:05 +01:00
|
|
|
}
|
|
|
|
|
2016-12-29 16:26:30 +01:00
|
|
|
android::prdebug(
|
|
|
|
"logdr: UID=%d GID=%d PID=%d %c tail=%lu logMask=%x pid=%d "
|
|
|
|
"start=%" PRIu64 "ns timeout=%" PRIu64 "ns\n",
|
|
|
|
cli->getUid(), cli->getGid(), cli->getPid(), nonBlock ? 'n' : 'b', tail,
|
|
|
|
logMask, (int)pid, sequence.nsec(), timeout);
|
|
|
|
|
2018-10-19 22:51:35 +02:00
|
|
|
if (sequence == log_time::EPOCH) {
|
|
|
|
timeout = 0;
|
|
|
|
}
|
|
|
|
|
2018-10-09 02:33:50 +02:00
|
|
|
LogTimeEntry::wrlock();
|
|
|
|
auto entry = std::make_unique<LogTimeEntry>(
|
|
|
|
*this, cli, nonBlock, tail, logMask, pid, sequence, timeout);
|
|
|
|
if (!entry->startReader_Locked()) {
|
|
|
|
LogTimeEntry::unlock();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// release client and entry reference counts once done
|
|
|
|
cli->incRef();
|
|
|
|
mLogbuf.mTimes.emplace_front(std::move(entry));
|
2016-02-23 17:55:43 +01:00
|
|
|
|
|
|
|
// Set acceptable upper limit to wait for slow reader processing b/27242723
|
|
|
|
struct timeval t = { LOGD_SNDTIMEO, 0 };
|
2017-03-10 23:31:54 +01:00
|
|
|
setsockopt(cli->getSocket(), SOL_SOCKET, SO_SNDTIMEO, (const char*)&t,
|
|
|
|
sizeof(t));
|
2016-02-23 17:55:43 +01:00
|
|
|
|
2018-10-09 02:33:50 +02:00
|
|
|
LogTimeEntry::unlock();
|
|
|
|
|
2014-02-26 18:50:16 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-03-10 23:31:54 +01:00
|
|
|
void LogReader::doSocketDelete(SocketClient* cli) {
|
|
|
|
LastLogTimes& times = mLogbuf.mTimes;
|
2017-04-18 23:09:45 +02:00
|
|
|
LogTimeEntry::wrlock();
|
2014-02-26 18:50:16 +01:00
|
|
|
LastLogTimes::iterator it = times.begin();
|
2017-03-10 23:31:54 +01:00
|
|
|
while (it != times.end()) {
|
2018-10-09 02:33:50 +02:00
|
|
|
LogTimeEntry* entry = it->get();
|
2014-02-26 18:50:16 +01:00
|
|
|
if (entry->mClient == cli) {
|
|
|
|
entry->release_Locked();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
it++;
|
|
|
|
}
|
|
|
|
LogTimeEntry::unlock();
|
|
|
|
}
|
2014-03-24 18:26:47 +01:00
|
|
|
|
|
|
|
int LogReader::getLogSocket() {
|
|
|
|
static const char socketName[] = "logdr";
|
|
|
|
int sock = android_get_control_socket(socketName);
|
|
|
|
|
|
|
|
if (sock < 0) {
|
2017-03-10 23:31:54 +01:00
|
|
|
sock = socket_local_server(
|
|
|
|
socketName, ANDROID_SOCKET_NAMESPACE_RESERVED, SOCK_SEQPACKET);
|
2014-03-24 18:26:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return sock;
|
|
|
|
}
|