blob: 3c8cc87892b0efae7d05264429d9f9bed7a34a12 [file] [log] [blame]
Mark Salyzynae4d9282014-10-15 08:49:39 -07001/*
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
17#ifndef _LOGD_LOG_KLOG_H__
18#define _LOGD_LOG_KLOG_H__
19
20#include <sysutils/SocketListener.h>
21#include <log/log_read.h>
22#include "LogReader.h"
23
Mark Salyzynea1a2412015-09-02 07:39:53 -070024char *log_strntok_r(char *s, size_t *len, char **saveptr, size_t *sublen);
Mark Salyzyn2c3b3002015-05-22 15:23:44 -070025
Mark Salyzynae4d9282014-10-15 08:49:39 -070026class LogKlog : public SocketListener {
27 LogBuffer *logbuf;
28 LogReader *reader;
29 const log_time signature;
Mark Salyzynae4d9282014-10-15 08:49:39 -070030 // Set once thread is started, separates KLOG_ACTION_READ_ALL
31 // and KLOG_ACTION_READ phases.
32 bool initialized;
33 // Used during each of the above phases to control logging.
34 bool enableLogging;
35 // set if we are also running auditd, to filter out audit reports from
36 // our copy of the kernel log
37 bool auditd;
38
39 static log_time correction;
40
41public:
42 LogKlog(LogBuffer *buf, LogReader *reader, int fdWrite, int fdRead, bool auditd);
Mark Salyzyn151beac2015-09-04 11:37:42 -070043 int log(const char *buf, size_t len);
44 void synchronize(const char *buf, size_t len);
Mark Salyzynae4d9282014-10-15 08:49:39 -070045
Mark Salyzynb6bee332015-09-08 08:56:32 -070046 bool isMonotonic() { return logbuf->isMonotonic(); }
Mark Salyzynae4d9282014-10-15 08:49:39 -070047 static void convertMonotonicToReal(log_time &real) { real += correction; }
Mark Salyzynb6bee332015-09-08 08:56:32 -070048 static void convertRealToMonotonic(log_time &real) { real -= correction; }
Mark Salyzynae4d9282014-10-15 08:49:39 -070049
50protected:
Mark Salyzyn151beac2015-09-04 11:37:42 -070051 void sniffTime(log_time &now, const char **buf, size_t len, bool reverse);
52 pid_t sniffPid(const char *buf, size_t len);
53 void calculateCorrection(const log_time &monotonic,
54 const char *real_string, size_t len);
Mark Salyzynae4d9282014-10-15 08:49:39 -070055 virtual bool onDataAvailable(SocketClient *cli);
56
57};
58
59#endif