2014-02-26 18:50:16 +01:00
|
|
|
/*
|
2014-02-21 22:54:07 +01:00
|
|
|
* Copyright (C) 2012-2014 The Android Open Source Project
|
2014-02-26 18:50:16 +01:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
2014-02-21 22:54:07 +01:00
|
|
|
|
2016-02-23 17:55:43 +01:00
|
|
|
#include <private/android_filesystem_config.h>
|
|
|
|
|
2014-02-26 18:50:16 +01:00
|
|
|
#include "FlushCommand.h"
|
2016-02-23 17:55:43 +01:00
|
|
|
#include "LogBuffer.h"
|
2014-02-26 18:50:16 +01:00
|
|
|
#include "LogBufferElement.h"
|
2014-02-21 22:54:07 +01:00
|
|
|
#include "LogCommand.h"
|
2014-02-26 18:50:16 +01:00
|
|
|
#include "LogReader.h"
|
2014-02-21 22:54:07 +01:00
|
|
|
#include "LogTimes.h"
|
2015-12-04 19:59:45 +01:00
|
|
|
#include "LogUtils.h"
|
2014-02-26 18:50:16 +01:00
|
|
|
|
|
|
|
// runSocketCommand is called once for every open client on the
|
|
|
|
// log reader socket. Here we manage and associated the reader
|
|
|
|
// client tracking and log region locks LastLogTimes list of
|
|
|
|
// LogTimeEntrys, and spawn a transitory per-client thread to
|
|
|
|
// work at filing data to the socket.
|
|
|
|
//
|
2017-04-18 23:09:45 +02:00
|
|
|
// global LogTimeEntry::wrlock() is used to protect access,
|
2014-02-26 18:50:16 +01:00
|
|
|
// reference counts are used to ensure that individual
|
|
|
|
// LogTimeEntry lifetime is managed when not protected.
|
2017-03-10 23:31:54 +01:00
|
|
|
void FlushCommand::runSocketCommand(SocketClient* client) {
|
2018-07-14 02:39:22 +02:00
|
|
|
LogTimeEntry* entry = nullptr;
|
2017-03-10 23:31:54 +01:00
|
|
|
LastLogTimes& times = mReader.logbuf().mTimes;
|
2014-02-26 18:50:16 +01:00
|
|
|
|
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
|
|
|
entry = it->get();
|
2014-02-26 18:50:16 +01:00
|
|
|
if (entry->mClient == client) {
|
2017-12-04 07:10:40 +01:00
|
|
|
if (!entry->isWatchingMultiple(mLogMask)) {
|
|
|
|
LogTimeEntry::unlock();
|
|
|
|
return;
|
|
|
|
}
|
2015-11-30 20:35:56 +01:00
|
|
|
if (entry->mTimeout.tv_sec || entry->mTimeout.tv_nsec) {
|
logd: wakeup wrap timeout if realtime changes drastically
--wrap flag in logcat translates directly to the mTimeout inside logd,
the value set is ANDROID_LOG_WRAP_DEFAULT_TIMEOUT defined in
<log/log_read.h> as 7200 or 2 hours. For a non blocking read with
a selected timeout, the logger waits until either the log buffer is
about to 'wrap' and prune the log entry, or at the specified timeout.
Non blocking in the logger context means that when there are no more
log entries, the socket is closed.
clock_gettime(CLOCK_REALTIME) is UTC 1970 epoch *NIX time. Is only
affected for time updates, not timezone or daylight savings time.
If there is a large user initiated time change, both the log entries
and the timeout mentioned above really get called into question, so we
trigger a release of the logs for clarity. This is so that the log
reader can handle the disruptively updated time, and can immediately
check the local time if necessary.
The logger has a 5 second window for entries to land in time sorted
order into the logging list. This should offer the log reader some
differentiation between logging order sequence for monotonically
increasing time, and sequence order in the face of user initiated time
adjustments that break monotonicity.
This change is about major time adjustments that can cause Fear,
Uncertainty or Doubt about log entries. By returning, immediate action
can be taken, rather than having to comb through the logs with less
details about the time disruptions in hand. The least it can do is
record what we have, and restart the call with a new tail time and
timeout.
Test: gTest liblog-unit-tests logcat-unit-test logd-unit-tests
Bug: 35373582
Change-Id: I92cac83be99d68634ffd4ebd2f3a3067cfd0e942
2017-03-14 21:23:06 +01:00
|
|
|
if (mReader.logbuf().isMonotonic()) {
|
|
|
|
LogTimeEntry::unlock();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// If the user changes the time in a gross manner that
|
|
|
|
// invalidates the timeout, fall through and trigger.
|
|
|
|
log_time now(CLOCK_REALTIME);
|
|
|
|
if (((entry->mEnd + entry->mTimeout) > now) &&
|
|
|
|
(now > entry->mEnd)) {
|
|
|
|
LogTimeEntry::unlock();
|
|
|
|
return;
|
|
|
|
}
|
2015-11-30 20:35:56 +01:00
|
|
|
}
|
2014-02-26 18:50:16 +01:00
|
|
|
entry->triggerReader_Locked();
|
|
|
|
LogTimeEntry::unlock();
|
|
|
|
return;
|
|
|
|
}
|
2018-10-09 02:33:50 +02:00
|
|
|
it++;
|
2014-02-26 18:50:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
LogTimeEntry::unlock();
|
|
|
|
}
|
|
|
|
|
2017-03-10 23:31:54 +01:00
|
|
|
bool FlushCommand::hasReadLogs(SocketClient* client) {
|
2014-02-21 22:54:07 +01:00
|
|
|
return clientHasLogCredentials(client);
|
2014-02-26 18:50:16 +01:00
|
|
|
}
|
2016-01-26 23:32:35 +01:00
|
|
|
|
2017-03-10 23:31:54 +01:00
|
|
|
static bool clientHasSecurityCredentials(SocketClient* client) {
|
2016-01-26 23:32:35 +01:00
|
|
|
return (client->getUid() == AID_SYSTEM) || (client->getGid() == AID_SYSTEM);
|
|
|
|
}
|
|
|
|
|
2017-03-10 23:31:54 +01:00
|
|
|
bool FlushCommand::hasSecurityLogs(SocketClient* client) {
|
2016-01-26 23:32:35 +01:00
|
|
|
return clientHasSecurityCredentials(client);
|
|
|
|
}
|