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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "BindingDeclarations.h"
#include "mozilla/dom/BindingUtils.h"
#include "mozilla/dom/DocumentFragment.h"
#include "mozilla/dom/SanitizerBinding.h"
#include "nsContentUtils.h"
#include "nsGenericHTMLElement.h"
#include "nsTreeSanitizer.h"
#include "Sanitizer.h"
namespace mozilla {
namespace dom {
NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE(Sanitizer, mGlobal)
NS_IMPL_CYCLE_COLLECTING_ADDREF(Sanitizer)
NS_IMPL_CYCLE_COLLECTING_RELEASE(Sanitizer)
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(Sanitizer)
NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
NS_INTERFACE_MAP_ENTRY(nsISupports)
NS_INTERFACE_MAP_END
JSObject* Sanitizer::WrapObject(JSContext* aCx,
JS::Handle<JSObject*> aGivenProto) {
return Sanitizer_Binding::Wrap(aCx, this, aGivenProto);
}
/* static */
already_AddRefed<Sanitizer> Sanitizer::Constructor(
const GlobalObject& aGlobal, const SanitizerOptions& aOptions,
ErrorResult& aRv) {
// Note: Later, aOptions will be interpreted and stored as a member.
// We'll just ignore it for now.
nsCOMPtr<nsIGlobalObject> global = do_QueryInterface(aGlobal.GetAsSupports());
RefPtr<Sanitizer> sanitizer = new Sanitizer(global);
AutoTArray<nsString, 1> params = {};
sanitizer->LogLocalizedString("SanitizerOptionsDiscarded", params,
nsIScriptError::infoFlag);
return sanitizer.forget();
}
/* static */
already_AddRefed<DocumentFragment> Sanitizer::InputToNewFragment(
const Optional<mozilla::dom::StringOrDocumentFragmentOrDocument>& aInput,
ErrorResult& aRv) {
// turns an StringOrDocumentFragmentOrDocument into a DocumentFragment for
// internal use with nsTreeSanitizer
nsCOMPtr<nsPIDOMWindowInner> window = do_QueryInterface(mGlobal);
if (!window || !window->GetDoc()) {
// FIXME: Should we throw another exception?
aRv.Throw(NS_ERROR_FAILURE);
return nullptr;
}
if (!aInput.WasPassed()) {
AutoTArray<nsString, 1> params = {};
LogLocalizedString("SanitizerRcvdNoInput", params,
nsIScriptError::warningFlag);
RefPtr<DocumentFragment> emptyFragment =
window->GetDoc()->CreateDocumentFragment();
return emptyFragment.forget();
}
// We need to create a new docfragment based on the input
// and can't use a live document (possibly with mutation observershandlers)
nsAutoString innerHTML;
if (aInput.Value().IsDocumentFragment()) {
RefPtr<DocumentFragment> inFragment =
&aInput.Value().GetAsDocumentFragment();
inFragment->GetInnerHTML(innerHTML);
} else if (aInput.Value().IsString()) {
innerHTML.Assign(aInput.Value().GetAsString());
} else if (aInput.Value().IsDocument()) {
RefPtr<Document> doc = &aInput.Value().GetAsDocument();
nsCOMPtr<Element> docElement = doc->GetDocumentElement();
docElement->GetInnerHTML(innerHTML, IgnoreErrors());
}
if (innerHTML.IsEmpty()) {
AutoTArray<nsString, 1> params = {};
LogLocalizedString("SanitizerRcvdNoInput", params,
nsIScriptError::warningFlag);
RefPtr<DocumentFragment> emptyFragment =
window->GetDoc()->CreateDocumentFragment();
return emptyFragment.forget();
}
// We don't have a context element yet. let's create a mock HTML body element
RefPtr<mozilla::dom::NodeInfo> info =
window->GetDoc()->NodeInfoManager()->GetNodeInfo(
nsGkAtoms::body, nullptr, kNameSpaceID_XHTML, nsINode::ELEMENT_NODE);
nsCOMPtr<nsINode> context = NS_NewHTMLBodyElement(
info.forget(), mozilla::dom::FromParser::FROM_PARSER_FRAGMENT);
RefPtr<DocumentFragment> fragment = nsContentUtils::CreateContextualFragment(
context, innerHTML, true /* aPreventScriptExecution */, aRv);
if (aRv.Failed()) {
aRv.Throw(NS_ERROR_FAILURE);
return nullptr;
}
return fragment.forget();
}
already_AddRefed<DocumentFragment> Sanitizer::Sanitize(
const Optional<mozilla::dom::StringOrDocumentFragmentOrDocument>& aInput,
ErrorResult& aRv) {
nsCOMPtr<nsPIDOMWindowInner> window = do_QueryInterface(mGlobal);
if (!window || !window->GetDoc()) {
aRv.Throw(NS_ERROR_FAILURE);
return nullptr;
}
if (!aInput.WasPassed()) {
AutoTArray<nsString, 1> params = {};
LogLocalizedString("SanitizerRcvdNoInput", params,
nsIScriptError::warningFlag);
RefPtr<DocumentFragment> fragment =
window->GetDoc()->CreateDocumentFragment();
return fragment.forget();
}
ErrorResult error;
RefPtr<DocumentFragment> fragment =
Sanitizer::InputToNewFragment(aInput, error);
if (error.Failed()) {
return fragment.forget();
}
nsTreeSanitizer treeSanitizer(mSanitizationFlags);
treeSanitizer.Sanitize(fragment);
return fragment.forget();
}
void Sanitizer::SanitizeToString(
const Optional<StringOrDocumentFragmentOrDocument>& aInput,
nsAString& outSanitized, ErrorResult& aRv) {
outSanitized.Truncate();
if (!aInput.WasPassed()) {
AutoTArray<nsString, 1> params = {};
LogLocalizedString("SanitizerRcvdNoInput", params,
nsIScriptError::warningFlag);
return;
}
ErrorResult error;
RefPtr<DocumentFragment> fragment =
Sanitizer::InputToNewFragment(aInput, error);
if (error.Failed()) {
return;
}
nsTreeSanitizer treeSanitizer(mSanitizationFlags);
treeSanitizer.Sanitize(fragment);
fragment->GetInnerHTML(outSanitized);
}
/* ------ Logging ------ */
void Sanitizer::LogLocalizedString(const char* aName,
const nsTArray<nsString>& aParams,
uint32_t aFlags) {
uint64_t innerWindowID = 0;
bool isPrivateBrowsing = true;
nsCOMPtr<nsPIDOMWindowInner> window = do_QueryInterface(mGlobal);
if (window && window->GetDoc()) {
auto* doc = window->GetDoc();
innerWindowID = doc->InnerWindowID();
isPrivateBrowsing = nsContentUtils::IsInPrivateBrowsing(doc);
}
nsAutoString logMsg;
nsContentUtils::FormatLocalizedString(nsContentUtils::eSECURITY_PROPERTIES,
aName, aParams, logMsg);
LogMessage(logMsg, aFlags, innerWindowID, isPrivateBrowsing);
}
/* static */
void Sanitizer::LogMessage(const nsAString& aMessage, uint32_t aFlags,
uint64_t aInnerWindowID, bool aFromPrivateWindow) {
// Prepending 'Sanitizer' to the outgoing console message
nsString message;
message.AppendLiteral(u"Sanitizer: ");
message.Append(aMessage);
// Allow for easy distinction in devtools code.
nsCString category("Sanitizer");
if (aInnerWindowID > 0) {
// Send to content console
nsContentUtils::ReportToConsoleByWindowID(message, aFlags, category,
aInnerWindowID);
} else {
// Send to browser console
nsContentUtils::LogSimpleConsoleError(
message, category.get(), aFromPrivateWindow,
true /* from chrome context */, aFlags);
}
}
} // namespace dom
} // namespace mozilla
|