2010-10-14 08:27:31 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-07-11 09:51:50 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* 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/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
2013-10-23 19:16:30 +02:00
|
|
|
#ifndef INCLUDED_UNOTOOLS_SECURITYOPTIONS_HXX
|
|
|
|
#define INCLUDED_UNOTOOLS_SECURITYOPTIONS_HXX
|
2007-04-11 18:34:03 +00:00
|
|
|
|
2013-11-09 15:34:19 -06:00
|
|
|
#include <unotools/unotoolsdllapi.h>
|
2007-04-11 18:34:03 +00:00
|
|
|
#include <sal/types.h>
|
|
|
|
#include <osl/mutex.hxx>
|
|
|
|
#include <com/sun/star/uno/Sequence.h>
|
|
|
|
#include <rtl/ustring.hxx>
|
2009-10-06 07:38:24 +02:00
|
|
|
#include <unotools/options.hxx>
|
2016-06-15 19:42:05 +02:00
|
|
|
#include <memory>
|
2007-04-11 18:34:03 +00:00
|
|
|
|
2014-02-25 19:06:16 +01:00
|
|
|
/*-************************************************************************************************************
|
2007-04-11 18:34:03 +00:00
|
|
|
@short forward declaration to our private date container implementation
|
|
|
|
@descr We use these class as internal member to support small memory requirements.
|
2013-12-20 11:25:37 +01:00
|
|
|
You can create the container if it is necessary. The class which use these mechanism
|
2007-04-11 18:34:03 +00:00
|
|
|
is faster and smaller then a complete implementation!
|
|
|
|
*//*-*************************************************************************************************************/
|
|
|
|
|
|
|
|
class SvtSecurityOptions_Impl;
|
|
|
|
|
2014-02-25 19:06:16 +01:00
|
|
|
/*-************************************************************************************************************
|
2007-04-11 18:34:03 +00:00
|
|
|
@descr These values present modes to handle StarOffice basic scripts.
|
2013-04-15 04:49:39 +02:00
|
|
|
see GetBasicMode/SetBasicMode() for further information
|
2007-04-11 18:34:03 +00:00
|
|
|
*//*-*************************************************************************************************************/
|
|
|
|
|
|
|
|
enum EBasicSecurityMode
|
|
|
|
{
|
|
|
|
eNEVER_EXECUTE = 0,
|
|
|
|
eFROM_LIST = 1,
|
|
|
|
eALWAYS_EXECUTE = 2
|
|
|
|
};
|
|
|
|
|
2014-02-25 19:06:16 +01:00
|
|
|
/*-************************************************************************************************************
|
2013-02-28 18:11:24 -04:00
|
|
|
@short collect information about security features
|
2007-04-11 18:34:03 +00:00
|
|
|
@ATTENTION This class is partially threadsafe.
|
|
|
|
|
|
|
|
@devstatus ready to use
|
|
|
|
*//*-*************************************************************************************************************/
|
|
|
|
|
2015-12-10 13:30:01 +01:00
|
|
|
class SAL_WARN_UNUSED UNOTOOLS_DLLPUBLIC SvtSecurityOptions : public utl::detail::Options
|
2007-04-11 18:34:03 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
enum EOption
|
|
|
|
{
|
|
|
|
E_SECUREURLS,
|
2013-09-26 11:44:54 +02:00
|
|
|
E_BASICMODE, // xmlsec05 deprecated
|
|
|
|
E_EXECUTEPLUGINS, // xmlsec05 deprecated
|
|
|
|
E_WARNING, // xmlsec05 deprecated
|
|
|
|
E_CONFIRMATION, // xmlsec05 deprecated
|
2007-04-11 18:34:03 +00:00
|
|
|
E_DOCWARN_SAVEORSEND,
|
|
|
|
E_DOCWARN_SIGNING,
|
|
|
|
E_DOCWARN_PRINT,
|
|
|
|
E_DOCWARN_CREATEPDF,
|
|
|
|
E_DOCWARN_REMOVEPERSONALINFO,
|
|
|
|
E_DOCWARN_RECOMMENDPASSWORD,
|
|
|
|
E_MACRO_SECLEVEL,
|
|
|
|
E_MACRO_TRUSTEDAUTHORS,
|
2007-11-26 15:43:55 +00:00
|
|
|
E_MACRO_DISABLE,
|
2013-11-11 17:44:57 +01:00
|
|
|
E_CTRLCLICK_HYPERLINK,
|
|
|
|
E_BLOCKUNTRUSTEDREFERERLINKS
|
2007-04-11 18:34:03 +00:00
|
|
|
};
|
|
|
|
|
2015-10-23 10:32:47 +02:00
|
|
|
typedef css::uno::Sequence< OUString > Certificate;
|
2007-04-11 18:34:03 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
// MT: Doesn't work for sequence...
|
|
|
|
struct Certificate
|
|
|
|
{
|
2013-04-07 12:06:47 +02:00
|
|
|
OUString SubjectName;
|
|
|
|
OUString SerialNumber;
|
|
|
|
OUString RawData;
|
2007-04-11 18:34:03 +00:00
|
|
|
};
|
|
|
|
*/
|
|
|
|
|
|
|
|
public:
|
|
|
|
SvtSecurityOptions();
|
|
|
|
virtual ~SvtSecurityOptions();
|
|
|
|
|
2014-02-25 19:06:16 +01:00
|
|
|
/*-****************************************************************************************************
|
2007-04-11 18:34:03 +00:00
|
|
|
@short returns readonly state
|
|
|
|
@descr It can be called to get information about the readonly state of a provided item.
|
|
|
|
@param "eOption", specify, which item is queried
|
2013-02-13 18:25:22 +04:00
|
|
|
@return <TRUE/> if item is readonly; <FALSE/> otherwise
|
2007-04-11 18:34:03 +00:00
|
|
|
|
2013-09-26 11:44:54 +02:00
|
|
|
@onerror No error should occur!
|
2007-04-11 18:34:03 +00:00
|
|
|
*//*-*****************************************************************************************************/
|
|
|
|
|
2014-04-06 19:48:16 +03:00
|
|
|
bool IsReadOnly( EOption eOption ) const;
|
2007-04-11 18:34:03 +00:00
|
|
|
|
2014-02-25 19:06:16 +01:00
|
|
|
/*-****************************************************************************************************
|
2007-04-11 18:34:03 +00:00
|
|
|
@short interface methods to get and set value of config key "org.openoffice.Office.Common/Security/Scripting/SecureURL"
|
|
|
|
@descr These value displays the list of all trustworthy URLs.
|
|
|
|
zB.: file:/ => All scripts from the local file system including a LAN;
|
|
|
|
private:explorer => Scripts from the Explorer;
|
|
|
|
private:help => Scripts in the help system;
|
|
|
|
private:newmenu => Scripts that are executed by the commands File-New and AutoPilot;
|
|
|
|
private:schedule => Scripts of the scheduler;
|
|
|
|
private:searchfolder => Scripts of the searchfolder;
|
|
|
|
private:user => Scripts that are entered in the URL field.
|
|
|
|
@param "seqURLList", new values to set it in configuration.
|
|
|
|
@return The values which represent current state of internal variable.
|
|
|
|
|
2013-09-26 11:44:54 +02:00
|
|
|
@onerror No error should occur!
|
2007-04-11 18:34:03 +00:00
|
|
|
*//*-*****************************************************************************************************/
|
|
|
|
|
2015-10-23 10:32:47 +02:00
|
|
|
css::uno::Sequence< OUString > GetSecureURLs( ) const;
|
|
|
|
void SetSecureURLs( const css::uno::Sequence< OUString >& seqURLList );
|
2007-04-11 18:34:03 +00:00
|
|
|
|
2014-02-25 19:06:16 +01:00
|
|
|
/*-****************************************************************************************************
|
2007-04-11 18:34:03 +00:00
|
|
|
@short interface methods to get and set value of config key "org.openoffice.Office.Common/Security/Scripting/StarOfficeBasic"
|
|
|
|
@descr These value determines how StarOffice Basic scripts should be handled.
|
|
|
|
It exist 3 different modes:
|
|
|
|
0 = never execute
|
|
|
|
1 = from list
|
|
|
|
2 = always execute
|
|
|
|
|
|
|
|
@ATTENTION These methods don't check for valid or invalid values!
|
|
|
|
Our configuration server can do it ... but these implementation don't get any notifications
|
|
|
|
about wrong commits ...!
|
|
|
|
=> If you set an invalid value - nothing will be changed. The information will lost.
|
|
|
|
|
|
|
|
@seealso enum EBasicSecurityMode
|
|
|
|
|
|
|
|
@param "eMode" to set new mode ... Value must defined as an enum of type EBasicSecurityMode!
|
|
|
|
@return An enum value, which present current mode.
|
|
|
|
|
2013-09-26 11:44:54 +02:00
|
|
|
@onerror No error should occur!
|
2007-04-11 18:34:03 +00:00
|
|
|
*//*-*****************************************************************************************************/
|
|
|
|
|
2014-04-06 19:48:16 +03:00
|
|
|
sal_Int32 GetMacroSecurityLevel ( ) const;
|
|
|
|
void SetMacroSecurityLevel ( sal_Int32 _nLevel );
|
2007-04-11 18:34:03 +00:00
|
|
|
|
2014-04-06 19:48:16 +03:00
|
|
|
bool IsMacroDisabled ( ) const;
|
2007-04-11 18:34:03 +00:00
|
|
|
|
2013-11-08 17:25:45 +01:00
|
|
|
/**
|
|
|
|
Check whether the given uri is either no dangerous macro-execution
|
|
|
|
URI at all or else the given referer is a trusted source.
|
|
|
|
*/
|
|
|
|
bool isSecureMacroUri(OUString const & uri, OUString const & referer)
|
|
|
|
const;
|
2007-04-11 18:34:03 +00:00
|
|
|
|
2013-11-11 17:44:57 +01:00
|
|
|
/**
|
|
|
|
Check whether the given referer URI is untrusted, and links
|
|
|
|
originating from it should not be accessed.
|
|
|
|
*/
|
|
|
|
bool isUntrustedReferer(OUString const & referer) const;
|
|
|
|
|
2013-11-09 16:24:56 +01:00
|
|
|
/**
|
|
|
|
Check whether the given uri is a trusted location.
|
|
|
|
*/
|
|
|
|
bool isTrustedLocationUri(OUString const & uri) const;
|
|
|
|
|
2015-06-23 08:26:36 +02:00
|
|
|
bool isTrustedLocationUriForUpdatingLinks(OUString const & uri) const;
|
|
|
|
|
2015-10-23 10:32:47 +02:00
|
|
|
css::uno::Sequence< Certificate > GetTrustedAuthors ( ) const;
|
|
|
|
void SetTrustedAuthors ( const css::uno::Sequence< Certificate >& rAuthors );
|
2007-04-11 18:34:03 +00:00
|
|
|
|
|
|
|
// for bool options only!
|
2014-04-06 19:48:16 +03:00
|
|
|
bool IsOptionSet ( EOption eOption ) const;
|
2016-01-15 10:08:02 +02:00
|
|
|
void SetOption ( EOption eOption, bool bValue );
|
2014-04-06 19:48:16 +03:00
|
|
|
bool IsOptionEnabled ( EOption eOption ) const;
|
2007-04-11 18:34:03 +00:00
|
|
|
|
2013-09-26 11:44:54 +02:00
|
|
|
// xmlsec05 deprecated methods
|
2014-02-19 12:30:34 +01:00
|
|
|
bool IsExecutePlugins() const;
|
|
|
|
void SetExecutePlugins( bool bSet );
|
2014-04-06 19:48:16 +03:00
|
|
|
EBasicSecurityMode GetBasicMode( ) const;
|
|
|
|
void SetBasicMode( EBasicSecurityMode eMode );
|
2014-02-19 12:30:34 +01:00
|
|
|
bool IsWarningEnabled() const;
|
|
|
|
void SetWarningEnabled( bool bSet );
|
|
|
|
bool IsConfirmationEnabled() const;
|
|
|
|
void SetConfirmationEnabled( bool bSet );
|
2007-04-11 18:34:03 +00:00
|
|
|
|
|
|
|
// private methods
|
2014-02-25 19:06:16 +01:00
|
|
|
|
2007-04-11 18:34:03 +00:00
|
|
|
private:
|
|
|
|
|
2014-02-25 19:06:16 +01:00
|
|
|
/*-****************************************************************************************************
|
2007-04-11 18:34:03 +00:00
|
|
|
@short return a reference to a static mutex
|
|
|
|
@descr These class is partially threadsafe (for de-/initialization only).
|
|
|
|
All access methods are'nt safe!
|
|
|
|
We create a static mutex only for one ime and use at different times.
|
|
|
|
@return A reference to a static mutex member.
|
|
|
|
*//*-*****************************************************************************************************/
|
|
|
|
|
2009-10-06 07:38:24 +02:00
|
|
|
UNOTOOLS_DLLPRIVATE static ::osl::Mutex& GetInitMutex();
|
2007-04-11 18:34:03 +00:00
|
|
|
|
|
|
|
// private member
|
2014-02-25 19:06:16 +01:00
|
|
|
|
2007-04-11 18:34:03 +00:00
|
|
|
private:
|
2016-06-15 19:42:05 +02:00
|
|
|
std::shared_ptr<SvtSecurityOptions_Impl> m_pImpl;
|
2007-04-11 18:34:03 +00:00
|
|
|
|
|
|
|
}; // class SvtSecurityOptions
|
|
|
|
|
2013-10-23 19:16:30 +02:00
|
|
|
#endif // INCLUDED_UNOTOOLS_SECURITYOPTIONS_HXX
|
2010-10-14 08:27:31 +02:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|