/* Editor Settings: expandtabs and use 4 spaces for indentation * ex: set softtabstop=4 tabstop=8 expandtab shiftwidth=4: * * -*- mode: c, c-basic-offset: 4 -*- */ /* * Copyright Likewise Software 2004-2008 * All rights reserved. * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the license, or (at * your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser * General Public License for more details. You should have received a copy * of the GNU Lesser General Public License along with this program. If * not, see . * * LIKEWISE SOFTWARE MAKES THIS SOFTWARE AVAILABLE UNDER OTHER LICENSING * TERMS AS WELL. IF YOU HAVE ENTERED INTO A SEPARATE LICENSE AGREEMENT * WITH LIKEWISE SOFTWARE, THEN YOU MAY ELECT TO USE THE SOFTWARE UNDER THE * TERMS OF THAT SOFTWARE LICENSE AGREEMENT INSTEAD OF THE TERMS OF THE GNU * LESSER GENERAL PUBLIC LICENSE, NOTWITHSTANDING THE ABOVE NOTICE. IF YOU * HAVE QUESTIONS, OR WISH TO REQUEST A COPY OF THE ALTERNATE LICENSING * TERMS OFFERED BY LIKEWISE SOFTWARE, PLEASE CONTACT LIKEWISE SOFTWARE AT * license@likewisesoftware.com */ /* * Copyright (C) Likewise Software. All rights reserved. * * Module Name: * * lwsecurityidentifier.h * * Abstract: * * Likewise Security and Authentication Subsystem (LWSS) * * Security Identifier API * * Authors: Krishna Ganugapati (krishnag@likewisesoftware.com) * Brian Dunstan (bdunstan@likewisesoftware.com) * Sriram Nambakam (snambakam@likewisesoftware.com) */ #ifndef __LWSECURITY_IDENTIFIER_H__ #define __LWSECURITY_IDENTIFIER_H__ #define WELLKNOWN_SID_DOMAIN_USER_GROUP_RID 513 typedef struct __LSA_SECURITY_IDENTIFIER { UCHAR* pucSidBytes; //byte representation of multi-byte Security Identification Descriptor DWORD dwByteLength; } LSA_SECURITY_IDENTIFIER, *PLSA_SECURITY_IDENTIFIER; DWORD LsaAllocSecurityIdentifierFromBinary( UCHAR* sidBytes, DWORD dwSidBytesLength, PLSA_SECURITY_IDENTIFIER* ppSecurityIdentifier ); DWORD LsaAllocSecurityIdentifierFromString( PCSTR pszSidString, PLSA_SECURITY_IDENTIFIER* ppSecurityIdentifier ); VOID LsaFreeSecurityIdentifier( PLSA_SECURITY_IDENTIFIER pSecurityIdentifier ); DWORD LsaGetSecurityIdentifierRid( PLSA_SECURITY_IDENTIFIER pSecurityIdentifier, PDWORD pdwRid ); DWORD LsaSetSecurityIdentifierRid( PLSA_SECURITY_IDENTIFIER pSecurityIdentifier, DWORD dwRid ); DWORD LsaReplaceSidRid( IN PCSTR pszSid, IN DWORD dwNewRid, OUT PSTR* ppszNewSid ); DWORD LsaGetSecurityIdentifierHashedRid( PLSA_SECURITY_IDENTIFIER pSecurityIdentifier, PDWORD dwHashedRid ); // The UID is a DWORD constructued using a non-cryptographic hash // of the User's domain SID and user RID. DWORD LsaHashSecurityIdentifierToId( IN PLSA_SECURITY_IDENTIFIER pSecurityIdentifier, OUT PDWORD pdwId ); DWORD LsaHashSidStringToId( IN PCSTR pszSidString, OUT PDWORD pdwId ); DWORD LsaGetSecurityIdentifierBinary( PLSA_SECURITY_IDENTIFIER pSecurityIdentifier, UCHAR** ppucSidBytes, DWORD* pdwSidBytesLength ); DWORD LsaGetSecurityIdentifierString( PLSA_SECURITY_IDENTIFIER pSecurityIdentifier, PSTR* ppszSidStr ); DWORD LsaSidBytesToString( UCHAR* pucSidBytes, DWORD dwSidBytesLength, PSTR* pszSidString ); DWORD LsaGetDomainSecurityIdentifier( PLSA_SECURITY_IDENTIFIER pSecurityIdentifier, PLSA_SECURITY_IDENTIFIER* ppDomainSID ); DWORD LsaHexStrToByteArray( IN PCSTR pszHexString, IN OPTIONAL DWORD* pdwHexStringLength, OUT UCHAR** ppucByteArray, OUT DWORD* pdwByteArrayLength ); DWORD LsaByteArrayToLdapFormatHexStr( IN UCHAR* pucByteArray, IN DWORD dwByteArrayLength, OUT PSTR* ppszHexString ); DWORD LsaSidStrToLdapFormatHexStr( IN PCSTR pszSid, OUT PSTR* ppszHexSid ); DWORD LsaHexCharToByte( CHAR cHexChar, UCHAR* pucByte ); #endif /* __LWSECURITY_IDENTIFIER_H__ */