os/persistentdata/persistentstorage/sql/SRC/Server/SqlSrvUtil.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2006-2010 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include <stdlib.h>				//wchar_t
    17 #include "SqlAssert.h"
    18 #include "SqlSrvUtil.h"
    19 #include "OstTraceDefinitions.h"
    20 #ifdef OST_TRACE_COMPILER_IN_USE
    21 #include "SqlSrvUtilTraces.h"
    22 #endif
    23 #include "SqlTraceDef.h"
    24 
    25 #ifdef _SQL_AUTHORIZER_TRACE_ENABLED
    26 
    27 //Used in PrintAuthorizerArguments()
    28 _LIT8(KCreateIndex,			"Create index");			//SQLITE_CREATE_INDEX
    29 _LIT8(KCreateTable, 		"Create table");			//SQLITE_CREATE_TABLE
    30 _LIT8(KCreateTempIndex, 	"Create temp index");		//SQLITE_CREATE_TEMP_INDEX
    31 _LIT8(KCreateTempTable, 	"Create temp table");		//SQLITE_CREATE_TEMP_TABLE
    32 _LIT8(KCreateTempTrigger, 	"Create temp trigger");		//SQLITE_CREATE_TEMP_TRIGGER
    33 _LIT8(KCreateTempView, 		"Create temp view");		//SQLITE_CREATE_TEMP_VIEW
    34 _LIT8(KCreateTrigger, 		"Create trigger");			//SQLITE_CREATE_TRIGGER
    35 _LIT8(KCreateView, 			"Create view");				//SQLITE_CREATE_VIEW
    36 _LIT8(KDelete, 				"DELETE");					//SQLITE_DELETE
    37 _LIT8(KDropIndex, 			"Drop index");				//SQLITE_DROP_INDEX
    38 _LIT8(KDropTable, 			"Drop table");				//SQLITE_DROP_TABLE
    39 _LIT8(KDropTempIndex, 		"Drop temp index");			//SQLITE_DROP_TEMP_INDEX
    40 _LIT8(KDropTempTable, 		"Drop temp table");			//SQLITE_DROP_TEMP_TABLE
    41 _LIT8(KDropTempTrigger, 	"Drop temp trigger");		//SQLITE_DROP_TEMP_TRIGGER
    42 _LIT8(KDropTempView, 		"Drop temp view");			//SQLITE_DROP_TEMP_VIEW
    43 _LIT8(KDropTrigger, 		"Drop trigger");			//SQLITE_DROP_TRIGGER
    44 _LIT8(KDropView, 			"Drop view");				//SQLITE_DROP_VIEW
    45 _LIT8(KInsert, 				"INSERT");					//SQLITE_INSERT
    46 _LIT8(KPragma, 				"PRAGMA");					//SQLITE_PRAGMA
    47 _LIT8(KRead, 				"Read");					//SQLITE_READ
    48 _LIT8(KSelect, 				"SELECT");					//SQLITE_SELECT
    49 _LIT8(KTransaction, 		"TRANSACTION");				//SQLITE_TRANSACTION
    50 _LIT8(KUpdate, 				"UPDATE");					//SQLITE_UPDATE
    51 _LIT8(KAttach, 				"ATTACH");					//SQLITE_ATTACH
    52 _LIT8(KDetach, 				"DETACH");					//SQLITE_DETACH
    53 _LIT8(KAlterTable, 			"Alter table");				//SQLITE_ALTER_TABLE
    54 _LIT8(KReindex, 			"Reindex");					//SQLITE_REINDEX
    55 _LIT8(KAnalyze, 			"Analyze");					//SQLITE_ANALYZE
    56 _LIT8(KCreateVTable, 		"Create virt.table");		//SQLITE_CREATE_VTABLE
    57 _LIT8(KDropVTable, 			"Drop virt.table");			//SQLITE_DROP_VTABLE
    58 _LIT8(KFunctionCall, 		"Function call");			//SQLITE_FUNCTION
    59 
    60 _LIT8(KNull, 				"NULL");
    61 _LIT8(KInvalid, 			"INVALID");
    62 
    63 //Used in PrintAuthorizerArguments()
    64 const TPtrC8 KDbOpNames[] = 
    65 	{
    66 	KCreateIndex(),	KCreateTable(), KCreateTempIndex(), KCreateTempTable(), KCreateTempTrigger(),
    67 	KCreateTempView(), KCreateTrigger(), KCreateView(), KDelete(), KDropIndex(), 
    68 	KDropTable(), KDropTempIndex(), KDropTempTable(), KDropTempTrigger(), KDropTempView(),
    69 	KDropTrigger(), KDropView(), KInsert(), KPragma(), KRead(), 
    70 	KSelect(), KTransaction(), KUpdate(), KAttach(), KDetach(), KAlterTable(), KReindex(), KAnalyze(),
    71 	KCreateVTable(), KDropVTable(), KFunctionCall()
    72 	};
    73 
    74 #ifdef _DEBUG
    75 const TInt KMaxOpCodes = sizeof(KDbOpNames) / sizeof(KDbOpNames[0]);
    76 #endif
    77 
    78 /**
    79 This function has a defined implementaion only in _DEBUG mode and is used to print the authorizer arguments.
    80 
    81 @internalComponent
    82 */
    83 void PrintAuthorizerArguments(TInt aDbOpType, const char* aDbObjName1, const char* aDbObjName2, 
    84 							  const char* aDbName, const char* aTrgOrViewName)
    85 	{
    86 	__ASSERT_DEBUG(aDbOpType > 0 && aDbOpType <= KMaxOpCodes, __SQLPANIC2(ESqlPanicInternalError));
    87 	
    88 	//TPtrC8 objects cannot be used for the function arguments, because the arguments may not be 16-bit aligned!!!	
    89 
    90 	TBuf<20> opName;
    91 	opName.Copy(KDbOpNames[aDbOpType - 1]);
    92 
    93 	TBuf<64> dbObjName1; 
    94 	dbObjName1.Copy(KNull);
    95 	if(aDbObjName1)
    96 		{
    97 		dbObjName1.Copy(KInvalid);
    98 		if(User::StringLength((const TUint8*)aDbObjName1) <= dbObjName1.MaxLength())
    99 			{
   100 			dbObjName1.Copy(TPtrC8(reinterpret_cast <const TUint8*> (aDbObjName1)));
   101 			}
   102 		}
   103 	TBuf<64> dbObjName2; 
   104 	dbObjName2.Copy(KNull);
   105 	if(aDbObjName2)
   106 		{
   107 		dbObjName2.Copy(KInvalid);
   108 		if(User::StringLength((const TUint8*)aDbObjName2) <= dbObjName2.MaxLength())
   109 			{
   110 			dbObjName2.Copy(TPtrC8(reinterpret_cast <const TUint8*> (aDbObjName2)));
   111 			}
   112 		}
   113 	TBuf<64> dbName; 
   114 	dbName.Copy(KNull);
   115 	if(aDbName)
   116 		{
   117 		dbName.Copy(KInvalid);
   118 		if(User::StringLength((const TUint8*)aDbName) <= dbName.MaxLength())
   119 			{
   120 			dbName.Copy(TPtrC8(reinterpret_cast <const TUint8*> (aDbName)));
   121 			}
   122 		}
   123 	TBuf<64> trgOrViewName; 
   124 	trgOrViewName.Copy(KNull);
   125 	if(aTrgOrViewName)
   126 		{
   127 		trgOrViewName.Copy(KInvalid);
   128 		if(User::StringLength((const TUint8*)aTrgOrViewName) <= trgOrViewName.MaxLength())
   129 			{
   130 			trgOrViewName.Copy(TPtrC8(reinterpret_cast <const TUint8*> (aTrgOrViewName)));
   131 			}
   132 		}
   133 		
   134 	SQL_TRACE_AUTHORIZER(OstTraceExt5(TRACE_INTERNALS, SQLAUTHORIZER, "0;PrintAuthorizerArguments;%20.20S;%40.40S;%10.10S;%10.10S;%10.10S", __SQLPRNSTR(opName), __SQLPRNSTR(dbObjName1), __SQLPRNSTR(dbObjName2), __SQLPRNSTR(dbName), __SQLPRNSTR(trgOrViewName)));
   135 	}
   136 #endif//_SQL_AUTHORIZER_TRACE_ENABLED
   137 
   138 /**
   139 Converts a UTF16 encoded descriptor to a UTF8 encoded descriptor.
   140 Note: the function works only for input descriptors with length less or equal than KMaxFileName.
   141 
   142 @param aIn  The input UTF16 encoded descriptor,
   143 @param aOut The output buffer where the converted input descriptor will be stored. 
   144 @return True if the conversion was successful, false otherwise.
   145 
   146 @panic SqlDb 4 In _DEBUG mode if aIn length is bigger than KMaxFileName.
   147 @panic SqlDb 4 In _DEBUG mode if aOut max length is less than KMaxFileName.
   148 
   149 @internalComponent
   150 */
   151 TBool UTF16ToUTF8(const TDesC& aIn, TDes8& aOut)
   152 	{
   153     __ASSERT_DEBUG(aIn.Length() <= KMaxFileName, __SQLPANIC2(ESqlPanicBadArgument));
   154     __ASSERT_DEBUG(aOut.MaxLength() >= KMaxFileName, __SQLPANIC2(ESqlPanicBadArgument));
   155 	TBuf16<KMaxFileName + 1> des;
   156 	des.Copy(aIn);
   157 	des.Append(TChar(0));
   158 	TInt len = wcstombs((char*)aOut.Ptr(), (const wchar_t*)des.Ptr(), KMaxFileName);
   159 	//Check the file name length. If it is longer than KMaxFileName characters, then the file name is not valid.
   160 	if((TUint)len <= KMaxFileName)
   161 		{
   162 		aOut.SetLength(len);
   163 		return ETrue;
   164 		}
   165 	return EFalse;
   166 	}
   167 
   168 /**
   169 Converts a zero-terminated, UTF16 encoded file name to a zero-terminated, UTF8 encoded file name.
   170 @param aFileName The input file name buffer. aFileName argument is expected to point to UTF16 encoded, 
   171 				 zero terminated string,
   172 @param aFileNameDestBuf The output file name buffer where the converted input file name will be stored. 
   173 						The output file name buffer max length should be at least KMaxFileName + 1.
   174 @return True if the conversion was successful, false otherwise.
   175 
   176 @panic SqlDb 4 In _DEBUG mode if aFileName length is bigger than KMaxFileName + 1.
   177 @panic SqlDb 4 In _DEBUG mode if aFileName is not zero-terminated or if aFileNameDestBuf max length is less than KMaxFileName + 1.
   178 
   179 @internalComponent
   180 */
   181 TBool UTF16ZToUTF8Z(const TDesC& aFileName, TDes8& aFileNameDestBuf)
   182 	{
   183 	__ASSERT_DEBUG(aFileName.Length() <= (KMaxFileName + 1), __SQLPANIC2(ESqlPanicBadArgument));
   184 	__ASSERT_DEBUG(aFileName[aFileName.Length() - 1] == 0, __SQLPANIC2(ESqlPanicBadArgument));
   185 	__ASSERT_DEBUG(aFileNameDestBuf.MaxLength() >= (KMaxFileName + 1), __SQLPANIC2(ESqlPanicBadArgument));
   186 	const wchar_t* src = reinterpret_cast <const wchar_t*> (aFileName.Ptr());
   187 	TInt len = wcstombs((char*)aFileNameDestBuf.Ptr(), src, KMaxFileName);
   188 	//Check the file name length. If it is longer than KMaxFileName characters, then the file name is not valid.
   189 	if((TUint)len <= KMaxFileName)
   190 		{
   191 		aFileNameDestBuf.SetLength(len + 1);
   192 		aFileNameDestBuf[len] = 0;
   193 		return ETrue;
   194 		}
   195 	return EFalse;
   196 	}
   197 
   198 /**
   199 Converts a UTF16 encoded file name to a zero-terminated, UTF8 encoded file name.
   200 @param aFileName The input file name buffer. aFileName argument is expected to point to UTF16 encoded string,
   201 @param aFileNameDestBuf The output file name buffer where the converted input file name will be stored. 
   202 						The output file name buffer max length should be at least KMaxFileName + 1.
   203 @return True if the conversion was successful, false otherwise.
   204 
   205 @panic SqlDb 4 In _DEBUG mode if aFileName length is bigger than KMaxFileName.
   206 @panic SqlDb 4 In _DEBUG mode if aFileNameDestBuf max length is less than KMaxFileName + 1.
   207 
   208 @internalComponent
   209 */
   210 TBool UTF16ToUTF8Z(const TDesC& aFileName, TDes8& aFileNameDestBuf)
   211 	{
   212 	__ASSERT_DEBUG(aFileName.Length() <= KMaxFileName, __SQLPANIC2(ESqlPanicBadArgument));
   213 	__ASSERT_DEBUG(aFileNameDestBuf.MaxLength() >= (KMaxFileName + 1), __SQLPANIC2(ESqlPanicBadArgument));
   214 	TBool rc = ::UTF16ToUTF8(aFileName, aFileNameDestBuf);
   215 	if(rc)
   216 		{
   217 		aFileNameDestBuf.Append(0);
   218 		}
   219 	return rc;
   220 	}
   221 
   222 //Returns true if aDbFileName is a read-only file
   223 TBool IsReadOnlyFileL(RFs& aFs, const TDesC& aDbFileName)
   224 	{
   225 	TEntry entry;
   226 	TInt err = aFs.Entry(aDbFileName, entry);
   227 	if(err == KErrNotFound)
   228 		{//Non-existing file
   229 		return EFalse;	
   230 		}
   231 	__SQLLEAVE_IF_ERROR2(err);
   232 	return entry.IsReadOnly();
   233 	}