Home | History | Annotate | Download | only in parser
      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 "core/platform/network/HTTPParsers.h"
     31 #include "core/platform/text/SuffixTree.h"
     32 #include "weborigin/KURL.h"
     33 #include "wtf/PassOwnPtr.h"
     34 #include "wtf/text/TextEncoding.h"
     35 
     36 namespace WebCore {
     37 
     38 class Document;
     39 class HTMLDocumentParser;
     40 class HTMLSourceTracker;
     41 class XSSInfo;
     42 class XSSAuditorDelegate;
     43 
     44 struct FilterTokenRequest {
     45     FilterTokenRequest(HTMLToken& token, HTMLSourceTracker& sourceTracker, bool shouldAllowCDATA)
     46         : token(token)
     47         , sourceTracker(sourceTracker)
     48         , shouldAllowCDATA(shouldAllowCDATA)
     49     { }
     50 
     51     HTMLToken& token;
     52     HTMLSourceTracker& sourceTracker;
     53     bool shouldAllowCDATA;
     54 };
     55 
     56 class XSSAuditor {
     57     WTF_MAKE_NONCOPYABLE(XSSAuditor);
     58 public:
     59     XSSAuditor();
     60 
     61     void init(Document*, XSSAuditorDelegate*);
     62     void initForFragment();
     63 
     64     PassOwnPtr<XSSInfo> filterToken(const FilterTokenRequest&);
     65     bool isSafeToSendToAnotherThread() const;
     66 
     67 private:
     68     static const size_t kMaximumFragmentLengthTarget = 100;
     69 
     70     enum State {
     71         Uninitialized,
     72         Initialized
     73     };
     74 
     75     enum AttributeKind {
     76         NormalAttribute,
     77         SrcLikeAttribute,
     78         ScriptLikeAttribute
     79     };
     80 
     81     bool filterStartToken(const FilterTokenRequest&);
     82     void filterEndToken(const FilterTokenRequest&);
     83     bool filterCharacterToken(const FilterTokenRequest&);
     84     bool filterScriptToken(const FilterTokenRequest&);
     85     bool filterObjectToken(const FilterTokenRequest&);
     86     bool filterParamToken(const FilterTokenRequest&);
     87     bool filterEmbedToken(const FilterTokenRequest&);
     88     bool filterAppletToken(const FilterTokenRequest&);
     89     bool filterIframeToken(const FilterTokenRequest&);
     90     bool filterMetaToken(const FilterTokenRequest&);
     91     bool filterBaseToken(const FilterTokenRequest&);
     92     bool filterFormToken(const FilterTokenRequest&);
     93     bool filterInputToken(const FilterTokenRequest&);
     94     bool filterButtonToken(const FilterTokenRequest&);
     95 
     96     bool eraseDangerousAttributesIfInjected(const FilterTokenRequest&);
     97     bool eraseAttributeIfInjected(const FilterTokenRequest&, const QualifiedName&, const String& replacementValue = String(), AttributeKind treatment = NormalAttribute);
     98 
     99     String decodedSnippetForToken(const HTMLToken&);
    100     String decodedSnippetForName(const FilterTokenRequest&);
    101     String decodedSnippetForAttribute(const FilterTokenRequest&, const HTMLToken::Attribute&, AttributeKind treatment = NormalAttribute);
    102     String decodedSnippetForJavaScript(const FilterTokenRequest&);
    103 
    104     bool isContainedInRequest(const String&);
    105     bool isLikelySafeResource(const String& url);
    106 
    107     KURL m_documentURL;
    108     bool m_isEnabled;
    109 
    110     ContentSecurityPolicy::ReflectedXSSDisposition m_xssProtection;
    111     bool m_didSendValidCSPHeader;
    112     bool m_didSendValidXSSProtectionHeader;
    113 
    114     String m_decodedURL;
    115     String m_decodedHTTPBody;
    116     OwnPtr<SuffixTree<ASCIICodebook> > m_decodedHTTPBodySuffixTree;
    117 
    118     State m_state;
    119     bool m_scriptTagFoundInRequest;
    120     unsigned m_scriptTagNestingLevel;
    121     WTF::TextEncoding m_encoding;
    122 };
    123 
    124 }
    125 
    126 #endif
    127