samba_spnupdate: do not interpret failure count as unix error code
[nivanova/samba-autobuild/.git] / source4 / dsdb / dns / dns_update.c
1 /*
2    Unix SMB/CIFS mplementation.
3
4    DNS update service
5
6    Copyright (C) Andrew Tridgell 2009
7
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.
12
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.
17
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/>.
20
21 */
22
23 /*
24   this module auto-creates the named.conf.update file, which tells
25   bind9 what KRB5 principals it should accept for updates to our zone
26
27   It also uses the samba_dnsupdate script to auto-create the right DNS
28   names for ourselves as a DC in the domain, using TSIG-GSS
29  */
30
31 #include "includes.h"
32 #include "dsdb/samdb/samdb.h"
33 #include "auth/auth.h"
34 #include "smbd/service.h"
35 #include "lib/messaging/irpc.h"
36 #include "param/param.h"
37 #include "system/filesys.h"
38 #include "dsdb/common/util.h"
39 #include "libcli/composite/composite.h"
40 #include "libcli/security/dom_sid.h"
41 #include "librpc/gen_ndr/ndr_irpc.h"
42 #include "libds/common/roles.h"
43
44 NTSTATUS server_service_dnsupdate_init(void);
45
46 struct dnsupdate_service {
47         struct task_server *task;
48         struct auth_session_info *system_session_info;
49         struct ldb_context *samdb;
50
51         /* status for periodic config file update */
52         struct {
53                 uint32_t interval;
54                 struct tevent_timer *te;
55                 struct tevent_req *subreq;
56                 NTSTATUS status;
57         } confupdate;
58
59         /* status for periodic DNS name check */
60         struct {
61                 uint32_t interval;
62                 struct tevent_timer *te;
63                 struct tevent_req *subreq;
64                 struct tevent_req *spnreq;
65                 NTSTATUS status;
66         } nameupdate;
67 };
68
69 /*
70   called when rndc reload has finished
71  */
72 static void dnsupdate_rndc_done(struct tevent_req *subreq)
73 {
74         struct dnsupdate_service *service = tevent_req_callback_data(subreq,
75                                             struct dnsupdate_service);
76         int ret;
77         int sys_errno;
78
79         service->confupdate.subreq = NULL;
80
81         ret = samba_runcmd_recv(subreq, &sys_errno);
82         TALLOC_FREE(subreq);
83         if (ret != 0) {
84                 service->confupdate.status = map_nt_error_from_unix_common(sys_errno);
85         } else {
86                 service->confupdate.status = NT_STATUS_OK;
87         }
88
89         if (!NT_STATUS_IS_OK(service->confupdate.status)) {
90                 DEBUG(0,(__location__ ": Failed rndc update - %s\n",
91                          nt_errstr(service->confupdate.status)));
92         } else {
93                 DEBUG(3,("Completed rndc reload OK\n"));
94         }
95 }
96
97 /*
98   called every 'dnsupdate:conf interval' seconds
99  */
100 static void dnsupdate_rebuild(struct dnsupdate_service *service)
101 {
102         int ret;
103         size_t size;
104         struct ldb_result *res1, *res2;
105         const char *tmp_path, *path, *path_static;
106         char *static_policies;
107         int fd;
108         unsigned int i;
109         const char *attrs1[] = { "msDS-HasDomainNCs", NULL };
110         const char *attrs2[] = { "name", NULL };
111         const char *realm = lpcfg_realm(service->task->lp_ctx);
112         TALLOC_CTX *tmp_ctx = talloc_new(service);
113         const char * const *rndc_command = lpcfg_rndc_command(service->task->lp_ctx);
114         const char **dc_list;
115         int dc_count=0;
116
117         /* abort any pending script run */
118         TALLOC_FREE(service->confupdate.subreq);
119
120         /* find the DNs for all the non-RODC DCs in the forest */
121         ret = dsdb_search(service->samdb, tmp_ctx, &res1, ldb_get_config_basedn(service->samdb),
122                           LDB_SCOPE_SUBTREE,
123                           attrs1,
124                           0,
125                           "(&(objectclass=NTDSDSA)(!(msDS-isRODC=TRUE)))");
126         if (ret != LDB_SUCCESS) {
127                 DEBUG(0,(__location__ ": Unable to find DCs list - %s", ldb_errstring(service->samdb)));
128                 talloc_free(tmp_ctx);
129                 return;
130         }
131
132         dc_list = talloc_array(tmp_ctx, const char *, 0);
133         for (i=0; i<res1->count; i++) {
134                 struct ldb_dn *server_dn = res1->msgs[i]->dn;
135                 struct ldb_dn *domain_dn;
136                 const char *acct_name, *full_account, *dns_domain;
137
138                 /* this is a nasty hack to form the account name of
139                  * this DC. We do it this way as we don't necessarily
140                  * have access to the domain NC, so all we have to go
141                  * on is what is in the configuration partition
142                  */
143
144                 domain_dn = ldb_msg_find_attr_as_dn(service->samdb, tmp_ctx, res1->msgs[i], "msDS-HasDomainNCs");
145                 if (domain_dn == NULL) continue;
146
147                 ldb_dn_remove_child_components(server_dn, 1);
148                 ret = dsdb_search_dn(service->samdb, tmp_ctx, &res2, server_dn, attrs2, 0);
149                 if (ret != LDB_SUCCESS) {
150                         continue;
151                 }
152
153                 acct_name = ldb_msg_find_attr_as_string(res2->msgs[0], "name", NULL);
154                 if (acct_name == NULL) continue;
155
156                 dns_domain = samdb_dn_to_dns_domain(tmp_ctx, domain_dn);
157                 if (dns_domain == NULL) {
158                         continue;
159                 }
160
161                 full_account = talloc_asprintf(tmp_ctx, "%s$@%s", acct_name, dns_domain);
162                 if (full_account == NULL) continue;
163
164                 dc_list = talloc_realloc(tmp_ctx, dc_list, const char *, dc_count+1);
165                 if (dc_list == NULL) {
166                         continue;
167                 }
168                 dc_list[dc_count++] = full_account;
169         }
170
171         path = lpcfg_parm_string(service->task->lp_ctx, NULL, "dnsupdate", "path");
172         if (path == NULL) {
173                 path = lpcfg_private_path(tmp_ctx, service->task->lp_ctx, "named.conf.update");
174         }
175
176         path_static = lpcfg_parm_string(service->task->lp_ctx, NULL, "dnsupdate", "extra_static_grant_rules");
177         if (path_static == NULL) {
178                 path_static = lpcfg_private_path(tmp_ctx, service->task->lp_ctx, "named.conf.update.static");
179         }
180
181         tmp_path = talloc_asprintf(tmp_ctx, "%s.tmp", path);
182         if (path == NULL || tmp_path == NULL || path_static == NULL ) {
183                 DEBUG(0,(__location__ ": Unable to get paths\n"));
184                 talloc_free(tmp_ctx);
185                 return;
186         }
187
188         static_policies = file_load(path_static, &size, 0, tmp_ctx);
189
190         unlink(tmp_path);
191         fd = open(tmp_path, O_CREAT|O_TRUNC|O_WRONLY, 0444);
192         if (fd == -1) {
193                 DEBUG(1,(__location__ ": Unable to open %s - %s\n", tmp_path, strerror(errno)));
194                 talloc_free(tmp_ctx);
195                 return;
196         }
197
198         dprintf(fd, "/* this file is auto-generated - do not edit */\n");
199         dprintf(fd, "update-policy {\n");
200         if( static_policies != NULL ) {
201                 dprintf(fd, "/* Start of static entries */\n");
202                 dprintf(fd, "%s\n",static_policies);
203                 dprintf(fd, "/* End of static entries */\n");
204         }
205         dprintf(fd, "\tgrant %s ms-self * A AAAA;\n", realm);
206         dprintf(fd, "\tgrant Administrator@%s wildcard * A AAAA SRV CNAME;\n", realm);
207
208         for (i=0; i<dc_count; i++) {
209                 dprintf(fd, "\tgrant %s wildcard * A AAAA SRV CNAME;\n", dc_list[i]);
210         }
211         dprintf(fd, "};\n");
212         close(fd);
213
214
215         if (NT_STATUS_IS_OK(service->confupdate.status) &&
216             file_compare(tmp_path, path) == true) {
217                 unlink(tmp_path);
218                 talloc_free(tmp_ctx);
219                 return;
220         }
221
222         if (rename(tmp_path, path) != 0) {
223                 DEBUG(0,(__location__ ": Failed to rename %s to %s - %s\n",
224                          tmp_path, path, strerror(errno)));
225                 talloc_free(tmp_ctx);
226                 return;
227         }
228
229         DEBUG(2,("Loading new DNS update grant rules\n"));
230         service->confupdate.subreq = samba_runcmd_send(service,
231                                                        service->task->event_ctx,
232                                                        timeval_current_ofs(10, 0),
233                                                        2, 0,
234                                                        rndc_command,
235                                                        "reload", NULL);
236         if (service->confupdate.subreq == NULL) {
237                 DEBUG(0,(__location__ ": samba_runcmd_send() failed with no memory\n"));
238                 talloc_free(tmp_ctx);
239                 return;
240         }
241         tevent_req_set_callback(service->confupdate.subreq,
242                                 dnsupdate_rndc_done,
243                                 service);
244
245         talloc_free(tmp_ctx);
246 }
247
248 static NTSTATUS dnsupdate_confupdate_schedule(struct dnsupdate_service *service);
249
250 /*
251   called every 'dnsupdate:conf interval' seconds
252  */
253 static void dnsupdate_confupdate_handler_te(struct tevent_context *ev, struct tevent_timer *te,
254                                           struct timeval t, void *ptr)
255 {
256         struct dnsupdate_service *service = talloc_get_type(ptr, struct dnsupdate_service);
257
258         dnsupdate_rebuild(service);
259         dnsupdate_confupdate_schedule(service);
260 }
261
262
263 static NTSTATUS dnsupdate_confupdate_schedule(struct dnsupdate_service *service)
264 {
265         service->confupdate.te = tevent_add_timer(service->task->event_ctx, service,
266                                                 timeval_current_ofs(service->confupdate.interval, 0),
267                                                 dnsupdate_confupdate_handler_te, service);
268         NT_STATUS_HAVE_NO_MEMORY(service->confupdate.te);
269         return NT_STATUS_OK;
270 }
271
272
273 /*
274   called when dns update script has finished
275  */
276 static void dnsupdate_nameupdate_done(struct tevent_req *subreq)
277 {
278         struct dnsupdate_service *service = tevent_req_callback_data(subreq,
279                                             struct dnsupdate_service);
280         int ret;
281         int sys_errno;
282
283         service->nameupdate.subreq = NULL;
284
285         ret = samba_runcmd_recv(subreq, &sys_errno);
286         TALLOC_FREE(subreq);
287
288         if (ret != 0) {
289                 DEBUG(0,(__location__ ": Failed DNS update - with error code %d\n",
290                          sys_errno));
291         } else {
292                 DEBUG(3,("Completed DNS update check OK\n"));
293         }
294 }
295
296
297 /*
298   called when spn update script has finished
299  */
300 static void dnsupdate_spnupdate_done(struct tevent_req *subreq)
301 {
302         struct dnsupdate_service *service = tevent_req_callback_data(subreq,
303                                             struct dnsupdate_service);
304         int ret;
305         int sys_errno;
306
307         service->nameupdate.spnreq = NULL;
308
309         ret = samba_runcmd_recv(subreq, &sys_errno);
310         TALLOC_FREE(subreq);
311         if (ret != 0) {
312                 DEBUG(0,(__location__ ": Failed SPN update - with error code %d\n",
313                          sys_errno));
314         } else {
315                 DEBUG(3,("Completed SPN update check OK\n"));
316         }
317 }
318
319 /*
320   called every 'dnsupdate:name interval' seconds
321  */
322 static void dnsupdate_check_names(struct dnsupdate_service *service)
323 {
324         const char * const *dns_update_command = lpcfg_dns_update_command(service->task->lp_ctx);
325         const char * const *spn_update_command = lpcfg_spn_update_command(service->task->lp_ctx);
326
327         /* kill any existing child */
328         TALLOC_FREE(service->nameupdate.subreq);
329
330         DEBUG(3,("Calling DNS name update script\n"));
331         service->nameupdate.subreq = samba_runcmd_send(service,
332                                                        service->task->event_ctx,
333                                                        timeval_current_ofs(20, 0),
334                                                        2, 0,
335                                                        dns_update_command,
336                                                        NULL);
337         if (service->nameupdate.subreq == NULL) {
338                 DEBUG(0,(__location__ ": samba_runcmd_send() failed with no memory\n"));
339                 return;
340         }
341         tevent_req_set_callback(service->nameupdate.subreq,
342                                 dnsupdate_nameupdate_done,
343                                 service);
344
345         DEBUG(3,("Calling SPN name update script\n"));
346         service->nameupdate.spnreq = samba_runcmd_send(service,
347                                                        service->task->event_ctx,
348                                                        timeval_current_ofs(20, 0),
349                                                        2, 0,
350                                                        spn_update_command,
351                                                        NULL);
352         if (service->nameupdate.spnreq == NULL) {
353                 DEBUG(0,(__location__ ": samba_runcmd_send() failed with no memory\n"));
354                 return;
355         }
356         tevent_req_set_callback(service->nameupdate.spnreq,
357                                 dnsupdate_spnupdate_done,
358                                 service);
359 }
360
361 static NTSTATUS dnsupdate_nameupdate_schedule(struct dnsupdate_service *service);
362
363 /*
364   called every 'dnsupdate:name interval' seconds
365  */
366 static void dnsupdate_nameupdate_handler_te(struct tevent_context *ev, struct tevent_timer *te,
367                                             struct timeval t, void *ptr)
368 {
369         struct dnsupdate_service *service = talloc_get_type(ptr, struct dnsupdate_service);
370
371         dnsupdate_check_names(service);
372         dnsupdate_nameupdate_schedule(service);
373 }
374
375
376 static NTSTATUS dnsupdate_nameupdate_schedule(struct dnsupdate_service *service)
377 {
378         service->nameupdate.te = tevent_add_timer(service->task->event_ctx, service,
379                                                   timeval_current_ofs(service->nameupdate.interval, 0),
380                                                   dnsupdate_nameupdate_handler_te, service);
381         NT_STATUS_HAVE_NO_MEMORY(service->nameupdate.te);
382         return NT_STATUS_OK;
383 }
384
385
386 struct dnsupdate_RODC_state {
387         struct irpc_message *msg;
388         struct dnsupdate_RODC *r;
389         char *tmp_path;
390         char *tmp_path2;
391         int fd;
392 };
393
394 static int dnsupdate_RODC_destructor(struct dnsupdate_RODC_state *st)
395 {
396         if (st->fd != -1) {
397                 close(st->fd);
398         }
399         unlink(st->tmp_path);
400         if (st->tmp_path2 != NULL) {
401                 unlink(st->tmp_path2);
402         }
403         return 0;
404 }
405
406 /*
407   called when the DNS update has completed
408  */
409 static void dnsupdate_RODC_callback(struct tevent_req *req)
410 {
411         struct dnsupdate_RODC_state *st =
412                 tevent_req_callback_data(req,
413                                          struct dnsupdate_RODC_state);
414         int sys_errno;
415         int i, ret;
416
417         ret = samba_runcmd_recv(req, &sys_errno);
418         talloc_free(req);
419         if (ret != 0) {
420                 st->r->out.result = map_nt_error_from_unix_common(sys_errno);
421                 DEBUG(2,(__location__ ": RODC DNS Update failed: %s\n", nt_errstr(st->r->out.result)));
422         } else {
423                 st->r->out.result = NT_STATUS_OK;
424                 DEBUG(3,(__location__ ": RODC DNS Update OK\n"));
425         }
426
427         for (i=0; i<st->r->in.dns_names->count; i++) {
428                 st->r->out.dns_names->names[i].status = NT_STATUS_V(st->r->out.result);
429         }
430
431         irpc_send_reply(st->msg, NT_STATUS_OK);
432 }
433
434
435 /**
436  * Called when we get a RODC DNS update request from the netlogon
437  * rpc server
438  */
439 static NTSTATUS dnsupdate_dnsupdate_RODC(struct irpc_message *msg,
440                                          struct dnsupdate_RODC *r)
441 {
442         struct dnsupdate_service *s = talloc_get_type(msg->private_data,
443                                                       struct dnsupdate_service);
444         const char * const *dns_update_command = lpcfg_dns_update_command(s->task->lp_ctx);
445         struct dnsupdate_RODC_state *st;
446         struct tevent_req *req;
447         int i, ret;
448         struct GUID ntds_guid;
449         const char *site, *dnsdomain, *dnsforest, *ntdsguid;
450         const char *hostname = NULL;
451         struct ldb_dn *sid_dn;
452         const char *attrs[] = { "dNSHostName", NULL };
453         struct ldb_result *res;
454
455         st = talloc_zero(msg, struct dnsupdate_RODC_state);
456         if (!st) {
457                 r->out.result = NT_STATUS_NO_MEMORY;
458                 return NT_STATUS_OK;
459         }
460
461         st->r = r;
462         st->msg = msg;
463
464         st->tmp_path = smbd_tmp_path(st, s->task->lp_ctx, "rodcdns.XXXXXX");
465         if (!st->tmp_path) {
466                 talloc_free(st);
467                 r->out.result = NT_STATUS_NO_MEMORY;
468                 return NT_STATUS_OK;
469         }
470
471         st->fd = mkstemp(st->tmp_path);
472         if (st->fd == -1) {
473                 DEBUG(0,("Unable to create a temporary file for RODC dnsupdate\n"));
474                 talloc_free(st);
475                 r->out.result = NT_STATUS_INTERNAL_DB_CORRUPTION;
476                 return NT_STATUS_OK;
477         }
478
479         talloc_set_destructor(st, dnsupdate_RODC_destructor);
480
481         st->tmp_path2 = talloc_asprintf(st, "%s.cache", st->tmp_path);
482         if (!st->tmp_path2) {
483                 talloc_free(st);
484                 r->out.result = NT_STATUS_NO_MEMORY;
485                 return NT_STATUS_OK;
486         }
487
488         sid_dn = ldb_dn_new_fmt(st, s->samdb, "<SID=%s>", dom_sid_string(st, r->in.dom_sid));
489         if (!sid_dn) {
490                 talloc_free(st);
491                 r->out.result = NT_STATUS_NO_MEMORY;
492                 return NT_STATUS_OK;
493         }
494
495         /* work out the site */
496         ret = samdb_find_site_for_computer(s->samdb, st, sid_dn, &site);
497         if (ret != LDB_SUCCESS) {
498                 DEBUG(2, (__location__ ": Unable to find site for computer %s\n",
499                           ldb_dn_get_linearized(sid_dn)));
500                 talloc_free(st);
501                 r->out.result = NT_STATUS_NO_SUCH_USER;
502                 return NT_STATUS_OK;
503         }
504
505         /* work out the ntdsguid */
506         ret = samdb_find_ntdsguid_for_computer(s->samdb, sid_dn, &ntds_guid);
507         ntdsguid = GUID_string(st, &ntds_guid);
508         if (ret != LDB_SUCCESS || !ntdsguid) {
509                 DEBUG(2, (__location__ ": Unable to find NTDS GUID for computer %s\n",
510                           ldb_dn_get_linearized(sid_dn)));
511                 talloc_free(st);
512                 r->out.result = NT_STATUS_NO_SUCH_USER;
513                 return NT_STATUS_OK;
514         }
515
516
517         /* find dnsdomain and dnsforest */
518         dnsdomain = lpcfg_realm(s->task->lp_ctx);
519         dnsforest = dnsdomain;
520
521         /* find the hostname */
522         ret = dsdb_search_dn(s->samdb, st, &res, sid_dn, attrs, 0);
523         if (ret == LDB_SUCCESS) {
524                 hostname = ldb_msg_find_attr_as_string(res->msgs[0], "dNSHostName", NULL);
525         }
526         if (ret != LDB_SUCCESS || !hostname) {
527                 DEBUG(2, (__location__ ": Unable to find NTDS GUID for computer %s\n",
528                           ldb_dn_get_linearized(sid_dn)));
529                 talloc_free(st);
530                 r->out.result = NT_STATUS_NO_SUCH_USER;
531                 return NT_STATUS_OK;
532         }
533
534
535         for (i=0; i<st->r->in.dns_names->count; i++) {
536                 struct NL_DNS_NAME_INFO *n = &r->in.dns_names->names[i];
537                 switch (n->type) {
538                 case NlDnsLdapAtSite:
539                         dprintf(st->fd, "SRV _ldap._tcp.%s._sites.%s. %s %u\n",
540                                 site, dnsdomain, hostname, n->port);
541                         break;
542                 case NlDnsGcAtSite:
543                         dprintf(st->fd, "SRV _ldap._tcp.%s._sites.gc._msdcs.%s. %s %u\n",
544                                 site, dnsdomain, hostname, n->port);
545                         break;
546                 case NlDnsDsaCname:
547                         dprintf(st->fd, "CNAME %s._msdcs.%s. %s\n",
548                                 ntdsguid, dnsforest, hostname);
549                         break;
550                 case NlDnsKdcAtSite:
551                         dprintf(st->fd, "SRV _kerberos._tcp.%s._sites.dc._msdcs.%s. %s %u\n",
552                                 site, dnsdomain, hostname, n->port);
553                         break;
554                 case NlDnsDcAtSite:
555                         dprintf(st->fd, "SRV _ldap._tcp.%s._sites.dc._msdcs.%s. %s %u\n",
556                                 site, dnsdomain, hostname, n->port);
557                         break;
558                 case NlDnsRfc1510KdcAtSite:
559                         dprintf(st->fd, "SRV _kerberos._tcp.%s._sites.%s. %s %u\n",
560                                 site, dnsdomain, hostname, n->port);
561                         break;
562                 case NlDnsGenericGcAtSite:
563                         dprintf(st->fd, "SRV _gc._tcp.%s._sites.%s. %s %u\n",
564                                 site, dnsforest, hostname, n->port);
565                         break;
566                 }
567         }
568
569         close(st->fd);
570         st->fd = -1;
571
572         DEBUG(3,("Calling RODC DNS name update script %s\n", st->tmp_path));
573         req = samba_runcmd_send(st,
574                                 s->task->event_ctx,
575                                 timeval_current_ofs(20, 0),
576                                 2, 0,
577                                 dns_update_command,
578                                 "--update-list",
579                                 st->tmp_path,
580                                 "--update-cache",
581                                 st->tmp_path2,
582                                 NULL);
583         NT_STATUS_HAVE_NO_MEMORY(req);
584
585         /* setup the callback */
586         tevent_req_set_callback(req, dnsupdate_RODC_callback, st);
587
588         msg->defer_reply = true;
589
590         return NT_STATUS_OK;
591 }
592
593 /*
594   startup the dns update task
595 */
596 static void dnsupdate_task_init(struct task_server *task)
597 {
598         NTSTATUS status;
599         struct dnsupdate_service *service;
600
601         if (lpcfg_server_role(task->lp_ctx) != ROLE_ACTIVE_DIRECTORY_DC) {
602                 /* not useful for non-DC */
603                 return;
604         }
605
606         task_server_set_title(task, "task[dnsupdate]");
607
608         service = talloc_zero(task, struct dnsupdate_service);
609         if (!service) {
610                 task_server_terminate(task, "dnsupdate_task_init: out of memory", true);
611                 return;
612         }
613         service->task           = task;
614         task->private_data      = service;
615
616         service->system_session_info = system_session(service->task->lp_ctx);
617         if (!service->system_session_info) {
618                 task_server_terminate(task,
619                                       "dnsupdate: Failed to obtain server credentials\n",
620                                       true);
621                 return;
622         }
623
624         service->samdb = samdb_connect(service, service->task->event_ctx, task->lp_ctx,
625                                        service->system_session_info, 0);
626         if (!service->samdb) {
627                 task_server_terminate(task, "dnsupdate: Failed to connect to local samdb\n",
628                                       true);
629                 return;
630         }
631
632         service->confupdate.interval    = lpcfg_parm_int(task->lp_ctx, NULL,
633                                                       "dnsupdate", "config interval", 60); /* in seconds */
634
635         service->nameupdate.interval    = lpcfg_parm_int(task->lp_ctx, NULL,
636                                                       "dnsupdate", "name interval", 600); /* in seconds */
637
638         dnsupdate_rebuild(service);
639         status = dnsupdate_confupdate_schedule(service);
640         if (!NT_STATUS_IS_OK(status)) {
641                 task_server_terminate(task, talloc_asprintf(task,
642                                       "dnsupdate: Failed to confupdate schedule: %s\n",
643                                                             nt_errstr(status)), true);
644                 return;
645         }
646
647         dnsupdate_check_names(service);
648         status = dnsupdate_nameupdate_schedule(service);
649         if (!NT_STATUS_IS_OK(status)) {
650                 task_server_terminate(task, talloc_asprintf(task,
651                                       "dnsupdate: Failed to nameupdate schedule: %s\n",
652                                                             nt_errstr(status)), true);
653                 return;
654         }
655
656         irpc_add_name(task->msg_ctx, "dnsupdate");
657
658         IRPC_REGISTER(task->msg_ctx, irpc, DNSUPDATE_RODC,
659                       dnsupdate_dnsupdate_RODC, service);
660
661         /* create the intial file */
662         dnsupdate_rebuild(service);
663
664 }
665
666 /*
667   register ourselves as a available server
668 */
669 NTSTATUS server_service_dnsupdate_init(void)
670 {
671         return register_server_service("dnsupdate", dnsupdate_task_init);
672 }