SecurityManager.hpp
上传用户:zhuqijet
上传日期:2013-06-25
资源大小:10074k
文件大小:7k
源码类别:

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 2003 The Apache Software Foundation.  All rights
  5.  * reserved.
  6.  *
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions
  9.  * are met:
  10.  *
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions and the following disclaimer.
  13.  *
  14.  * 2. Redistributions in binary form must reproduce the above copyright
  15.  *    notice, this list of conditions and the following disclaimer in
  16.  *    the documentation and/or other materials provided with the
  17.  *    distribution.
  18.  *
  19.  * 3. The end-user documentation included with the redistribution,
  20.  *    if any, must include the following acknowledgment:
  21.  *       "This product includes software developed by the
  22.  *        Apache Software Foundation (http://www.apache.org/)."
  23.  *    Alternately, this acknowledgment may appear in the software itself,
  24.  *    if and wherever such third-party acknowledgments normally appear.
  25.  *
  26.  * 4. The names "Xerces" and "Apache Software Foundation" must
  27.  *    not be used to endorse or promote products derived from this
  28.  *    software without prior written permission. For written
  29.  *    permission, please contact apache@apache.org.
  30.  *
  31.  * 5. Products derived from this software may not be called "Apache",
  32.  *    nor may "Apache" appear in their name, without prior written
  33.  *    permission of the Apache Software Foundation.
  34.  *
  35.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  36.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  37.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  38.  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  39.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  40.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  41.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  42.  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  43.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  44.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  45.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  46.  * SUCH DAMAGE.
  47.  * ====================================================================
  48.  *
  49.  * This software consists of voluntary contributions made by many
  50.  * individuals on behalf of the Apache Software Foundation, and was
  51.  * originally based on software copyright (c) 1999, International
  52.  * Business Machines, Inc., http://www.ibm.com .  For more information
  53.  * on the Apache Software Foundation, please see
  54.  * <http://www.apache.org/>.
  55.  */
  56. /*
  57.  * $Log: SecurityManager.hpp,v $
  58.  * Revision 1.2  2003/04/22 12:53:38  neilg
  59.  * change const static member to an enum to make MSVC happy
  60.  *
  61.  * change ENTITY_EXPANSION_LIMIT from a static const data member to an enum
  62.  * 
  63.  * Revision 1.1  2003/04/17 21:58:49  neilg
  64.  * Adding a new property,
  65.  * http://apache.org/xml/properties/security-manager, with
  66.  * appropriate getSecurityManager/setSecurityManager methods on DOM
  67.  * and SAX parsers.  Also adding a new SecurityManager class.
  68.  *
  69.  * The purpose of these modifications is to permit applications a
  70.  * means to have the parser reject documents whose processing would
  71.  * otherwise consume large amounts of system resources.  Malicious
  72.  * use of such documents could be used to launch a denial-of-service
  73.  * attack against a system running the parser.  Initially, the
  74.  * SecurityManager only knows about attacks that can result from
  75.  * exponential entity expansion; this is the only known attack that
  76.  * involves processing a single XML document.  Other, simlar attacks
  77.  * can be launched if arbitrary schemas may be parsed; there already
  78.  * exist means (via use of the EntityResolver interface) by which
  79.  * applications can deny processing of untrusted schemas.  In future,
  80.  * the SecurityManager will be expanded to take these other exploits
  81.  * into account.
  82.  *
  83.  * Initial checkin of SecurityManager
  84.  *
  85.  * $Id: SecurityManager.hpp,v 1.2 2003/04/22 12:53:38 neilg Exp $
  86.  *
  87.  */
  88. #ifndef SECURITYMANAGER_HPP
  89. #define SECURITYMANAGER_HPP
  90. #include <xercesc/util/XercesDefs.hpp>
  91. XERCES_CPP_NAMESPACE_BEGIN
  92. /**
  93.   * Allow application to force the parser to behave in a security-conscious
  94.   * way.
  95.   *
  96.   * <p> There are cases in which an XML- or XmL-schema-
  97.   * conformant processor can be presented with documents the
  98.   * processing of which can involve the consumption of
  99.   * prohibitive amounts of system resources.  Applications can
  100.   * attach instances of this class to parsers that they've
  101.   * created, via the
  102.   * http://apache.org/xml/properties/security-manager property.  
  103.   * </p>
  104.   *
  105.   * <p> Defaults will be provided for all known security holes.
  106.   * Setter methods will be provided on this class to ensure that
  107.   * an application can customize each limit as it chooses.
  108.   * Components that are vulnerable to any given hole need to be
  109.   * written to act appropriately when an instance of this class
  110.   * has been set on the calling parser.
  111.   * </p>
  112.   */
  113. class XMLUTIL_EXPORT SecurityManager
  114. {
  115. public:
  116.     enum { ENTITY_EXPANSION_LIMIT = 50000};
  117.     /** @name default Constructors */
  118.     //@{
  119.     /** Default constructor */
  120.     SecurityManager()
  121.     {
  122.         fEntityExpansionLimit = ENTITY_EXPANSION_LIMIT; 
  123.     }
  124.     /** Destructor */
  125.     virtual ~SecurityManager(){};   
  126.     //@}
  127.     /** @name The Security Manager */
  128.     //@{
  129.    /**
  130.     * An application should call this method when it wishes to specify a particular
  131.     * limit to the number of entity expansions the parser will permit in a
  132.     * particular document.  The default behaviour should allow the parser
  133.     * to validate nearly all XML non-malicious XML documents; if an
  134.     * application knows that it is operating in a domain where entities are
  135.     * uncommon, for instance, it may wish to provide a limit lower than the
  136.     * parser's default.
  137.     *
  138.     * @param newLimit  the new entity expansion limit
  139.     *
  140.     */
  141.     virtual void setEntityExpansionLimit(unsigned int newLimit) 
  142.     {
  143.         fEntityExpansionLimit = newLimit;
  144.     }
  145.    /**
  146.     * Permits the application or a parser component to query the current
  147.     * limit for entity expansions.
  148.     *
  149.     * @return   the current setting of the entity expansion limit
  150.     *
  151.     */
  152.     virtual unsigned int getEntityExpansionLimit() const
  153.     { 
  154.         return fEntityExpansionLimit;
  155.     }
  156.     //@}
  157. protected:
  158.     unsigned int fEntityExpansionLimit;
  159. private:
  160.     /* Unimplemented Constructors and operators */
  161.     /* Copy constructor */
  162.     SecurityManager(const SecurityManager&);
  163.     
  164.     /** Assignment operator */
  165.     SecurityManager& operator=(const SecurityManager&);
  166. };
  167. XERCES_CPP_NAMESPACE_END
  168. #endif