1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "remoting/host/host_event_logger.h"
#include <stddef.h>
#include <windows.h>
#include <memory>
#include <string>
#include <vector>
#include "base/macros.h"
#include "base/memory/ptr_util.h"
#include "base/memory/weak_ptr.h"
#include "base/strings/string16.h"
#include "base/strings/utf_string_conversions.h"
#include "net/base/ip_endpoint.h"
#include "remoting/host/host_status_monitor.h"
#include "remoting/host/host_status_observer.h"
#include "remoting/host/win/remoting_host_messages.h"
#include "remoting/protocol/transport.h"
namespace remoting {
namespace {
class HostEventLoggerWin : public HostEventLogger, public HostStatusObserver {
public:
HostEventLoggerWin(base::WeakPtr<HostStatusMonitor> monitor,
const std::string& application_name);
~HostEventLoggerWin() override;
// HostStatusObserver implementation. These methods will be called from the
// network thread.
void OnClientAuthenticated(const std::string& jid) override;
void OnClientDisconnected(const std::string& jid) override;
void OnAccessDenied(const std::string& jid) override;
void OnClientRouteChange(
const std::string& jid,
const std::string& channel_name,
const protocol::TransportRoute& route) override;
void OnStart(const std::string& xmpp_login) override;
void OnShutdown() override;
private:
void LogString(WORD type, DWORD event_id, const std::string& string);
void Log(WORD type, DWORD event_id, const std::vector<std::string>& strings);
base::WeakPtr<HostStatusMonitor> monitor_;
// The handle of the application event log.
HANDLE event_log_;
DISALLOW_COPY_AND_ASSIGN(HostEventLoggerWin);
};
} //namespace
HostEventLoggerWin::HostEventLoggerWin(base::WeakPtr<HostStatusMonitor> monitor,
const std::string& application_name)
: monitor_(monitor),
event_log_(nullptr) {
event_log_ = RegisterEventSourceW(
nullptr, base::UTF8ToUTF16(application_name).c_str());
if (event_log_ != nullptr) {
monitor_->AddStatusObserver(this);
} else {
PLOG(ERROR) << "Failed to register the event source: " << application_name;
}
}
HostEventLoggerWin::~HostEventLoggerWin() {
if (event_log_ != nullptr) {
if (monitor_)
monitor_->RemoveStatusObserver(this);
DeregisterEventSource(event_log_);
}
}
void HostEventLoggerWin::OnClientAuthenticated(const std::string& jid) {
LogString(EVENTLOG_INFORMATION_TYPE, MSG_HOST_CLIENT_CONNECTED, jid);
}
void HostEventLoggerWin::OnClientDisconnected(const std::string& jid) {
LogString(EVENTLOG_INFORMATION_TYPE, MSG_HOST_CLIENT_DISCONNECTED, jid);
}
void HostEventLoggerWin::OnAccessDenied(const std::string& jid) {
LogString(EVENTLOG_ERROR_TYPE, MSG_HOST_CLIENT_ACCESS_DENIED, jid);
}
void HostEventLoggerWin::OnClientRouteChange(
const std::string& jid,
const std::string& channel_name,
const protocol::TransportRoute& route) {
std::vector<std::string> strings(5);
strings[0] = jid;
strings[1] = route.remote_address.ToString();
strings[2] = route.local_address.ToString();
strings[3] = channel_name;
strings[4] = protocol::TransportRoute::GetTypeString(route.type);
Log(EVENTLOG_INFORMATION_TYPE, MSG_HOST_CLIENT_ROUTING_CHANGED, strings);
}
void HostEventLoggerWin::OnShutdown() {
// TODO(rmsousa): Fix host shutdown to actually call this, and add a log line.
}
void HostEventLoggerWin::OnStart(const std::string& xmpp_login) {
LogString(EVENTLOG_INFORMATION_TYPE, MSG_HOST_STARTED, xmpp_login);
}
void HostEventLoggerWin::Log(WORD type,
DWORD event_id,
const std::vector<std::string>& strings) {
if (event_log_ == nullptr)
return;
// ReportEventW() takes an array of raw string pointers. They should stay
// valid for the duration of the call.
std::vector<const WCHAR*> raw_strings(strings.size());
std::vector<base::string16> utf16_strings(strings.size());
for (size_t i = 0; i < strings.size(); ++i) {
utf16_strings[i] = base::UTF8ToUTF16(strings[i]);
raw_strings[i] = utf16_strings[i].c_str();
}
if (!ReportEventW(event_log_,
type,
HOST_CATEGORY,
event_id,
nullptr,
static_cast<WORD>(raw_strings.size()),
0,
&raw_strings[0],
nullptr)) {
PLOG(ERROR) << "Failed to write an event to the event log";
}
}
void HostEventLoggerWin::LogString(WORD type,
DWORD event_id,
const std::string& string) {
std::vector<std::string> strings;
strings.push_back(string);
Log(type, event_id, strings);
}
// static
std::unique_ptr<HostEventLogger> HostEventLogger::Create(
base::WeakPtr<HostStatusMonitor> monitor,
const std::string& application_name) {
return base::WrapUnique(new HostEventLoggerWin(monitor, application_name));
}
} // namespace remoting
|