Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / html / parser / XSSAuditor.h
1 /*
2  * Copyright (C) 2011 Adam Barth. All Rights Reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
17  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  */
25
26 #ifndef XSSAuditor_h
27 #define XSSAuditor_h
28
29 #include "core/html/parser/HTMLToken.h"
30 #include "platform/network/HTTPParsers.h"
31 #include "platform/text/SuffixTree.h"
32 #include "platform/weborigin/KURL.h"
33 #include "wtf/PassOwnPtr.h"
34 #include "wtf/text/TextEncoding.h"
35
36 namespace blink {
37
38 class Document;
39 class HTMLSourceTracker;
40 class XSSInfo;
41 class XSSAuditorDelegate;
42
43 struct FilterTokenRequest {
44     FilterTokenRequest(HTMLToken& token, HTMLSourceTracker& sourceTracker, bool shouldAllowCDATA)
45         : token(token)
46         , sourceTracker(sourceTracker)
47         , shouldAllowCDATA(shouldAllowCDATA)
48     { }
49
50     HTMLToken& token;
51     HTMLSourceTracker& sourceTracker;
52     bool shouldAllowCDATA;
53 };
54
55 class XSSAuditor {
56     WTF_MAKE_NONCOPYABLE(XSSAuditor);
57 public:
58     XSSAuditor();
59
60     void init(Document*, XSSAuditorDelegate*);
61     void initForFragment();
62
63     PassOwnPtr<XSSInfo> filterToken(const FilterTokenRequest&);
64     bool isSafeToSendToAnotherThread() const;
65
66     void setEncoding(const WTF::TextEncoding&);
67
68 private:
69     static const size_t kMaximumFragmentLengthTarget = 100;
70
71     enum State {
72         Uninitialized,
73         FilteringTokens,
74         PermittingAdjacentCharacterTokens,
75         SuppressingAdjacentCharacterTokens
76     };
77
78     enum TruncationKind {
79         NoTruncation,
80         NormalAttributeTruncation,
81         SrcLikeAttributeTruncation,
82         ScriptLikeAttributeTruncation
83     };
84
85     enum HrefRestriction {
86         ProhibitSameOriginHref,
87         AllowSameOriginHref
88     };
89
90     bool filterStartToken(const FilterTokenRequest&);
91     void filterEndToken(const FilterTokenRequest&);
92     bool filterCharacterToken(const FilterTokenRequest&);
93     bool filterScriptToken(const FilterTokenRequest&);
94     bool filterObjectToken(const FilterTokenRequest&);
95     bool filterParamToken(const FilterTokenRequest&);
96     bool filterEmbedToken(const FilterTokenRequest&);
97     bool filterAppletToken(const FilterTokenRequest&);
98     bool filterFrameToken(const FilterTokenRequest&);
99     bool filterMetaToken(const FilterTokenRequest&);
100     bool filterBaseToken(const FilterTokenRequest&);
101     bool filterFormToken(const FilterTokenRequest&);
102     bool filterInputToken(const FilterTokenRequest&);
103     bool filterButtonToken(const FilterTokenRequest&);
104     bool filterLinkToken(const FilterTokenRequest&);
105
106     bool eraseDangerousAttributesIfInjected(const FilterTokenRequest&);
107     bool eraseAttributeIfInjected(const FilterTokenRequest&, const QualifiedName&, const String& replacementValue = String(), TruncationKind = NormalAttributeTruncation, HrefRestriction = ProhibitSameOriginHref);
108
109     String canonicalizedSnippetForTagName(const FilterTokenRequest&);
110     String canonicalizedSnippetForJavaScript(const FilterTokenRequest&);
111     String nameFromAttribute(const FilterTokenRequest&, const HTMLToken::Attribute&);
112     String snippetFromAttribute(const FilterTokenRequest&, const HTMLToken::Attribute&);
113     String canonicalize(String, TruncationKind);
114
115     bool isContainedInRequest(const String&);
116     bool isLikelySafeResource(const String& url);
117
118     KURL m_documentURL;
119     bool m_isEnabled;
120
121     ReflectedXSSDisposition m_xssProtection;
122     bool m_didSendValidCSPHeader;
123     bool m_didSendValidXSSProtectionHeader;
124
125     String m_decodedURL;
126     String m_decodedHTTPBody;
127     String m_httpBodyAsString;
128     OwnPtr<SuffixTree<ASCIICodebook>> m_decodedHTTPBodySuffixTree;
129
130     State m_state;
131     bool m_scriptTagFoundInRequest;
132     unsigned m_scriptTagNestingLevel;
133     WTF::TextEncoding m_encoding;
134 };
135
136 }
137
138 #endif