2 Unix SMB/CIFS mplementation.
3 DSDB replication service
5 Copyright (C) Stefan Metzmacher 2007
6 Copyright (C) Kamen Mazdrashki <kamenim@samba.org> 2010
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 #include "dsdb/samdb/samdb.h"
25 #include "auth/auth.h"
26 #include "smbd/service.h"
27 #include "lib/events/events.h"
28 #include "dsdb/repl/drepl_service.h"
29 #include <ldb_errors.h>
30 #include "../lib/util/dlinklist.h"
31 #include "librpc/gen_ndr/ndr_misc.h"
32 #include "librpc/gen_ndr/ndr_drsuapi.h"
33 #include "librpc/gen_ndr/ndr_drsblobs.h"
34 #include "librpc/gen_ndr/ndr_irpc.h"
35 #include "param/param.h"
38 * Call-back data for _drepl_replica_sync_done_cb()
40 struct drepl_replica_sync_cb_data
{
41 struct irpc_message
*msg
;
42 struct drsuapi_DsReplicaSync
*r
;
44 /* number of ops left to be completed */
47 /* last failure error code */
48 WERROR werr_last_failure
;
52 static WERROR
dreplsrv_init_creds(struct dreplsrv_service
*service
)
54 service
->system_session_info
= system_session(service
->task
->lp_ctx
);
55 if (service
->system_session_info
== NULL
) {
62 static WERROR
dreplsrv_connect_samdb(struct dreplsrv_service
*service
, struct loadparm_context
*lp_ctx
)
64 const struct GUID
*ntds_guid
;
65 struct drsuapi_DsBindInfo28
*bind_info28
;
67 service
->samdb
= samdb_connect(service
, service
->task
->event_ctx
, lp_ctx
, service
->system_session_info
, 0);
68 if (!service
->samdb
) {
69 return WERR_DS_UNAVAILABLE
;
72 ntds_guid
= samdb_ntds_objectGUID(service
->samdb
);
74 return WERR_DS_UNAVAILABLE
;
76 service
->ntds_guid
= *ntds_guid
;
78 if (samdb_rodc(service
->samdb
, &service
->am_rodc
) != LDB_SUCCESS
) {
79 DEBUG(0,(__location__
": Failed to determine RODC status\n"));
80 return WERR_DS_UNAVAILABLE
;
83 bind_info28
= &service
->bind_info28
;
84 bind_info28
->supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_BASE
;
85 bind_info28
->supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_ASYNC_REPLICATION
;
86 bind_info28
->supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_REMOVEAPI
;
87 bind_info28
->supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_MOVEREQ_V2
;
88 bind_info28
->supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_GETCHG_COMPRESS
;
89 bind_info28
->supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_DCINFO_V1
;
90 bind_info28
->supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_RESTORE_USN_OPTIMIZATION
;
91 bind_info28
->supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_KCC_EXECUTE
;
92 bind_info28
->supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_ADDENTRY_V2
;
93 bind_info28
->supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_LINKED_VALUE_REPLICATION
;
94 bind_info28
->supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_DCINFO_V2
;
95 bind_info28
->supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_INSTANCE_TYPE_NOT_REQ_ON_MOD
;
96 bind_info28
->supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_CRYPTO_BIND
;
97 bind_info28
->supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_GET_REPL_INFO
;
98 bind_info28
->supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_STRONG_ENCRYPTION
;
99 bind_info28
->supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_DCINFO_V01
;
100 bind_info28
->supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_TRANSITIVE_MEMBERSHIP
;
101 bind_info28
->supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_ADD_SID_HISTORY
;
102 bind_info28
->supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_POST_BETA3
;
103 bind_info28
->supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_GETCHGREQ_V5
;
104 bind_info28
->supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_GET_MEMBERSHIPS2
;
105 bind_info28
->supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_GETCHGREQ_V6
;
106 bind_info28
->supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_NONDOMAIN_NCS
;
107 bind_info28
->supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_GETCHGREQ_V8
;
108 bind_info28
->supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_GETCHGREPLY_V5
;
109 bind_info28
->supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_GETCHGREPLY_V6
;
110 bind_info28
->supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_ADDENTRYREPLY_V3
;
111 bind_info28
->supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_GETCHGREPLY_V7
;
112 bind_info28
->supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_VERIFY_OBJECT
;
113 #if 0 /* we don't support XPRESS compression yet */
114 bind_info28
->supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_XPRESS_COMPRESS
;
116 /* TODO: fill in site_guid */
117 bind_info28
->site_guid
= GUID_zero();
118 /* TODO: find out how this is really triggered! */
119 bind_info28
->pid
= 0;
120 bind_info28
->repl_epoch
= 0;
127 * Callback for dreplsrv_out_operation operation completion.
129 * We just need to complete a waiting IRPC message here.
130 * In case pull operation has failed,
131 * caller of this callback will dump
132 * failure information.
134 * NOTE: cb_data is allocated in IRPC msg's context
135 * and will be freed during irpc_send_reply() call.
137 static void _drepl_replica_sync_done_cb(struct dreplsrv_service
*service
,
139 enum drsuapi_DsExtendedError ext_err
,
142 struct drepl_replica_sync_cb_data
*data
= talloc_get_type(cb_data
,
143 struct drepl_replica_sync_cb_data
);
144 struct irpc_message
*msg
= data
->msg
;
145 struct drsuapi_DsReplicaSync
*r
= data
->r
;
147 /* store last bad result */
148 if (W_ERROR_IS_OK(werr
)) {
149 data
->werr_last_failure
= werr
;
152 /* decrement pending ops count */
155 if (data
->ops_count
== 0) {
156 /* Return result to client */
157 r
->out
.result
= data
->werr_last_failure
;
159 /* complete IRPC message */
160 irpc_send_reply(msg
, NT_STATUS_OK
);
165 * Helper to schedule a replication operation with a source DSA.
166 * If 'data' is valid pointer, then a callback
167 * for the operation is passed and 'data->msg' is
168 * marked as 'deferred' - defer_reply = true
170 static WERROR
_drepl_schedule_replication(struct dreplsrv_service
*service
,
171 struct dreplsrv_partition_source_dsa
*dsa
,
172 struct drsuapi_DsReplicaObjectIdentifier
*nc
,
173 uint32_t rep_options
,
174 struct drepl_replica_sync_cb_data
*data
,
178 dreplsrv_extended_callback_t fn_callback
= NULL
;
181 fn_callback
= _drepl_replica_sync_done_cb
;
184 /* schedule replication item */
185 werr
= dreplsrv_schedule_partition_pull_source(service
, dsa
, rep_options
,
186 DRSUAPI_EXOP_NONE
, 0,
188 if (!W_ERROR_IS_OK(werr
)) {
189 DEBUG(0,("%s: failed setup of sync of partition (%s, %s, %s) - %s\n",
191 GUID_string(mem_ctx
, &nc
->guid
),
193 dsa
->repsFrom1
->other_info
->dns_name
,
197 /* log we've scheduled a replication item */
198 DEBUG(3,("%s: forcing sync of partition (%s, %s, %s)\n",
200 GUID_string(mem_ctx
, &nc
->guid
),
202 dsa
->repsFrom1
->other_info
->dns_name
));
204 /* mark IRPC message as deferred if necessary */
207 data
->msg
->defer_reply
= true;
214 DsReplicaSync messages from the DRSUAPI server are forwarded here
216 static NTSTATUS
drepl_replica_sync(struct irpc_message
*msg
,
217 struct drsuapi_DsReplicaSync
*r
)
220 struct dreplsrv_partition
*p
;
221 struct drepl_replica_sync_cb_data
*cb_data
;
222 struct dreplsrv_partition_source_dsa
*dsa
;
223 struct drsuapi_DsReplicaSyncRequest1
*req1
;
224 struct drsuapi_DsReplicaObjectIdentifier
*nc
;
225 struct dreplsrv_service
*service
= talloc_get_type(msg
->private_data
,
226 struct dreplsrv_service
);
228 #define REPLICA_SYNC_FAIL(_msg, _werr) do {\
229 if (!W_ERROR_IS_OK(_werr)) { \
230 DEBUG(0,(__location__ ": Failure - %s. werr = %s\n", \
231 _msg, win_errstr(_werr))); \
232 NDR_PRINT_IN_DEBUG(drsuapi_DsReplicaSync, r); \
234 r->out.result = _werr; \
239 if (r
->in
.level
!= 1) {
240 REPLICA_SYNC_FAIL("Unsupported level",
241 WERR_DS_DRA_INVALID_PARAMETER
);
244 req1
= &r
->in
.req
->req1
;
245 nc
= req1
->naming_context
;
247 /* Check input parameters */
249 REPLICA_SYNC_FAIL("Invalid Naming Context",
250 WERR_DS_DRA_INVALID_PARAMETER
);
253 /* Find Naming context to be synchronized */
254 werr
= dreplsrv_partition_find_for_nc(service
,
255 &nc
->guid
, &nc
->sid
, nc
->dn
,
257 if (!W_ERROR_IS_OK(werr
)) {
258 REPLICA_SYNC_FAIL("Failed to find requested Naming Context",
262 /* should we process it asynchronously? */
263 if (req1
->options
& DRSUAPI_DRS_ASYNC_OP
) {
266 cb_data
= talloc_zero(msg
, struct drepl_replica_sync_cb_data
);
268 REPLICA_SYNC_FAIL("Not enought memory",
269 WERR_DS_DRA_INTERNAL_ERROR
);
274 cb_data
->werr_last_failure
= WERR_OK
;
277 /* collect source DSAs to sync with */
278 if (req1
->options
& DRSUAPI_DRS_SYNC_ALL
) {
279 for (dsa
= p
->sources
; dsa
; dsa
= dsa
->next
) {
280 /* schedule replication item */
281 werr
= _drepl_schedule_replication(service
, dsa
, nc
,
282 req1
->options
, cb_data
, msg
);
283 if (!W_ERROR_IS_OK(werr
)) {
284 REPLICA_SYNC_FAIL("_drepl_schedule_replication() failed",
289 if (req1
->options
& DRSUAPI_DRS_SYNC_BYNAME
) {
290 /* client should pass at least valid string */
291 if (!req1
->source_dsa_dns
) {
292 REPLICA_SYNC_FAIL("'source_dsa_dns' is not valid",
293 WERR_DS_DRA_INVALID_PARAMETER
);
296 werr
= dreplsrv_partition_source_dsa_by_dns(p
,
297 req1
->source_dsa_dns
,
300 /* client should pass at least some GUID */
301 if (GUID_all_zero(&req1
->source_dsa_guid
)) {
302 REPLICA_SYNC_FAIL("'source_dsa_guid' is not valid",
303 WERR_DS_DRA_INVALID_PARAMETER
);
306 werr
= dreplsrv_partition_source_dsa_by_guid(p
,
307 &req1
->source_dsa_guid
,
310 if (!W_ERROR_IS_OK(werr
)) {
311 REPLICA_SYNC_FAIL("Failed to locate source DSA for given NC",
315 /* schedule replication item */
316 werr
= _drepl_schedule_replication(service
, dsa
, nc
,
317 req1
->options
, cb_data
, msg
);
318 if (!W_ERROR_IS_OK(werr
)) {
319 REPLICA_SYNC_FAIL("_drepl_schedule_replication() failed",
324 /* if we got here, everything is OK */
325 r
->out
.result
= WERR_OK
;
327 /* force execution of scheduled replications */
328 dreplsrv_run_pending_ops(service
);
335 * Called when drplsrv should refresh its state.
336 * For example, when KCC change topology, dreplsrv
337 * should update its cache
339 * @param partition_dn If not empty/NULL, partition to update
341 static NTSTATUS
dreplsrv_refresh(struct irpc_message
*msg
,
342 struct dreplsrv_refresh
*r
)
344 struct dreplsrv_service
*s
= talloc_get_type(msg
->private_data
,
345 struct dreplsrv_service
);
347 r
->out
.result
= dreplsrv_refresh_partitions(s
);
352 static NTSTATUS
drepl_take_FSMO_role(struct irpc_message
*msg
,
353 struct drepl_takeFSMORole
*r
)
355 struct dreplsrv_service
*service
= talloc_get_type(msg
->private_data
,
356 struct dreplsrv_service
);
357 r
->out
.result
= dreplsrv_fsmo_role_check(service
, r
->in
.role
);
362 * Called when the auth code wants us to try and replicate
365 static NTSTATUS
drepl_trigger_repl_secret(struct irpc_message
*msg
,
366 struct drepl_trigger_repl_secret
*r
)
368 struct dreplsrv_service
*service
= talloc_get_type(msg
->private_data
,
369 struct dreplsrv_service
);
372 drepl_repl_secret(service
, r
->in
.user_dn
);
374 /* we are not going to be sending a reply to this request */
375 msg
->no_reply
= true;
382 DsReplicaAdd messages from the DRSUAPI server are forwarded here
384 static NTSTATUS
dreplsrv_replica_add(struct irpc_message
*msg
,
385 struct drsuapi_DsReplicaAdd
*r
)
387 struct dreplsrv_service
*service
= talloc_get_type(msg
->private_data
,
388 struct dreplsrv_service
);
389 return drepl_replica_add(service
, r
);
393 DsReplicaDel messages from the DRSUAPI server are forwarded here
395 static NTSTATUS
dreplsrv_replica_del(struct irpc_message
*msg
,
396 struct drsuapi_DsReplicaDel
*r
)
398 struct dreplsrv_service
*service
= talloc_get_type(msg
->private_data
,
399 struct dreplsrv_service
);
400 return drepl_replica_del(service
, r
);
404 DsReplicaMod messages from the DRSUAPI server are forwarded here
406 static NTSTATUS
dreplsrv_replica_mod(struct irpc_message
*msg
,
407 struct drsuapi_DsReplicaMod
*r
)
409 struct dreplsrv_service
*service
= talloc_get_type(msg
->private_data
,
410 struct dreplsrv_service
);
411 return drepl_replica_mod(service
, r
);
416 startup the dsdb replicator service task
418 static void dreplsrv_task_init(struct task_server
*task
)
421 struct dreplsrv_service
*service
;
422 uint32_t periodic_startup_interval
;
424 switch (lpcfg_server_role(task
->lp_ctx
)) {
425 case ROLE_STANDALONE
:
426 task_server_terminate(task
, "dreplsrv: no DSDB replication required in standalone configuration",
429 case ROLE_DOMAIN_MEMBER
:
430 task_server_terminate(task
, "dreplsrv: no DSDB replication required in domain member configuration",
433 case ROLE_DOMAIN_CONTROLLER
:
434 /* Yes, we want DSDB replication */
438 task_server_set_title(task
, "task[dreplsrv]");
440 service
= talloc_zero(task
, struct dreplsrv_service
);
442 task_server_terminate(task
, "dreplsrv_task_init: out of memory", true);
445 service
->task
= task
;
446 service
->startup_time
= timeval_current();
447 task
->private_data
= service
;
449 status
= dreplsrv_init_creds(service
);
450 if (!W_ERROR_IS_OK(status
)) {
451 task_server_terminate(task
, talloc_asprintf(task
,
452 "dreplsrv: Failed to obtain server credentials: %s\n",
453 win_errstr(status
)), true);
457 status
= dreplsrv_connect_samdb(service
, task
->lp_ctx
);
458 if (!W_ERROR_IS_OK(status
)) {
459 task_server_terminate(task
, talloc_asprintf(task
,
460 "dreplsrv: Failed to connect to local samdb: %s\n",
461 win_errstr(status
)), true);
465 status
= dreplsrv_load_partitions(service
);
466 if (!W_ERROR_IS_OK(status
)) {
467 task_server_terminate(task
, talloc_asprintf(task
,
468 "dreplsrv: Failed to load partitions: %s\n",
469 win_errstr(status
)), true);
473 periodic_startup_interval
= lpcfg_parm_int(task
->lp_ctx
, NULL
, "dreplsrv", "periodic_startup_interval", 15); /* in seconds */
474 service
->periodic
.interval
= lpcfg_parm_int(task
->lp_ctx
, NULL
, "dreplsrv", "periodic_interval", 300); /* in seconds */
476 status
= dreplsrv_periodic_schedule(service
, periodic_startup_interval
);
477 if (!W_ERROR_IS_OK(status
)) {
478 task_server_terminate(task
, talloc_asprintf(task
,
479 "dreplsrv: Failed to periodic schedule: %s\n",
480 win_errstr(status
)), true);
484 /* if we are a RODC then we do not send DSReplicaSync*/
485 if (!service
->am_rodc
) {
486 service
->notify
.interval
= lpcfg_parm_int(task
->lp_ctx
, NULL
, "dreplsrv",
487 "notify_interval", 5); /* in seconds */
488 status
= dreplsrv_notify_schedule(service
, service
->notify
.interval
);
489 if (!W_ERROR_IS_OK(status
)) {
490 task_server_terminate(task
, talloc_asprintf(task
,
491 "dreplsrv: Failed to setup notify schedule: %s\n",
492 win_errstr(status
)), true);
497 irpc_add_name(task
->msg_ctx
, "dreplsrv");
499 IRPC_REGISTER(task
->msg_ctx
, irpc
, DREPLSRV_REFRESH
, dreplsrv_refresh
, service
);
500 IRPC_REGISTER(task
->msg_ctx
, drsuapi
, DRSUAPI_DSREPLICASYNC
, drepl_replica_sync
, service
);
501 IRPC_REGISTER(task
->msg_ctx
, drsuapi
, DRSUAPI_DSREPLICAADD
, dreplsrv_replica_add
, service
);
502 IRPC_REGISTER(task
->msg_ctx
, drsuapi
, DRSUAPI_DSREPLICADEL
, dreplsrv_replica_del
, service
);
503 IRPC_REGISTER(task
->msg_ctx
, drsuapi
, DRSUAPI_DSREPLICAMOD
, dreplsrv_replica_mod
, service
);
504 IRPC_REGISTER(task
->msg_ctx
, irpc
, DREPL_TAKEFSMOROLE
, drepl_take_FSMO_role
, service
);
505 IRPC_REGISTER(task
->msg_ctx
, irpc
, DREPL_TRIGGER_REPL_SECRET
, drepl_trigger_repl_secret
, service
);
506 messaging_register(task
->msg_ctx
, service
, MSG_DREPL_ALLOCATE_RID
, dreplsrv_allocate_rid
);
510 register ourselves as a available server
512 NTSTATUS
server_service_drepl_init(void)
514 return register_server_service("drepl", dreplsrv_task_init
);