os/security/cryptomgmtlibs/securitycommonutils/inc/securityutils.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     5 * under the terms of the License "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description: 
    15 * Includes APIs for common security checks
    16 *
    17 */
    18 
    19 
    20 /**
    21  @file 
    22  @publishedPartner
    23  @released
    24 */
    25 
    26 #ifndef SECURITYUTILS_H
    27 #define SECURITYUTILS_H
    28 
    29 #include <e32base.h>
    30 
    31 namespace SecCommonUtils
    32 {	
    33 	/**
    34 	 Returns a set of capabilities required for doing a file modification. 
    35 	 This function is useful for cases where an FS operation is performed by a higher-trust process on behalf of a lower-trust process, 
    36 	 and the higher-trust process wants to verify whether the operation is legal.
    37 	 Please note that this function returns TCB as required for paths with relative indirections (".."), as well as paths with wild cards.
    38 	 
    39 	 @param aFileName			FileName, for which the client is verified
    40 	 @param aClientSid			SID of the client requesting the file modification
    41 	 @return					Set of capabilities. If a process has any of these, it can have modification access
    42 	 */
    43 	IMPORT_C TCapabilitySet FileModificationRequiredCapabilitiesL(const TDesC& aFileName, TSecureId aClientSid);
    44 }
    45 
    46 #endif /* SECURITYUTILS_H*/