mirror of
https://github.com/samba-team/samba.git
synced 2025-03-09 08:58:35 +03:00
Merge branch 'v4-0-test' of ssh://git.samba.org/data/git/samba into 4-0-abartlet
(This used to be commit a93b20b85b7b35965c428f1543cb7bbe96e16d42)
This commit is contained in:
commit
042eefe3eb
@ -142,7 +142,7 @@ static void dreplsrv_out_drsuapi_bind_recv(struct rpc_request *req)
|
||||
info24 = &st->bind_r.out.bind_info->info.info24;
|
||||
st->drsuapi->remote_info28.supported_extensions = info24->supported_extensions;
|
||||
st->drsuapi->remote_info28.site_guid = info24->site_guid;
|
||||
st->drsuapi->remote_info28.u1 = info24->u1;
|
||||
st->drsuapi->remote_info28.pid = info24->pid;
|
||||
st->drsuapi->remote_info28.repl_epoch = 0;
|
||||
break;
|
||||
}
|
||||
|
@ -104,7 +104,7 @@ static WERROR dreplsrv_connect_samdb(struct dreplsrv_service *service, struct lo
|
||||
/* TODO: fill in site_guid */
|
||||
bind_info28->site_guid = GUID_zero();
|
||||
/* TODO: find out how this is really triggered! */
|
||||
bind_info28->u1 = 0;
|
||||
bind_info28->pid = 0;
|
||||
bind_info28->repl_epoch = 0;
|
||||
|
||||
return WERR_OK;
|
||||
|
@ -1604,9 +1604,9 @@ static void becomeDC_drsuapi_bind_send(struct libnet_BecomeDC_state *s,
|
||||
bind_info28->site_guid = s->dest_dsa.site_guid;
|
||||
if (s->domain.behavior_version == 2) {
|
||||
/* TODO: find out how this is really triggered! */
|
||||
bind_info28->u1 = 528;
|
||||
bind_info28->pid = 528;
|
||||
} else {
|
||||
bind_info28->u1 = 516;
|
||||
bind_info28->pid = 516;
|
||||
}
|
||||
bind_info28->repl_epoch = 0;
|
||||
|
||||
@ -1636,7 +1636,7 @@ static WERROR becomeDC_drsuapi_bind_recv(struct libnet_BecomeDC_state *s,
|
||||
info24 = &drsuapi->bind_r.out.bind_info->info.info24;
|
||||
drsuapi->remote_info28.supported_extensions = info24->supported_extensions;
|
||||
drsuapi->remote_info28.site_guid = info24->site_guid;
|
||||
drsuapi->remote_info28.u1 = info24->u1;
|
||||
drsuapi->remote_info28.pid = info24->pid;
|
||||
drsuapi->remote_info28.repl_epoch = 0;
|
||||
break;
|
||||
}
|
||||
|
@ -574,7 +574,7 @@ static void unbecomeDC_drsuapi_bind_send(struct libnet_UnbecomeDC_state *s)
|
||||
bind_info28 = &s->drsuapi.local_info28;
|
||||
bind_info28->supported_extensions = 0;
|
||||
bind_info28->site_guid = GUID_zero();
|
||||
bind_info28->u1 = 508;
|
||||
bind_info28->pid = 508;
|
||||
bind_info28->repl_epoch = 0;
|
||||
|
||||
s->drsuapi.bind_info_ctr.length = 28;
|
||||
@ -612,7 +612,7 @@ static void unbecomeDC_drsuapi_bind_recv(struct rpc_request *req)
|
||||
info24 = &s->drsuapi.bind_r.out.bind_info->info.info24;
|
||||
s->drsuapi.remote_info28.supported_extensions = info24->supported_extensions;
|
||||
s->drsuapi.remote_info28.site_guid = info24->site_guid;
|
||||
s->drsuapi.remote_info28.u1 = info24->u1;
|
||||
s->drsuapi.remote_info28.pid = info24->pid;
|
||||
s->drsuapi.remote_info28.repl_epoch = 0;
|
||||
break;
|
||||
}
|
||||
|
@ -58,21 +58,36 @@ interface drsuapi
|
||||
DRSUAPI_SUPPORTED_EXTENSION_80000000 = 0x80000000
|
||||
} drsuapi_SupportedExtensions;
|
||||
|
||||
typedef [bitmap32bit] bitmap {
|
||||
DRSUAPI_SUPPORTED_EXTENSION_ADAM = 0x00000001,
|
||||
DRSUAPI_SUPPORTED_EXTENSION_LH_BETA2 = 0x00000002
|
||||
} drsuapi_SupportedExtensionsExt;
|
||||
|
||||
/* this is used by w2k */
|
||||
typedef struct {
|
||||
drsuapi_SupportedExtensions supported_extensions;
|
||||
GUID site_guid;
|
||||
uint32 u1;
|
||||
uint32 pid;
|
||||
} drsuapi_DsBindInfo24;
|
||||
|
||||
/* this is used by w2k3 */
|
||||
typedef struct {
|
||||
drsuapi_SupportedExtensions supported_extensions;
|
||||
GUID site_guid;
|
||||
uint32 u1;
|
||||
uint32 pid;
|
||||
uint32 repl_epoch;
|
||||
} drsuapi_DsBindInfo28;
|
||||
|
||||
/* this is used by w2k8 */
|
||||
typedef struct {
|
||||
drsuapi_SupportedExtensions supported_extensions;
|
||||
GUID site_guid;
|
||||
uint32 pid;
|
||||
uint32 repl_epoch;
|
||||
drsuapi_SupportedExtensionsExt supported_extensions_ext;
|
||||
GUID config_dn_guid;
|
||||
} drsuapi_DsBindInfo48;
|
||||
|
||||
typedef struct {
|
||||
[flag(NDR_REMAINING)] DATA_BLOB info;
|
||||
} drsuapi_DsBindInfoFallBack;
|
||||
@ -80,6 +95,7 @@ interface drsuapi
|
||||
typedef [nodiscriminant] union {
|
||||
[case(24)][subcontext(4)] drsuapi_DsBindInfo24 info24;
|
||||
[case(28)][subcontext(4)] drsuapi_DsBindInfo28 info28;
|
||||
[case(48)][subcontext(4)] drsuapi_DsBindInfo48 info48;
|
||||
[default][subcontext(4)] drsuapi_DsBindInfoFallBack FallBack;
|
||||
} drsuapi_DsBindInfo;
|
||||
|
||||
@ -1409,7 +1425,7 @@ interface drsuapi
|
||||
GUID bind_guid;
|
||||
NTTIME_1sec bind_time;
|
||||
[flag(NDR_BIG_ENDIAN)] ipv4address client_ip_address;
|
||||
uint32 u5; /* this is the same value the client used as u1 in the DsBindInfoX struct */
|
||||
uint32 u5; /* this is the same value the client used as pid in the DsBindInfoX struct */
|
||||
} drsuapi_DsReplicaConnection04;
|
||||
|
||||
typedef struct {
|
||||
|
@ -153,7 +153,6 @@ sub ParseFunction($$$)
|
||||
$self->pidl("");
|
||||
$self->pidl("status = cli_do_rpc_ndr(cli,");
|
||||
$self->pidl("\t\t\tmem_ctx,");
|
||||
$self->pidl("\t\t\tPI_$uif,");
|
||||
$self->pidl("\t\t\t&ndr_table_$if,");
|
||||
$self->pidl("\t\t\t$ufn,");
|
||||
$self->pidl("\t\t\t&r);");
|
||||
|
@ -45,7 +45,7 @@ static WERROR dcesrv_drsuapi_DsBind(struct dcesrv_call_state *dce_call, TALLOC_C
|
||||
struct ldb_result *ntds_res;
|
||||
struct ldb_dn *ntds_dn;
|
||||
static const char *ntds_attrs[] = { "ms-DS-ReplicationEpoch", NULL };
|
||||
uint32_t u1;
|
||||
uint32_t pid;
|
||||
uint32_t repl_epoch;
|
||||
int ret;
|
||||
|
||||
@ -98,9 +98,12 @@ static WERROR dcesrv_drsuapi_DsBind(struct dcesrv_call_state *dce_call, TALLOC_C
|
||||
repl_epoch = samdb_result_uint(ntds_res->msgs[0], "ms-DS-ReplicationEpoch", 0);
|
||||
|
||||
/*
|
||||
* TODO: find out what this is...
|
||||
* The "process identifier" of the client.
|
||||
* According to the WSPP docs, sectin 5.35, this is
|
||||
* for informational and debugging purposes only.
|
||||
* The assignment is implementation specific.
|
||||
*/
|
||||
u1 = 0;
|
||||
pid = 0;
|
||||
|
||||
/*
|
||||
* store the clients bind_guid
|
||||
@ -119,7 +122,7 @@ static WERROR dcesrv_drsuapi_DsBind(struct dcesrv_call_state *dce_call, TALLOC_C
|
||||
info24 = &r->in.bind_info->info.info24;
|
||||
b_state->remote_info28.supported_extensions = info24->supported_extensions;
|
||||
b_state->remote_info28.site_guid = info24->site_guid;
|
||||
b_state->remote_info28.u1 = info24->u1;
|
||||
b_state->remote_info28.pid = info24->pid;
|
||||
b_state->remote_info28.repl_epoch = 0;
|
||||
break;
|
||||
}
|
||||
@ -171,8 +174,8 @@ static WERROR dcesrv_drsuapi_DsBind(struct dcesrv_call_state *dce_call, TALLOC_C
|
||||
b_state->local_info28.supported_extensions |= DRSUAPI_SUPPORTED_EXTENSION_XPRESS_COMPRESS;
|
||||
#endif
|
||||
b_state->local_info28.site_guid = site_guid;
|
||||
b_state->local_info28.u1 = u1;
|
||||
b_state->local_info28.repl_epoch = repl_epoch;
|
||||
b_state->local_info28.pid = pid;
|
||||
b_state->local_info28.repl_epoch = repl_epoch;
|
||||
|
||||
/*
|
||||
* allocate the return bind_info
|
||||
|
@ -104,7 +104,7 @@ static struct DsSyncTest *test_create_context(struct torture_context *tctx)
|
||||
our_bind_info28->supported_extensions = 0xFFFFFFFF;
|
||||
our_bind_info28->supported_extensions |= DRSUAPI_SUPPORTED_EXTENSION_ADDENTRYREPLY_V3;
|
||||
our_bind_info28->site_guid = GUID_zero();
|
||||
our_bind_info28->u1 = 0;
|
||||
our_bind_info28->pid = 0;
|
||||
our_bind_info28->repl_epoch = 1;
|
||||
|
||||
our_bind_info_ctr = &ctx->admin.drsuapi.our_bind_info_ctr;
|
||||
@ -153,7 +153,7 @@ static struct DsSyncTest *test_create_context(struct torture_context *tctx)
|
||||
our_bind_info28->supported_extensions |= DRSUAPI_SUPPORTED_EXTENSION_XPRESS_COMPRESS;
|
||||
}
|
||||
our_bind_info28->site_guid = GUID_zero();
|
||||
our_bind_info28->u1 = 508;
|
||||
our_bind_info28->pid = 508;
|
||||
our_bind_info28->repl_epoch = 0;
|
||||
|
||||
our_bind_info_ctr = &ctx->new_dc.drsuapi.our_bind_info_ctr;
|
||||
@ -210,7 +210,7 @@ static bool _test_DsBind(struct torture_context *tctx,
|
||||
info24 = &b->req.out.bind_info->info.info24;
|
||||
b->peer_bind_info28.supported_extensions= info24->supported_extensions;
|
||||
b->peer_bind_info28.site_guid = info24->site_guid;
|
||||
b->peer_bind_info28.u1 = info24->u1;
|
||||
b->peer_bind_info28.pid = info24->pid;
|
||||
b->peer_bind_info28.repl_epoch = 0;
|
||||
break;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user