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
|
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef EXTENSIONS_BROWSER_MESSAGE_TRACKER_H_
#define EXTENSIONS_BROWSER_MESSAGE_TRACKER_H_
#include <map>
#include "base/memory/raw_ptr.h"
#include "base/memory/singleton.h"
#include "base/memory/weak_ptr.h"
#include "base/time/time.h"
#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
#include "components/keyed_service/core/keyed_service.h"
#include "extensions/common/mojom/message_port.mojom-shared.h"
namespace base {
class UnguessableToken;
} // namespace base
namespace content {
class BrowserContext;
} // namespace content
namespace extensions {
// Tracks an extension message from the browser process as it's sent to a
// background context and emits metrics on whether it succeeds or fails.
class MessageTracker : public KeyedService {
public:
enum class OpenChannelMessagePipelineResult {
kUnknown = 0,
// At least one endpoint accepted the connection and the channel was opened.
kOpened = 1,
// Multi-use value meaning that the stage did not occur before
// stage_timeout_ was reached.
kHung = 2,
// The channel was not opened due to one of theses issues. See enums.xml for
// more details (part 1).
kNoReceivers = 3,
kOpenChannelToNonEnabledExtension = 4,
kNotExternallyConnectable = 5,
kWorkerStarted = 6,
kWillNotOpenChannel = 7,
kOpenChannelReceiverInvalidPort = 8,
kOpenChannelDispatchNoReceivers = 9,
// The DispatchConnect IPC was acknowledged back to the browser.
kOpenChannelAcked = 10,
// The DispatchConnect IPC was not acknowledged because the remote
// (renderer) was disconnected.
kOpenChannelPortDisconnectedBeforeResponse = 11,
// The DispatchConnect IPC was not acknowledged because the channel closed.
kOpenChannelClosedBeforeResponse = 12,
// The channel was not opened due to one of theses issues. See enums.xml for
// more details (part 2).
kOpenChannelSourceEndpointInvalid = 13,
kOpenChannelOpenerPortInvalid = 14,
kOnOpenChannelSourceInvalid = 15,
kOnOpenChannelOpenerPortInvalid = 16,
kOnOpenChannelExtensionNotEnabled = 17,
kMaxValue = kOnOpenChannelExtensionNotEnabled,
};
class TestObserver {
public:
TestObserver();
TestObserver(const TestObserver&) = delete;
TestObserver& operator=(const TestObserver&) = delete;
virtual ~TestObserver();
// Notifies the observer when the hung detection for a message ran (but
// doesn't guarantee the the message was hung).
virtual void OnStageTimeoutRan(const base::UnguessableToken& message_id) {}
};
explicit MessageTracker(content::BrowserContext* context);
~MessageTracker() override;
// Returns the MessageTracker for the given `browser_context`.
// Note: This class has a global instance across regular and OTR contexts.
static MessageTracker* Get(content::BrowserContext* browser_context);
// Returns the KeyedServiceFactory for the MessageTracker.
static BrowserContextKeyedServiceFactory* GetFactory();
class TrackedStage {
public:
TrackedStage(std::string metric_name, mojom::ChannelType channel_type);
~TrackedStage() = default;
const std::string& metric_name() const { return metric_name_; }
const mojom::ChannelType& channel_type() const { return channel_type_; }
private:
const std::string metric_name_;
const mojom::ChannelType channel_type_;
};
// Notifies the tracker that a message is being sent to a background context.
// This starts a timer for `tracking_id` that will emit failure metrics if
// `StopTrackingMessagingStage()` is not called before within
// `stage_timeout_`.
void StartTrackingMessagingStage(const base::UnguessableToken& tracking_id,
std::string metric_name,
mojom::ChannelType channel_type);
// Notifies the tracker that a message has successfully completed the
// messaging stage and should not longer be tracked. This emits success
// metrics.
void StopTrackingMessagingStage(const base::UnguessableToken& message_id,
OpenChannelMessagePipelineResult result);
static void SetObserverForTest(TestObserver* observer);
void SetStageHungTimeoutForTest(base::TimeDelta hung_timeout) {
stage_timeout_ = hung_timeout;
}
size_t GetNumberOfTrackedStagesForTest() const {
return tracked_stages_.size();
}
private:
TrackedStage* GetTrackedStage(const base::UnguessableToken& message_id);
// When run, the tracked message with `message_id` is considered hung and
// metrics are emitted.
void OnMessageTimeoutElapsed(const base::UnguessableToken& message_id);
// The main container for the messaging metrics data.
std::map<base::UnguessableToken, TrackedStage> tracked_stages_;
raw_ptr<content::BrowserContext> context_;
// Since we can't wait forever for a message to not arrive, 30 seconds was
// chosen as an upper bound for how long until a stage is considered to
// (probably) never progress to the next stage in the messaging process.
base::TimeDelta stage_timeout_ = base::Seconds(30);
base::WeakPtrFactory<MessageTracker> weak_factory_{this};
};
} // namespace extensions
#endif // EXTENSIONS_BROWSER_MESSAGE_TRACKER_H_
|