Click here to Skip to main content
Click here to Skip to main content

Low-level Security Classes

By , 1 Mar 2000
 
  • Download demo project - 17 Kb
  • Download source files - 4 Kb
  • If you have ever tried to do something simple like set a security descriptor for a Registry key you know what a pain the Win32 Security APIs can be. The process of initializing the various structures, allocating and deallocating memory and testing for error conditions is tedious and you end up with at least a page and a half of code which is difficult to read and doesn't lend itself to being reused next time you want to do the same thing. There had to be a better way, I thought. So I wrote a set of classes which take care of much of the donkey-work for you.

    All of the classes correspond to the structures used by the low-level Security APIs - ACEs, ACLs, SIDs, TRUSTEEs, Security Descriptors. Their member functions are in most cases the same as the calls you would use when working with the API. The crucial differences are:

    1. Often, a single constructor call is all that is needed to allocate and initialize an object
    2. The classes which need to allocate memory will release it safely when the object goes out of scope.

    Other than that, they are just thin wrappers. You can still get at the underlying objects if you need to, and you can also pass them to any of the API functions expecting a security object.

    The best documentation I can give you is some sample code, so here is an example of how to create a secure Registry key which can be read by any user but only changed by administrators. To compare this with code which does the same thing using only API calls, see Setting a Security Descriptor for a new object in the MSDN library. Notice how much longer it is.

    // Create a Registry key, granting KEY_READ access to everyone and 
    // full control to the Administrators group.
    
    // Initialize 2 EXPLICIT_ACCESS structures: 1 for Everyone,
    // 1 for Administrators. 
    CSid sidEveryone(CSid::WST_EVERYONE);
    CSid sidAdmins(CSid::WST_LOCALADMINS);
    
    CTrustee trEveryone(TRUSTEE_IS_WELL_KNOWN_GROUP, sidEveryone);
    CTrustee trAdmins(TRUSTEE_IS_GROUP, sidAdmins);
    
    EXPLICIT_ACCESS ea[2];
    
    ea[0] = CExplicitAccess(KEY_READ, SET_ACCESS, NO_INHERITANCE, trEveryone);
    ea[1] = CExplicitAccess(KEY_ALL_ACCESS, SET_ACCESS, NO_INHERITANCE, trAdmins);		
    

    Note the constructor for CSid which allows you to create a SID for any of the well-known groups such as Administrators, ordinary users, etc.

    // Create a new ACL and set the EA entries in it
    CAcl acl;
    if(acl.SetEntriesInAcl(2, ea) == ERROR_SUCCESS)
    {
    
    	// Initialize a security descriptor and add our ACL to it  
    	CSecurityDescriptor sd;
    	if(sd.SetSecurityDescriptorDacl(
    		TRUE,     // fDaclPresent flag   
    		acl, 
    		FALSE))   // not a default DACL 
    	{
    
    		// Initialize a security attributes structure.
    		CSecurityAttributes sa(sd, FALSE);
    
    		// Use the security attributes to set the security descriptor 
    		// when you create a key.
    		DWORD	dwDisposition;
    		HKEY	hKey;
     
    		RegCreateKeyEx(HKEY_CURRENT_USER, "mykey1", 0, "", 0, 
    			KEY_READ | KEY_WRITE, sa, &hKey, &dwDisposition); 
    
    	}
    
    }
    

    That's it! If you have any suggestions or problems to report, post them here. There are plenty of ways this idea could be extended if you are of an inclination to do so.

    License

    This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

    A list of licenses authors might use can be found here

    About the Author

    Peter Kenyon
    Web Developer
    New Zealand New Zealand
    Member
    No Biography provided

    Sign Up to vote   Poor Excellent
    Add a reason or comment to your vote: x
    Votes of 3 or less require a comment

    Comments and Discussions

     
    Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
    You must Sign In to use this message board.
    Search this forum  
        Spacing  Noise  Layout  Per page   
    QuestionHow can I create a new windows user?memberpengok7 Dec '04 - 14:17 
    How can I create a new windows user ?
     
    Anybody knows?
     
    Thanks
    Generaldoes not work :-(memberemmi18 Jul '04 - 20:44 
    GeneralRe: Please see response of the first message on this board!memberBehzad Ebrahimi24 Jul '04 - 0:00 
    GeneralWrite access rightmemberJianping Yan15 May '04 - 12:36 
    GeneralWorks fine on NT 4.0, too.sussAnonymous1 Aug '03 - 10:12 
    Generalone Questionmemberosirix15 Jul '03 - 6:23 
    Generalchange permissions of an existing keysussM.Pester6 Mar '03 - 2:07 
    GeneralRe: change permissions of an existing keymemberlesashwad25 Jan '06 - 10:36 
    GeneralRe: change permissions of an existing keymemberAtlence31 Jan '06 - 2:59 
    Generalregistry security templatessusstravisowenjones22 Jan '03 - 9:57 
    GeneralSlight syntax fixmemberJohn P. Curtis16 Dec '02 - 17:07 
    GeneraluserlistmemberHaresh15 May '02 - 1:36 
    GeneralRe: userlistmemberPeter_K16 May '02 - 12:43 
    GeneralRe: userlistmemberHaresh16 May '02 - 19:13 
    GeneralIntercepting user lockoutmemberAhaz21 Nov '01 - 6:20 
    GeneralChanging a directory's security options in Win2000memberReza Hemmati11 Jul '01 - 1:50 
    GeneralChanging a directory's security options in Win2000memberReza Hemmati11 Jul '01 - 1:50 
    QuestionHow to validate a username and password?memberAlvaro Mendez12 Jan '01 - 8:51 
    AnswerRe: How to validate a username and password?memberTodd Jeffreys12 Jan '01 - 11:02 
    GeneralRe: How to validate a username and password?memberAlvaro Mendez12 Jan '01 - 12:09 
    GeneralRe: How to validate a username and password?memberAnonymous27 Apr '01 - 4:30 
    GeneralRe: How to validate a username and password?memberthe link to codeguru12 Nov '01 - 2:18 
    GeneralInvalid SID error when creating ACLsussJeff Mcaffee28 Sep '00 - 11:14 
    GeneralRe: Invalid SID error when creating ACLsussPeter Kenyon28 Sep '00 - 12:09 
    GeneralRe: Invalid SID error when creating ACLmemberAnonymous28 Dec '00 - 12:45 

    General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

    Permalink | Advertise | Privacy | Mobile
    Web03 | 2.6.130516.1 | Last Updated 2 Mar 2000
    Article Copyright 2000 by Peter Kenyon
    Everything else Copyright © CodeProject, 1999-2013
    Terms of Use
    Layout: fixed | fluid