Files
libreoffice/stoc/source/security/file_policy.cxx
Noel Grandin 1a18cafecb loplugin:staticmethods
Change-Id: I3ae555fd9f0dc3c11ea301ee1cb2c799fbec820d
2015-04-02 09:38:29 +02:00

528 lines
14 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* 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 .
*/
#include <osl/diagnose.h>
#include <osl/file.h>
#include <rtl/byteseq.hxx>
#include <rtl/ref.hxx>
#include <rtl/ustrbuf.hxx>
#include <cppuhelper/access_control.hxx>
#include <cppuhelper/compbase2.hxx>
#include <cppuhelper/implementationentry.hxx>
#include <cppuhelper/supportsservice.hxx>
#include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/security/XAccessController.hpp>
#include <com/sun/star/security/XPolicy.hpp>
#include <com/sun/star/security/AllPermission.hpp>
#include <com/sun/star/security/RuntimePermission.hpp>
#include <com/sun/star/io/FilePermission.hpp>
#include <com/sun/star/connection/SocketPermission.hpp>
#include <unordered_map>
#define IMPL_NAME "com.sun.star.security.comp.stoc.FilePolicy"
using namespace ::osl;
using namespace ::cppu;
using namespace ::com::sun::star;
using namespace css::uno;
namespace {
struct MutexHolder
{
Mutex m_mutex;
};
typedef WeakComponentImplHelper2< security::XPolicy, lang::XServiceInfo > t_helper;
class FilePolicy
: public MutexHolder
, public t_helper
{
Reference< XComponentContext > m_xComponentContext;
AccessControl m_ac;
Sequence< Any > m_defaultPermissions;
typedef std::unordered_map< OUString, Sequence< Any >, OUStringHash > t_permissions;
t_permissions m_userPermissions;
bool m_init;
protected:
virtual void SAL_CALL disposing() SAL_OVERRIDE;
public:
FilePolicy( Reference< XComponentContext > const & xComponentContext );
virtual ~FilePolicy();
// XPolicy impl
virtual Sequence< Any > SAL_CALL getPermissions(
OUString const & userId )
throw (RuntimeException, std::exception) SAL_OVERRIDE;
virtual Sequence< Any > SAL_CALL getDefaultPermissions()
throw (RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL refresh()
throw (RuntimeException, std::exception) SAL_OVERRIDE;
// XServiceInfo impl
virtual OUString SAL_CALL getImplementationName()
throw (RuntimeException, std::exception) SAL_OVERRIDE;
virtual sal_Bool SAL_CALL supportsService( OUString const & serviceName )
throw (RuntimeException, std::exception) SAL_OVERRIDE;
virtual Sequence< OUString > SAL_CALL getSupportedServiceNames()
throw (RuntimeException, std::exception) SAL_OVERRIDE;
};
FilePolicy::FilePolicy( Reference< XComponentContext > const & xComponentContext )
: t_helper( m_mutex )
, m_xComponentContext( xComponentContext )
, m_ac( xComponentContext )
, m_init( false )
{}
FilePolicy::~FilePolicy()
{}
void FilePolicy::disposing()
{
m_userPermissions.clear();
m_defaultPermissions = Sequence< Any >();
m_xComponentContext.clear();
}
Sequence< Any > FilePolicy::getPermissions(
OUString const & userId )
throw (RuntimeException, std::exception)
{
if (! m_init)
{
refresh();
m_init = true;
}
MutexGuard guard( m_mutex );
t_permissions::iterator iFind( m_userPermissions.find( userId ) );
if (m_userPermissions.end() == iFind)
{
return Sequence< Any >();
}
else
{
return iFind->second;
}
}
Sequence< Any > FilePolicy::getDefaultPermissions()
throw (RuntimeException, std::exception)
{
if (! m_init)
{
refresh();
m_init = true;
}
MutexGuard guard( m_mutex );
return m_defaultPermissions;
}
class PolicyReader
{
OUString m_fileName;
oslFileHandle m_file;
sal_Int32 m_linepos;
rtl::ByteSequence m_line;
sal_Int32 m_pos;
sal_Unicode m_back;
sal_Unicode get();
inline void back( sal_Unicode c )
{ m_back = c; }
static inline bool isWhiteSpace( sal_Unicode c )
{ return (' ' == c || '\t' == c || '\n' == c || '\r' == c); }
void skipWhiteSpace();
static inline bool isCharToken( sal_Unicode c )
{ return (';' == c || ',' == c || '{' == c || '}' == c); }
public:
PolicyReader( OUString const & file, AccessControl & ac );
~PolicyReader();
void error( OUString const & msg );
OUString getToken();
OUString assureToken();
OUString getQuotedToken();
OUString assureQuotedToken();
void assureToken( sal_Unicode token );
};
void PolicyReader::assureToken( sal_Unicode token )
{
skipWhiteSpace();
sal_Unicode c = get();
if (c == token)
return;
OUStringBuffer buf( 16 );
buf.append( "expected >" );
buf.append( c );
buf.append( "<!" );
error( buf.makeStringAndClear() );
}
OUString PolicyReader::assureQuotedToken()
{
OUString token( getQuotedToken() );
if (token.isEmpty())
error( "unexpected end of file!" );
return token;
}
OUString PolicyReader::getQuotedToken()
{
skipWhiteSpace();
OUStringBuffer buf( 32 );
sal_Unicode c = get();
if ('\"' != c)
error( "expected quoting >\"< character!" );
c = get();
while ('\0' != c && '\"' != c)
{
buf.append( c );
c = get();
}
return buf.makeStringAndClear();
}
OUString PolicyReader::assureToken()
{
OUString token( getToken() );
if ( token.isEmpty())
error( "unexpected end of file!" );
return token;
}
OUString PolicyReader::getToken()
{
skipWhiteSpace();
sal_Unicode c = get();
if (isCharToken( c ))
return OUString( &c, 1 );
OUStringBuffer buf( 32 );
while ('\0' != c && !isCharToken( c ) && !isWhiteSpace( c ))
{
buf.append( c );
c = get();
}
back( c );
return buf.makeStringAndClear();
}
void PolicyReader::skipWhiteSpace()
{
sal_Unicode c;
do
{
c = get();
}
while (isWhiteSpace( c )); // seeking next non-whitespace char
if ('/' == c) // C/C++ like comment
{
c = get();
if ('/' == c) // C++ like comment
{
do
{
c = get();
}
while ('\n' != c && '\0' != c); // seek eol/eof
skipWhiteSpace(); // cont skip on next line
}
else if ('*' == c) // C like comment
{
bool fini = true;
do
{
c = get();
if ('*' == c)
{
c = get();
fini = ('/' == c || '\0' == c);
}
else
{
fini = ('\0' == c);
}
}
while (! fini);
skipWhiteSpace(); // cont skip on next line
}
else
{
error( "expected C/C++ like comment!" );
}
}
else if ('#' == c) // script like comment
{
do
{
c = get();
}
while ('\n' != c && '\0' != c); // seek eol/eof
skipWhiteSpace(); // cont skip on next line
}
else // is token char
{
back( c );
}
}
sal_Unicode PolicyReader::get()
{
if ('\0' != m_back) // one char push back possible
{
sal_Unicode c = m_back;
m_back = '\0';
return c;
}
else if (m_pos == m_line.getLength()) // provide newline as whitespace
{
++m_pos;
return '\n';
}
else if (m_pos > m_line.getLength()) // read new line
{
sal_Bool eof;
oslFileError rc = ::osl_isEndOfFile( m_file, &eof );
if (osl_File_E_None != rc)
error( "checking eof failed!" );
if (eof)
return '\0';
rc = ::osl_readLine( m_file, reinterpret_cast< sal_Sequence ** >( &m_line ) );
if (osl_File_E_None != rc)
error( "read line failed!" );
++m_linepos;
if (! m_line.getLength()) // empty line read
{
m_pos = 1; // read new line next time
return '\n';
}
m_pos = 0;
}
return (m_line.getConstArray()[ m_pos++ ]);
}
void PolicyReader::error( OUString const & msg )
{
OUStringBuffer buf( 32 );
buf.append( "error processing file \"" );
buf.append( m_fileName );
buf.append( "\" [line " );
buf.append( m_linepos );
buf.append( ", column " );
buf.append( m_pos );
buf.append( "] " );
buf.append( msg );
throw RuntimeException( buf.makeStringAndClear() );
}
PolicyReader::PolicyReader( OUString const & fileName, AccessControl & ac )
: m_fileName( fileName )
, m_linepos( 0 )
, m_pos( 1 ) // force readline
, m_back( '\0' )
{
ac.checkFilePermission( m_fileName, "read" );
if (osl_File_E_None != ::osl_openFile( m_fileName.pData, &m_file, osl_File_OpenFlag_Read ))
{
OUStringBuffer buf( 32 );
buf.append( "cannot open file \"" );
buf.append( m_fileName );
buf.append( "\"!" );
throw RuntimeException( buf.makeStringAndClear() );
}
}
PolicyReader::~PolicyReader()
{
if ( ::osl_closeFile( m_file ) != osl_File_E_None ) {
OSL_ASSERT( false );
}
}
#define s_grant "grant"
#define s_user "user"
#define s_permission "permission"
#define s_openBrace "{"
#define s_closingBrace "}"
#define s_filePermission "com.sun.star.io.FilePermission"
#define s_socketPermission "com.sun.star.connection.SocketPermission"
#define s_runtimePermission "com.sun.star.security.RuntimePermission"
#define s_allPermission "com.sun.star.security.AllPermission"
void FilePolicy::refresh()
throw (RuntimeException, std::exception)
{
// read out file (the .../file-name value had originally been set in
// cppu::add_access_control_entries (cppuhelper/source/servicefactory.cxx)
// depending on various UNO_AC* bootstrap variables that are no longer
// supported, so this is effectively dead code):
OUString fileName;
m_xComponentContext->getValueByName(
"/implementations/" IMPL_NAME "/file-name" ) >>= fileName;
if ( fileName.isEmpty() )
{
throw RuntimeException(
"name of policy file unknown!",
(OWeakObject *)this );
}
PolicyReader reader( fileName, m_ac );
// fill these two
Sequence< Any > defaultPermissions;
t_permissions userPermissions;
OUString token( reader.getToken() );
while (!token.isEmpty())
{
if ( token != s_grant )
reader.error( "expected >grant< token!" );
OUString userId;
token = reader.assureToken();
if ( token == s_user ) // next token is user-id
{
userId = reader.assureQuotedToken();
token = reader.assureToken();
}
if ( token != s_openBrace )
reader.error( "expected opening brace >{<!" );
token = reader.assureToken();
// permissions list
while ( token != s_closingBrace )
{
if ( token != s_permission )
reader.error( "expected >permission< or closing brace >}<!" );
token = reader.assureToken(); // permission type
Any perm;
if ( token == s_filePermission ) // FilePermission
{
OUString url( reader.assureQuotedToken() );
reader.assureToken( ',' );
OUString actions( reader.assureQuotedToken() );
perm <<= io::FilePermission( url, actions );
}
else if ( token == s_socketPermission ) // SocketPermission
{
OUString host( reader.assureQuotedToken() );
reader.assureToken( ',' );
OUString actions( reader.assureQuotedToken() );
perm <<= connection::SocketPermission( host, actions );
}
else if ( token == s_runtimePermission ) // RuntimePermission
{
OUString name( reader.assureQuotedToken() );
perm <<= security::RuntimePermission( name );
}
else if ( token == s_allPermission ) // AllPermission
{
perm <<= security::AllPermission();
}
else
{
reader.error( "expected permission type!" );
}
reader.assureToken( ';' );
// insert
if (!userId.isEmpty())
{
Sequence< Any > perms( userPermissions[ userId ] );
sal_Int32 len = perms.getLength();
perms.realloc( len +1 );
perms[ len ] = perm;
userPermissions[ userId ] = perms;
}
else
{
sal_Int32 len = defaultPermissions.getLength();
defaultPermissions.realloc( len +1 );
defaultPermissions[ len ] = perm;
}
token = reader.assureToken(); // next permissions token
}
reader.assureToken( ';' ); // semi
token = reader.getToken(); // next grant token
}
// assign new ones
MutexGuard guard( m_mutex );
m_defaultPermissions = defaultPermissions;
m_userPermissions = userPermissions;
}
OUString FilePolicy::getImplementationName()
throw (RuntimeException, std::exception)
{
return OUString(IMPL_NAME);
}
sal_Bool FilePolicy::supportsService( OUString const & serviceName )
throw (RuntimeException, std::exception)
{
return cppu::supportsService(this, serviceName);
}
Sequence< OUString > FilePolicy::getSupportedServiceNames()
throw (RuntimeException, std::exception)
{
Sequence< OUString > aSNS( 1 );
aSNS[0] = "com.sun.star.security.Policy";
return aSNS;
}
} // namespace
extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface * SAL_CALL
com_sun_star_security_comp_stoc_FilePolicy_get_implementation(
css::uno::XComponentContext *context,
css::uno::Sequence<css::uno::Any> const &)
{
return cppu::acquire(new FilePolicy(context));
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */