Author: sahlberg
Date: 2007-08-29 11:04:49 +0000 (Wed, 29 Aug 2007)
New Revision: 24772

WebSVN: 
http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=24772

Log:
add a bitmap that describes 6 of the specific accessmask bits for 
policy handles that are create by Connect?() calls on the samr pipe.

these bits come from the wireshark/ethereal sources where they have
been documented for a long time.

the bits :
  connect to server
  initialize server
  create domain
were added to wireshark/ethereal in svn 8080   Jul 24 2003

the bits :
  open domain
  enum domain
  shutdown server
were added to wireshark/ethereal in svn 6054 Aug 21 2002

 


Modified:
   branches/SAMBA_4_0/source/librpc/idl/samr.idl


Changeset:
Modified: branches/SAMBA_4_0/source/librpc/idl/samr.idl
===================================================================
--- branches/SAMBA_4_0/source/librpc/idl/samr.idl       2007-08-29 11:02:04 UTC 
(rev 24771)
+++ branches/SAMBA_4_0/source/librpc/idl/samr.idl       2007-08-29 11:04:49 UTC 
(rev 24772)
@@ -41,12 +41,21 @@
                ACB_NO_AUTH_DATA_REQD           = 0x00080000   /* 1 = No 
authorization data required */
        } samr_AcctFlags;
 
+       typedef [bitmap32bit] bitmap {
+               SAMR_ACCESS_CONNECT_TO_SERVER   = 0x00000001,
+               SAMR_ACCESS_SHUTDOWN_SERVER     = 0x00000002,
+               SAMR_ACCESS_INITIALIZE_SERVER   = 0x00000004,
+               SAMR_ACCESS_CREATE_DOMAIN       = 0x00000008,
+               SAMR_ACCESS_ENUM_DOMAINS        = 0x00000010,
+               SAMR_ACCESS_OPEN_DOMAIN         = 0x00000020
+       } samr_ConnectAccessMask;
+
        /******************/
        /* Function: 0x00 */
        NTSTATUS samr_Connect (
                /* notice the lack of [string] */
                [in]       uint16 *system_name,
-               [in]       uint32 access_mask,
+               [in]       samr_ConnectAccessMask access_mask,
                [out,ref]  policy_handle *connect_handle
                );
 
@@ -1131,7 +1140,7 @@
        /* Function    0x39     */
        NTSTATUS samr_Connect2(
                [in,string,charset(UTF16)] uint16 *system_name,
-               [in] uint32 access_mask,
+               [in] samr_ConnectAccessMask access_mask,
                [out,ref]  policy_handle *connect_handle
                );
 
@@ -1171,7 +1180,7 @@
                [in,string,charset(UTF16)] uint16 *system_name,
                /* this unknown value seems to be completely ignored by w2k3 */
                [in] uint32 unknown,
-               [in] uint32 access_mask,
+               [in] samr_ConnectAccessMask access_mask,
                [out,ref]  policy_handle *connect_handle
                );
 
@@ -1180,7 +1189,7 @@
        NTSTATUS samr_Connect4(
                [in,string,charset(UTF16)] uint16 *system_name,
                [in] uint32 unknown,
-               [in] uint32 access_mask,
+               [in] samr_ConnectAccessMask access_mask,
                [out,ref]  policy_handle *connect_handle
                );
 
@@ -1222,7 +1231,7 @@
 
        [public] NTSTATUS samr_Connect5(
                [in,string,charset(UTF16)] uint16 *system_name,
-               [in]       uint32             access_mask,
+               [in]       samr_ConnectAccessMask  access_mask,
                [in,out]   uint32             level,
                [in,out,switch_is(level),ref] samr_ConnectInfo *info,
                [out,ref]  policy_handle      *connect_handle

Reply via email to