s4-repl: fixed _msdcs DNS name
[nivanova/samba-autobuild/.git] / source4 / dsdb / repl / drepl_extended.c
1 /*
2    Unix SMB/CIFS mplementation.
3
4    DSDB replication service - extended operation code
5
6    Copyright (C) Andrew Tridgell 2010
7    Copyright (C) Andrew Bartlett 2010
8    Copyright (C) Nadezhda Ivanova 2010
9
10    based on drepl_notify.c
11
12    This program is free software; you can redistribute it and/or modify
13    it under the terms of the GNU General Public License as published by
14    the Free Software Foundation; either version 3 of the License, or
15    (at your option) any later version.
16
17    This program is distributed in the hope that it will be useful,
18    but WITHOUT ANY WARRANTY; without even the implied warranty of
19    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20    GNU General Public License for more details.
21
22    You should have received a copy of the GNU General Public License
23    along with this program.  If not, see <http://www.gnu.org/licenses/>.
24
25 */
26
27 #include "includes.h"
28 #include "ldb_module.h"
29 #include "dsdb/samdb/samdb.h"
30 #include "smbd/service.h"
31 #include "dsdb/repl/drepl_service.h"
32 #include "param/param.h"
33
34
35 /*
36   create the role owner source dsa structure
37
38   nc_dn: the DN of the subtree being replicated
39   source_dsa_dn: the DN of the server that we are replicating from
40  */
41 static WERROR drepl_create_extended_source_dsa(struct dreplsrv_service *service,
42                                                struct ldb_dn *nc_dn,
43                                                struct ldb_dn *source_dsa_dn,
44                                                uint64_t min_usn,
45                                                struct dreplsrv_partition_source_dsa **_sdsa)
46 {
47         struct dreplsrv_partition_source_dsa *sdsa;
48         struct ldb_context *ldb = service->samdb;
49         int ret;
50         WERROR werr;
51         struct ldb_dn *nc_root;
52         struct dreplsrv_partition *p;
53
54         sdsa = talloc_zero(service, struct dreplsrv_partition_source_dsa);
55         W_ERROR_HAVE_NO_MEMORY(sdsa);
56
57         sdsa->partition = talloc_zero(sdsa, struct dreplsrv_partition);
58         if (!sdsa->partition) {
59                 talloc_free(sdsa);
60                 return WERR_NOMEM;
61         }
62
63         sdsa->partition->dn = ldb_dn_copy(sdsa->partition, nc_dn);
64         if (!sdsa->partition->dn) {
65                 talloc_free(sdsa);
66                 return WERR_NOMEM;
67         }
68         sdsa->partition->nc.dn = ldb_dn_alloc_linearized(sdsa->partition, nc_dn);
69         if (!sdsa->partition->nc.dn) {
70                 talloc_free(sdsa);
71                 return WERR_NOMEM;
72         }
73         ret = dsdb_find_guid_by_dn(ldb, nc_dn, &sdsa->partition->nc.guid);
74         if (ret != LDB_SUCCESS) {
75                 DEBUG(0,(__location__ ": Failed to find GUID for %s\n",
76                          ldb_dn_get_linearized(nc_dn)));
77                 talloc_free(sdsa);
78                 return WERR_DS_DRA_INTERNAL_ERROR;
79         }
80
81         sdsa->repsFrom1 = &sdsa->_repsFromBlob.ctr.ctr1;
82         ret = dsdb_find_guid_by_dn(ldb, source_dsa_dn, &sdsa->repsFrom1->source_dsa_obj_guid);
83         if (ret != LDB_SUCCESS) {
84                 DEBUG(0,(__location__ ": Failed to find objectGUID for %s\n",
85                          ldb_dn_get_linearized(source_dsa_dn)));
86                 talloc_free(sdsa);
87                 return WERR_DS_DRA_INTERNAL_ERROR;
88         }
89
90         sdsa->repsFrom1->other_info = talloc_zero(sdsa, struct repsFromTo1OtherInfo);
91         if (!sdsa->repsFrom1->other_info) {
92                 talloc_free(sdsa);
93                 return WERR_NOMEM;
94         }
95
96         sdsa->repsFrom1->other_info->dns_name = samdb_ntds_msdcs_dns_name(ldb,
97                                                                           sdsa->repsFrom1->other_info,
98                                                                           &sdsa->repsFrom1->source_dsa_obj_guid);
99         if (!sdsa->repsFrom1->other_info->dns_name) {
100                 talloc_free(sdsa);
101                 return WERR_NOMEM;
102         }
103
104         werr = dreplsrv_out_connection_attach(service, sdsa->repsFrom1, &sdsa->conn);
105         if (!W_ERROR_IS_OK(werr)) {
106                 DEBUG(0,(__location__ ": Failed to attach connection to %s\n",
107                          ldb_dn_get_linearized(nc_dn)));
108                 talloc_free(sdsa);
109                 return werr;
110         }
111
112         ret = dsdb_find_nc_root(service->samdb, sdsa, nc_dn, &nc_root);
113         if (ret != LDB_SUCCESS) {
114                 DEBUG(0,(__location__ ": Failed to find nc_root for %s\n",
115                          ldb_dn_get_linearized(nc_dn)));
116                 talloc_free(sdsa);
117                 return WERR_DS_DRA_INTERNAL_ERROR;
118         }
119
120         /* use the partition uptodateness vector */
121         ret = dsdb_load_udv_v2(service->samdb, nc_root, sdsa->partition,
122                                &sdsa->partition->uptodatevector.cursors,
123                                &sdsa->partition->uptodatevector.count);
124         if (ret != LDB_SUCCESS) {
125                 DEBUG(0,(__location__ ": Failed to load UDV for %s\n",
126                          ldb_dn_get_linearized(nc_root)));
127                 talloc_free(sdsa);
128                 return WERR_DS_DRA_INTERNAL_ERROR;
129         }
130
131         /* find the highwatermark from the partitions list */
132         for (p=service->partitions; p; p=p->next) {
133                 if (ldb_dn_compare(p->dn, nc_root) == 0) {
134                         struct dreplsrv_partition_source_dsa *s;
135                         werr = dreplsrv_partition_source_dsa_by_guid(p,
136                                                                      &sdsa->repsFrom1->source_dsa_obj_guid,
137                                                                      &s);
138                         if (W_ERROR_IS_OK(werr)) {
139                                 sdsa->repsFrom1->highwatermark = s->repsFrom1->highwatermark;
140                                 sdsa->repsFrom1->replica_flags = s->repsFrom1->replica_flags;
141                         }
142                 }
143         }
144
145         if (!service->am_rodc) {
146                 sdsa->repsFrom1->replica_flags |= DRSUAPI_DRS_WRIT_REP;
147         }
148
149         *_sdsa = sdsa;
150         return WERR_OK;
151 }
152
153 struct extended_op_data {
154         dreplsrv_extended_callback_t callback;
155         void *callback_data;
156         struct dreplsrv_partition_source_dsa *sdsa;
157 };
158
159 /*
160   called when an extended op finishes
161  */
162 static void extended_op_callback(struct dreplsrv_service *service,
163                                  WERROR err,
164                                  enum drsuapi_DsExtendedError exop_error,
165                                  void *cb_data)
166 {
167         struct extended_op_data *data = talloc_get_type_abort(cb_data, struct extended_op_data);
168         talloc_free(data->sdsa);
169         data->callback(service, err, exop_error, data->callback_data);
170         talloc_free(data);
171 }
172
173 /*
174   schedule a getncchanges request to the role owner for an extended operation
175  */
176 WERROR drepl_request_extended_op(struct dreplsrv_service *service,
177                                  struct ldb_dn *nc_dn,
178                                  struct ldb_dn *source_dsa_dn,
179                                  enum drsuapi_DsExtendedOperation extended_op,
180                                  uint64_t fsmo_info,
181                                  uint64_t min_usn,
182                                  dreplsrv_extended_callback_t callback,
183                                  void *callback_data)
184 {
185         WERROR werr;
186         struct extended_op_data *data;
187         struct dreplsrv_partition_source_dsa *sdsa;
188
189         werr = drepl_create_extended_source_dsa(service, nc_dn, source_dsa_dn, min_usn, &sdsa);
190         W_ERROR_NOT_OK_RETURN(werr);
191
192         data = talloc(service, struct extended_op_data);
193         W_ERROR_HAVE_NO_MEMORY(data);
194
195         data->callback = callback;
196         data->callback_data = callback_data;
197         data->sdsa = sdsa;
198
199         werr = dreplsrv_schedule_partition_pull_source(service, sdsa,
200                                                        0, extended_op, fsmo_info,
201                                                        extended_op_callback, data);
202         if (!W_ERROR_IS_OK(werr)) {
203                 talloc_free(sdsa);
204                 talloc_free(data);
205         }
206
207         dreplsrv_run_pending_ops(service);
208
209         return werr;
210 }