diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-06-14 08:12:50 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:56:39 -0500 |
commit | bccac81d8792f85ae37d4a6617a92e2fae75aa50 (patch) | |
tree | f0c16dd01073e4c7276a23b0b7a666b33e055053 /source4/librpc | |
parent | 2fcf85920deb2bb3e564c7be611b2cec838afbf1 (diff) | |
download | samba-bccac81d8792f85ae37d4a6617a92e2fae75aa50.tar.gz samba-bccac81d8792f85ae37d4a6617a92e2fae75aa50.tar.bz2 samba-bccac81d8792f85ae37d4a6617a92e2fae75aa50.zip |
r1136: - added IDL for netr_LogonGetDomainInfo()
- added workstation to auth_session_info in rpc servers
- added session key fetch hook in crypto backends in dcesrv
- store and fetch seed as well as a session key in schannel ldb
- when a client uses schannel to setup a netlogon pipe connection we
also need to setup the credentials from the schannel negotiation so
credentials chaining works
- added server side netr_LogonGetDomainInfo() call
(This used to be commit a35459387de3b6a422c5af6f658338fc7e4314b0)
Diffstat (limited to 'source4/librpc')
-rw-r--r-- | source4/librpc/idl/netlogon.idl | 67 | ||||
-rw-r--r-- | source4/librpc/rpc/dcerpc_util.c | 35 |
2 files changed, 101 insertions, 1 deletions
diff --git a/source4/librpc/idl/netlogon.idl b/source4/librpc/idl/netlogon.idl index 48154dc001..f9516f112e 100644 --- a/source4/librpc/idl/netlogon.idl +++ b/source4/librpc/idl/netlogon.idl @@ -914,7 +914,72 @@ interface netlogon /****************/ /* Function 0x1d */ - WERROR netr_NETRLOGONGETDOMAININFO(); + + typedef struct { + uint32 length; + [size_is(length)] uint8 *data; + } netr_Blob; + + typedef [flag(NDR_PAHEX)] struct { + uint16 length; + uint16 size; + [size_is(size/2),length_is(length/2)] uint16 *data; + } netr_BinaryString; + + typedef struct { + netr_Blob blob; + unistr *workstation_domain; + unistr *workstation_site; + unistr *foo2; + unistr *p1; + unistr *p2; + unistr *p3; + netr_BinaryString blob2; + netr_String product; + uint32 i1; + unistr *p4; + uint32 i2; + uint32 pp; + uint32 xx[4]; + } netr_DomainQuery1; + + typedef union { + [case(1)] netr_DomainQuery1 *query1; + [case(2)] netr_DomainQuery1 *query1; + } netr_DomainQuery; + + typedef struct { + netr_String domainname; + netr_String fulldomainname; + netr_String forest; + GUID guid; + dom_sid2 *sid; + netr_BinaryString unknown1[4]; + uint32 unknown[4]; + } netr_DomainTrustInfo; + + typedef struct { + netr_DomainTrustInfo domaininfo; + uint32 num_trusts; + [size_is(num_trusts)] netr_DomainTrustInfo *trusts; + uint32 unknown[14]; /* room for expansion? */ + } netr_DomainInfo1; + + typedef union { + [case(1)] netr_DomainInfo1 *info1; + [case(2)] netr_DomainInfo1 *info1; + } netr_DomainInfo; + + NTSTATUS netr_LogonGetDomainInfo( + [in] unistr server_name, + [in] unistr *computer_name, + [in,out,ref] netr_Authenticator *credential, + [in] uint32 unknown1, + [in] uint32 *i1, + [in] uint32 level, + [in,switch_is(level)] netr_DomainQuery query, + [out,switch_is(level)] netr_DomainInfo info + ); /****************/ /* Function 0x1e */ diff --git a/source4/librpc/rpc/dcerpc_util.c b/source4/librpc/rpc/dcerpc_util.c index e62404b92a..8c9b273896 100644 --- a/source4/librpc/rpc/dcerpc_util.c +++ b/source4/librpc/rpc/dcerpc_util.c @@ -711,3 +711,38 @@ NTSTATUS dcerpc_fetch_session_key(struct dcerpc_pipe *p, return NT_STATUS_NO_USER_SESSION_KEY; } + + +/* + log a rpc packet in a format suitable for ndrdump. This is especially useful + for sealed packets, where ethereal cannot easily see the contents + + this triggers on a debug level of >= 10 +*/ +void dcerpc_log_packet(const struct dcerpc_interface_table *ndr, + uint32_t opnum, uint32_t flags, DATA_BLOB *pkt) +{ + const int num_examples = 20; + int i; + + if (DEBUGLEVEL < 10) return; + + for (i=0;i<num_examples;i++) { + char *name=NULL; + asprintf(&name, "%s/rpclog/%s-%u.%d.%s", + lp_lockdir(), ndr->name, opnum, i, + (flags&NDR_IN)?"in":"out"); + if (name == NULL) { + return; + } + if (!file_exist(name, NULL)) { + if (file_save(name, pkt->data, pkt->length)) { + DEBUG(10,("Logged rpc packet to %s\n", name)); + } + free(name); + break; + } + free(name); + } +} + |