Update contrib.
2 * Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
15 * Includes APIs for common security checks
26 #ifndef SECURITYUTILS_H
27 #define SECURITYUTILS_H
31 namespace SecCommonUtils
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.
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
43 IMPORT_C TCapabilitySet FileModificationRequiredCapabilitiesL(const TDesC& aFileName, TSecureId aClientSid);
46 #endif /* SECURITYUTILS_H*/