5ed34c6b567119dab4073980105a644acbb7851c
[samba.git] / python / samba / netcmd / drs.py
1 # implement samba_tool drs commands
2 #
3 # Copyright Andrew Tridgell 2010
4 # Copyright Andrew Bartlett 2017
5 #
6 # based on C implementation by Kamen Mazdrashki <kamen.mazdrashki@postpath.com>
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 import samba.getopt as options
22 import ldb
23 import logging
24 from . import common
25 import json
26
27 from samba.auth import system_session
28 from samba.netcmd import (
29     Command,
30     CommandError,
31     Option,
32     SuperCommand,
33 )
34 from samba.samdb import SamDB
35 from samba import drs_utils, nttime2string, dsdb
36 from samba.dcerpc import drsuapi, misc
37 from samba.join import join_clone
38 from samba.ndr import ndr_unpack
39 from samba.dcerpc import drsblobs
40 from samba import colour
41 import logging
42
43
44 def drsuapi_connect(ctx):
45     '''make a DRSUAPI connection to the server'''
46     try:
47         (ctx.drsuapi, ctx.drsuapi_handle, ctx.bind_supported_extensions) = drs_utils.drsuapi_connect(ctx.server, ctx.lp, ctx.creds)
48     except Exception as e:
49         raise CommandError("DRS connection to %s failed" % ctx.server, e)
50
51
52 def samdb_connect(ctx):
53     '''make a ldap connection to the server'''
54     try:
55         ctx.samdb = SamDB(url="ldap://%s" % ctx.server,
56                           session_info=system_session(),
57                           credentials=ctx.creds, lp=ctx.lp)
58     except Exception as e:
59         raise CommandError("LDAP connection to %s failed" % ctx.server, e)
60
61
62 def drs_errmsg(werr):
63     '''return "was successful" or an error string'''
64     (ecode, estring) = werr
65     if ecode == 0:
66         return "was successful"
67     return "failed, result %u (%s)" % (ecode, estring)
68
69
70 def attr_default(msg, attrname, default):
71     '''get an attribute from a ldap msg with a default'''
72     if attrname in msg:
73         return msg[attrname][0]
74     return default
75
76
77 def drs_parse_ntds_dn(ntds_dn):
78     '''parse a NTDS DN returning a site and server'''
79     a = ntds_dn.split(',')
80     if a[0] != "CN=NTDS Settings" or a[2] != "CN=Servers" or a[4] != 'CN=Sites':
81         raise RuntimeError("bad NTDS DN %s" % ntds_dn)
82     server = a[1].split('=')[1]
83     site   = a[3].split('=')[1]
84     return (site, server)
85
86
87 DEFAULT_SHOWREPL_FORMAT = 'classic'
88
89
90 class cmd_drs_showrepl(Command):
91     """Show replication status."""
92
93     synopsis = "%prog [<DC>] [options]"
94
95     takes_optiongroups = {
96         "sambaopts": options.SambaOptions,
97         "versionopts": options.VersionOptions,
98         "credopts": options.CredentialsOptions,
99     }
100
101     takes_options = [
102         Option("--json", help="replication details in JSON format",
103                dest='format', action='store_const', const='json'),
104         Option("--summary", help=("summarize overall DRS health as seen "
105                                   "from this server"),
106                dest='format', action='store_const', const='summary'),
107         Option("--pull-summary", help=("Have we successfully replicated "
108                                        "from all relevent servers?"),
109                dest='format', action='store_const', const='pull_summary'),
110         Option("--notify-summary", action='store_const',
111                const='notify_summary', dest='format',
112                help=("Have we successfully notified all relevent servers of "
113                      "local changes, and did they say they successfully "
114                      "replicated?")),
115         Option("--classic", help="print local replication details",
116                dest='format', action='store_const', const='classic',
117                default=DEFAULT_SHOWREPL_FORMAT),
118         Option("-v", "--verbose", help="Be verbose", action="store_true"),
119         Option("--color", help="Use colour output (yes|no|auto)",
120                default='no'),
121     ]
122
123     takes_args = ["DC?"]
124
125     def parse_neighbour(self, n):
126         """Convert an ldb neighbour object into a python dictionary"""
127         dsa_objectguid = str(n.source_dsa_obj_guid)
128         d = {
129             'NC dn': n.naming_context_dn,
130             "DSA objectGUID": dsa_objectguid,
131             "last attempt time": nttime2string(n.last_attempt),
132             "last attempt message": drs_errmsg(n.result_last_attempt),
133             "consecutive failures": n.consecutive_sync_failures,
134             "last success": nttime2string(n.last_success),
135             "NTDS DN": str(n.source_dsa_obj_dn),
136             'is deleted': False
137         }
138
139         try:
140             self.samdb.search(base="<GUID=%s>" % dsa_objectguid,
141                               scope=ldb.SCOPE_BASE,
142                               attrs=[])
143         except ldb.LdbError as e:
144             (errno, _) = e.args
145             if errno == ldb.ERR_NO_SUCH_OBJECT:
146                 d['is deleted'] = True
147             else:
148                 raise
149         try:
150             (site, server) = drs_parse_ntds_dn(n.source_dsa_obj_dn)
151             d["DSA"] = "%s\%s" % (site, server)
152         except RuntimeError:
153             pass
154         return d
155
156     def print_neighbour(self, d):
157         '''print one set of neighbour information'''
158         self.message("%s" % d['NC dn'])
159         if 'DSA' in d:
160             self.message("\t%s via RPC" % d['DSA'])
161         else:
162             self.message("\tNTDS DN: %s" % d['NTDS DN'])
163         self.message("\t\tDSA object GUID: %s" % d['DSA objectGUID'])
164         self.message("\t\tLast attempt @ %s %s" % (d['last attempt time'],
165                                                    d['last attempt message']))
166         self.message("\t\t%u consecutive failure(s)." %
167                      d['consecutive failures'])
168         self.message("\t\tLast success @ %s" % d['last success'])
169         self.message("")
170
171     def get_neighbours(self, info_type):
172         req1 = drsuapi.DsReplicaGetInfoRequest1()
173         req1.info_type = info_type
174         try:
175             (info_type, info) = self.drsuapi.DsReplicaGetInfo(
176                 self.drsuapi_handle, 1, req1)
177         except Exception as e:
178             raise CommandError("DsReplicaGetInfo of type %u failed" % info_type, e)
179
180         reps = [self.parse_neighbour(n) for n in info.array]
181         return reps
182
183     def run(self, DC=None, sambaopts=None,
184             credopts=None, versionopts=None,
185             format=DEFAULT_SHOWREPL_FORMAT,
186             verbose=False, color='no'):
187         self.apply_colour_choice(color)
188         self.lp = sambaopts.get_loadparm()
189         if DC is None:
190             DC = common.netcmd_dnsname(self.lp)
191         self.server = DC
192         self.creds = credopts.get_credentials(self.lp, fallback_machine=True)
193         self.verbose = verbose
194
195         output_function = {
196             'summary': self.summary_output,
197             'notify_summary': self.notify_summary_output,
198             'pull_summary': self.pull_summary_output,
199             'json': self.json_output,
200             'classic': self.classic_output,
201         }.get(format)
202         if output_function is None:
203             raise CommandError("unknown showrepl format %s" % format)
204
205         return output_function()
206
207     def json_output(self):
208         data = self.get_local_repl_data()
209         del data['site']
210         del data['server']
211         json.dump(data, self.outf, indent=2)
212
213     def summary_output_handler(self, typeof_output):
214         """Print a short message if every seems fine, but print details of any
215         links that seem broken."""
216         failing_repsto = []
217         failing_repsfrom = []
218
219         local_data = self.get_local_repl_data()
220
221         if typeof_output != "pull_summary":
222             for rep in local_data['repsTo']:
223                 if rep['is deleted']:
224                     continue
225                 if rep["consecutive failures"] != 0 or rep["last success"] == 0:
226                     failing_repsto.append(rep)
227
228         if typeof_output != "notify_summary":
229             for rep in local_data['repsFrom']:
230                 if rep['is deleted']:
231                     continue
232                 if rep["consecutive failures"] != 0 or rep["last success"] == 0:
233                     failing_repsfrom.append(rep)
234
235         if failing_repsto or failing_repsfrom:
236             self.message(colour.c_RED("There are failing connections"))
237             if failing_repsto:
238                 self.message(colour.c_RED("Failing outbound connections:"))
239                 for rep in failing_repsto:
240                     self.print_neighbour(rep)
241             if failing_repsfrom:
242                 self.message(colour.c_RED("Failing inbound connection:"))
243                 for rep in failing_repsfrom:
244                     self.print_neighbour(rep)
245
246             return 1
247
248         self.message(colour.c_GREEN("[ALL GOOD]"))
249
250     def summary_output(self):
251         return self.summary_output_handler("summary")
252
253     def notify_summary_output(self):
254         return self.summary_output_handler("notify_summary")
255
256     def pull_summary_output(self):
257         return self.summary_output_handler("pull_summary")
258
259     def get_local_repl_data(self):
260         drsuapi_connect(self)
261         samdb_connect(self)
262
263         # show domain information
264         ntds_dn = self.samdb.get_dsServiceName()
265
266         (site, server) = drs_parse_ntds_dn(ntds_dn)
267         try:
268             ntds = self.samdb.search(base=ntds_dn, scope=ldb.SCOPE_BASE, attrs=['options', 'objectGUID', 'invocationId'])
269         except Exception as e:
270             raise CommandError("Failed to search NTDS DN %s" % ntds_dn)
271
272         dsa_details = {
273             "options": int(attr_default(ntds[0], "options", 0)),
274             "objectGUID": self.samdb.schema_format_value(
275                 "objectGUID", ntds[0]["objectGUID"][0]),
276             "invocationId": self.samdb.schema_format_value(
277                 "objectGUID", ntds[0]["invocationId"][0])
278         }
279
280         conn = self.samdb.search(base=ntds_dn, expression="(objectClass=nTDSConnection)")
281         repsfrom = self.get_neighbours(drsuapi.DRSUAPI_DS_REPLICA_INFO_NEIGHBORS)
282         repsto = self.get_neighbours(drsuapi.DRSUAPI_DS_REPLICA_INFO_REPSTO)
283
284         conn_details = []
285         for c in conn:
286             c_rdn, sep, c_server_dn = c['fromServer'][0].partition(',')
287             d = {
288                 'name': str(c['name']),
289                 'remote DN': c['fromServer'][0],
290                 'options': int(attr_default(c, 'options', 0)),
291                 'enabled': (attr_default(c, 'enabledConnection',
292                                          'TRUE').upper() == 'TRUE')
293             }
294
295             conn_details.append(d)
296             try:
297                 c_server_res = self.samdb.search(base=c_server_dn,
298                                                  scope=ldb.SCOPE_BASE,
299                                                  attrs=["dnsHostName"])
300                 d['dns name'] = c_server_res[0]["dnsHostName"][0]
301             except ldb.LdbError as e:
302                 (errno, _) = e.args
303                 if errno == ldb.ERR_NO_SUCH_OBJECT:
304                     d['is deleted'] = True
305             except KeyError:
306                 pass
307
308             d['replicates NC'] = []
309             for r in c.get('mS-DS-ReplicatesNCReason', []):
310                 a = str(r).split(':')
311                 d['replicates NC'].append((a[3], int(a[2])))
312
313         return {
314             'dsa': dsa_details,
315             'repsFrom': repsfrom,
316             'repsTo': repsto,
317             'NTDSConnections': conn_details,
318             'site': site,
319             'server': server
320         }
321
322     def classic_output(self):
323         data = self.get_local_repl_data()
324         dsa_details = data['dsa']
325         repsfrom = data['repsFrom']
326         repsto = data['repsTo']
327         conn_details = data['NTDSConnections']
328         site = data['site']
329         server = data['server']
330
331         self.message("%s\\%s" % (site, server))
332         self.message("DSA Options: 0x%08x" % dsa_details["options"])
333         self.message("DSA object GUID: %s" % dsa_details["objectGUID"])
334         self.message("DSA invocationId: %s\n" % dsa_details["invocationId"])
335
336         self.message("==== INBOUND NEIGHBORS ====\n")
337         for n in repsfrom:
338             self.print_neighbour(n)
339
340         self.message("==== OUTBOUND NEIGHBORS ====\n")
341         for n in repsto:
342             self.print_neighbour(n)
343
344         reasons = ['NTDSCONN_KCC_GC_TOPOLOGY',
345                    'NTDSCONN_KCC_RING_TOPOLOGY',
346                    'NTDSCONN_KCC_MINIMIZE_HOPS_TOPOLOGY',
347                    'NTDSCONN_KCC_STALE_SERVERS_TOPOLOGY',
348                    'NTDSCONN_KCC_OSCILLATING_CONNECTION_TOPOLOGY',
349                    'NTDSCONN_KCC_INTERSITE_GC_TOPOLOGY',
350                    'NTDSCONN_KCC_INTERSITE_TOPOLOGY',
351                    'NTDSCONN_KCC_SERVER_FAILOVER_TOPOLOGY',
352                    'NTDSCONN_KCC_SITE_FAILOVER_TOPOLOGY',
353                    'NTDSCONN_KCC_REDUNDANT_SERVER_TOPOLOGY']
354
355         self.message("==== KCC CONNECTION OBJECTS ====\n")
356         for d in conn_details:
357             self.message("Connection --")
358             if d.get('is deleted'):
359                 self.message("\tWARNING: Connection to DELETED server!")
360
361             self.message("\tConnection name: %s" % d['name'])
362             self.message("\tEnabled        : %s" % str(d['enabled']).upper())
363             self.message("\tServer DNS name : %s" % d['dns name'])
364             self.message("\tServer DN name  : %s" % d['remote DN'])
365             self.message("\t\tTransportType: RPC")
366             self.message("\t\toptions: 0x%08X" % d['options'])
367
368             if d['replicates NC']:
369                 for nc, reason in d['replicates NC']:
370                     self.message("\t\tReplicatesNC: %s" % nc)
371                     self.message("\t\tReason: 0x%08x" % reason)
372                     for s in reasons:
373                         if getattr(dsdb, s, 0) & reason:
374                             self.message("\t\t\t%s" % s)
375             else:
376                 self.message("Warning: No NC replicated for Connection!")
377
378
379 class cmd_drs_kcc(Command):
380     """Trigger knowledge consistency center run."""
381
382     synopsis = "%prog [<DC>] [options]"
383
384     takes_optiongroups = {
385         "sambaopts": options.SambaOptions,
386         "versionopts": options.VersionOptions,
387         "credopts": options.CredentialsOptions,
388     }
389
390     takes_args = ["DC?"]
391
392     def run(self, DC=None, sambaopts=None,
393             credopts=None, versionopts=None):
394
395         self.lp = sambaopts.get_loadparm()
396         if DC is None:
397             DC = common.netcmd_dnsname(self.lp)
398         self.server = DC
399
400         self.creds = credopts.get_credentials(self.lp, fallback_machine=True)
401
402         drsuapi_connect(self)
403
404         req1 = drsuapi.DsExecuteKCC1()
405         try:
406             self.drsuapi.DsExecuteKCC(self.drsuapi_handle, 1, req1)
407         except Exception as e:
408             raise CommandError("DsExecuteKCC failed", e)
409         self.message("Consistency check on %s successful." % DC)
410
411
412 class cmd_drs_replicate(Command):
413     """Replicate a naming context between two DCs."""
414
415     synopsis = "%prog <destinationDC> <sourceDC> <NC> [options]"
416
417     takes_optiongroups = {
418         "sambaopts": options.SambaOptions,
419         "versionopts": options.VersionOptions,
420         "credopts": options.CredentialsOptions,
421     }
422
423     takes_args = ["DEST_DC", "SOURCE_DC", "NC"]
424
425     takes_options = [
426         Option("--add-ref", help="use ADD_REF to add to repsTo on source", action="store_true"),
427         Option("--sync-forced", help="use SYNC_FORCED to force inbound replication", action="store_true"),
428         Option("--sync-all", help="use SYNC_ALL to replicate from all DCs", action="store_true"),
429         Option("--full-sync", help="resync all objects", action="store_true"),
430         Option("--local", help="pull changes directly into the local database (destination DC is ignored)", action="store_true"),
431         Option("--local-online", help="pull changes into the local database (destination DC is ignored) as a normal online replication", action="store_true"),
432         Option("--async-op", help="use ASYNC_OP for the replication", action="store_true"),
433         Option("--single-object", help="Replicate only the object specified, instead of the whole Naming Context (only with --local)", action="store_true"),
434     ]
435
436     def drs_local_replicate(self, SOURCE_DC, NC, full_sync=False,
437                             single_object=False,
438                             sync_forced=False):
439         '''replicate from a source DC to the local SAM'''
440
441         self.server = SOURCE_DC
442         drsuapi_connect(self)
443
444         self.local_samdb = SamDB(session_info=system_session(), url=None,
445                                  credentials=self.creds, lp=self.lp)
446
447         self.samdb = SamDB(url="ldap://%s" % self.server,
448                            session_info=system_session(),
449                            credentials=self.creds, lp=self.lp)
450
451         # work out the source and destination GUIDs
452         res = self.local_samdb.search(base="", scope=ldb.SCOPE_BASE,
453                                       attrs=["dsServiceName"])
454         self.ntds_dn = res[0]["dsServiceName"][0]
455
456         res = self.local_samdb.search(base=self.ntds_dn, scope=ldb.SCOPE_BASE,
457                                       attrs=["objectGUID"])
458         self.ntds_guid = misc.GUID(
459             self.samdb.schema_format_value("objectGUID",
460                                            res[0]["objectGUID"][0]))
461
462         source_dsa_invocation_id = misc.GUID(self.samdb.get_invocation_id())
463         dest_dsa_invocation_id = misc.GUID(self.local_samdb.get_invocation_id())
464         destination_dsa_guid = self.ntds_guid
465
466         exop = drsuapi.DRSUAPI_EXOP_NONE
467
468         if single_object:
469             exop = drsuapi.DRSUAPI_EXOP_REPL_OBJ
470             full_sync = True
471
472         self.samdb.transaction_start()
473         repl = drs_utils.drs_Replicate("ncacn_ip_tcp:%s[seal]" % self.server,
474                                        self.lp,
475                                        self.creds, self.local_samdb,
476                                        dest_dsa_invocation_id)
477
478         # Work out if we are an RODC, so that a forced local replicate
479         # with the admin pw does not sync passwords
480         rodc = self.local_samdb.am_rodc()
481         try:
482             (num_objects, num_links) = repl.replicate(NC,
483                                                       source_dsa_invocation_id,
484                                                       destination_dsa_guid,
485                                                       rodc=rodc,
486                                                       full_sync=full_sync,
487                                                       exop=exop,
488                                                       sync_forced=sync_forced)
489         except Exception as e:
490             raise CommandError("Error replicating DN %s" % NC, e)
491         self.samdb.transaction_commit()
492
493         if full_sync:
494             self.message("Full Replication of all %d objects and %d links "
495                          "from %s to %s was successful." %
496                          (num_objects, num_links, SOURCE_DC,
497                           self.local_samdb.url))
498         else:
499             self.message("Incremental replication of %d objects and %d links "
500                          "from %s to %s was successful." %
501                          (num_objects, num_links, SOURCE_DC,
502                           self.local_samdb.url))
503
504     def run(self, DEST_DC, SOURCE_DC, NC,
505             add_ref=False, sync_forced=False, sync_all=False, full_sync=False,
506             local=False, local_online=False, async_op=False, single_object=False,
507             sambaopts=None, credopts=None, versionopts=None):
508
509         self.server = DEST_DC
510         self.lp = sambaopts.get_loadparm()
511
512         self.creds = credopts.get_credentials(self.lp, fallback_machine=True)
513
514         if local:
515             self.drs_local_replicate(SOURCE_DC, NC, full_sync=full_sync,
516                                      single_object=single_object,
517                                      sync_forced=sync_forced)
518             return
519
520         if local_online:
521             server_bind = drsuapi.drsuapi("irpc:dreplsrv", lp_ctx=self.lp)
522             server_bind_handle = misc.policy_handle()
523         else:
524             drsuapi_connect(self)
525             server_bind = self.drsuapi
526             server_bind_handle = self.drsuapi_handle
527
528         if not async_op:
529             # Give the sync replication 5 minutes time
530             server_bind.request_timeout = 5 * 60
531
532         samdb_connect(self)
533
534         # we need to find the NTDS GUID of the source DC
535         msg = self.samdb.search(base=self.samdb.get_config_basedn(),
536                                 expression="(&(objectCategory=server)(|(name=%s)(dNSHostName=%s)))" % (
537             ldb.binary_encode(SOURCE_DC),
538             ldb.binary_encode(SOURCE_DC)),
539                                 attrs=[])
540         if len(msg) == 0:
541             raise CommandError("Failed to find source DC %s" % SOURCE_DC)
542         server_dn = msg[0]['dn']
543
544         msg = self.samdb.search(base=server_dn, scope=ldb.SCOPE_ONELEVEL,
545                                 expression="(|(objectCategory=nTDSDSA)(objectCategory=nTDSDSARO))",
546                                 attrs=['objectGUID', 'options'])
547         if len(msg) == 0:
548             raise CommandError("Failed to find source NTDS DN %s" % SOURCE_DC)
549         source_dsa_guid = msg[0]['objectGUID'][0]
550         dsa_options = int(attr_default(msg, 'options', 0))
551
552         req_options = 0
553         if not (dsa_options & dsdb.DS_NTDSDSA_OPT_DISABLE_OUTBOUND_REPL):
554             req_options |= drsuapi.DRSUAPI_DRS_WRIT_REP
555         if add_ref:
556             req_options |= drsuapi.DRSUAPI_DRS_ADD_REF
557         if sync_forced:
558             req_options |= drsuapi.DRSUAPI_DRS_SYNC_FORCED
559         if sync_all:
560             req_options |= drsuapi.DRSUAPI_DRS_SYNC_ALL
561         if full_sync:
562             req_options |= drsuapi.DRSUAPI_DRS_FULL_SYNC_NOW
563         if async_op:
564             req_options |= drsuapi.DRSUAPI_DRS_ASYNC_OP
565
566         try:
567             drs_utils.sendDsReplicaSync(server_bind, server_bind_handle, source_dsa_guid, NC, req_options)
568         except drs_utils.drsException as estr:
569             raise CommandError("DsReplicaSync failed", estr)
570         if async_op:
571             self.message("Replicate from %s to %s was started." % (SOURCE_DC, DEST_DC))
572         else:
573             self.message("Replicate from %s to %s was successful." % (SOURCE_DC, DEST_DC))
574
575
576 class cmd_drs_bind(Command):
577     """Show DRS capabilities of a server."""
578
579     synopsis = "%prog [<DC>] [options]"
580
581     takes_optiongroups = {
582         "sambaopts": options.SambaOptions,
583         "versionopts": options.VersionOptions,
584         "credopts": options.CredentialsOptions,
585     }
586
587     takes_args = ["DC?"]
588
589     def run(self, DC=None, sambaopts=None,
590             credopts=None, versionopts=None):
591
592         self.lp = sambaopts.get_loadparm()
593         if DC is None:
594             DC = common.netcmd_dnsname(self.lp)
595         self.server = DC
596         self.creds = credopts.get_credentials(self.lp, fallback_machine=True)
597
598         drsuapi_connect(self)
599
600         bind_info = drsuapi.DsBindInfoCtr()
601         bind_info.length = 28
602         bind_info.info = drsuapi.DsBindInfo28()
603         (info, handle) = self.drsuapi.DsBind(misc.GUID(drsuapi.DRSUAPI_DS_BIND_GUID), bind_info)
604
605         optmap = [
606             ("DRSUAPI_SUPPORTED_EXTENSION_BASE", "DRS_EXT_BASE"),
607             ("DRSUAPI_SUPPORTED_EXTENSION_ASYNC_REPLICATION", "DRS_EXT_ASYNCREPL"),
608             ("DRSUAPI_SUPPORTED_EXTENSION_REMOVEAPI", "DRS_EXT_REMOVEAPI"),
609             ("DRSUAPI_SUPPORTED_EXTENSION_MOVEREQ_V2", "DRS_EXT_MOVEREQ_V2"),
610             ("DRSUAPI_SUPPORTED_EXTENSION_GETCHG_COMPRESS", "DRS_EXT_GETCHG_DEFLATE"),
611             ("DRSUAPI_SUPPORTED_EXTENSION_DCINFO_V1", "DRS_EXT_DCINFO_V1"),
612             ("DRSUAPI_SUPPORTED_EXTENSION_RESTORE_USN_OPTIMIZATION", "DRS_EXT_RESTORE_USN_OPTIMIZATION"),
613             ("DRSUAPI_SUPPORTED_EXTENSION_ADDENTRY", "DRS_EXT_ADDENTRY"),
614             ("DRSUAPI_SUPPORTED_EXTENSION_KCC_EXECUTE", "DRS_EXT_KCC_EXECUTE"),
615             ("DRSUAPI_SUPPORTED_EXTENSION_ADDENTRY_V2", "DRS_EXT_ADDENTRY_V2"),
616             ("DRSUAPI_SUPPORTED_EXTENSION_LINKED_VALUE_REPLICATION", "DRS_EXT_LINKED_VALUE_REPLICATION"),
617             ("DRSUAPI_SUPPORTED_EXTENSION_DCINFO_V2", "DRS_EXT_DCINFO_V2"),
618             ("DRSUAPI_SUPPORTED_EXTENSION_INSTANCE_TYPE_NOT_REQ_ON_MOD", "DRS_EXT_INSTANCE_TYPE_NOT_REQ_ON_MOD"),
619             ("DRSUAPI_SUPPORTED_EXTENSION_CRYPTO_BIND", "DRS_EXT_CRYPTO_BIND"),
620             ("DRSUAPI_SUPPORTED_EXTENSION_GET_REPL_INFO", "DRS_EXT_GET_REPL_INFO"),
621             ("DRSUAPI_SUPPORTED_EXTENSION_STRONG_ENCRYPTION", "DRS_EXT_STRONG_ENCRYPTION"),
622             ("DRSUAPI_SUPPORTED_EXTENSION_DCINFO_V01", "DRS_EXT_DCINFO_VFFFFFFFF"),
623             ("DRSUAPI_SUPPORTED_EXTENSION_TRANSITIVE_MEMBERSHIP", "DRS_EXT_TRANSITIVE_MEMBERSHIP"),
624             ("DRSUAPI_SUPPORTED_EXTENSION_ADD_SID_HISTORY", "DRS_EXT_ADD_SID_HISTORY"),
625             ("DRSUAPI_SUPPORTED_EXTENSION_POST_BETA3", "DRS_EXT_POST_BETA3"),
626             ("DRSUAPI_SUPPORTED_EXTENSION_GETCHGREQ_V5", "DRS_EXT_GETCHGREQ_V5"),
627             ("DRSUAPI_SUPPORTED_EXTENSION_GET_MEMBERSHIPS2", "DRS_EXT_GETMEMBERSHIPS2"),
628             ("DRSUAPI_SUPPORTED_EXTENSION_GETCHGREQ_V6", "DRS_EXT_GETCHGREQ_V6"),
629             ("DRSUAPI_SUPPORTED_EXTENSION_NONDOMAIN_NCS", "DRS_EXT_NONDOMAIN_NCS"),
630             ("DRSUAPI_SUPPORTED_EXTENSION_GETCHGREQ_V8", "DRS_EXT_GETCHGREQ_V8"),
631             ("DRSUAPI_SUPPORTED_EXTENSION_GETCHGREPLY_V5", "DRS_EXT_GETCHGREPLY_V5"),
632             ("DRSUAPI_SUPPORTED_EXTENSION_GETCHGREPLY_V6", "DRS_EXT_GETCHGREPLY_V6"),
633             ("DRSUAPI_SUPPORTED_EXTENSION_ADDENTRYREPLY_V3", "DRS_EXT_WHISTLER_BETA3"),
634             ("DRSUAPI_SUPPORTED_EXTENSION_GETCHGREPLY_V7", "DRS_EXT_WHISTLER_BETA3"),
635             ("DRSUAPI_SUPPORTED_EXTENSION_VERIFY_OBJECT", "DRS_EXT_WHISTLER_BETA3"),
636             ("DRSUAPI_SUPPORTED_EXTENSION_XPRESS_COMPRESS", "DRS_EXT_W2K3_DEFLATE"),
637             ("DRSUAPI_SUPPORTED_EXTENSION_GETCHGREQ_V10", "DRS_EXT_GETCHGREQ_V10"),
638             ("DRSUAPI_SUPPORTED_EXTENSION_RESERVED_PART2", "DRS_EXT_RESERVED_FOR_WIN2K_OR_DOTNET_PART2"),
639             ("DRSUAPI_SUPPORTED_EXTENSION_RESERVED_PART3", "DRS_EXT_RESERVED_FOR_WIN2K_OR_DOTNET_PART3")
640         ]
641
642         optmap_ext = [
643             ("DRSUAPI_SUPPORTED_EXTENSION_ADAM", "DRS_EXT_ADAM"),
644             ("DRSUAPI_SUPPORTED_EXTENSION_LH_BETA2", "DRS_EXT_LH_BETA2"),
645             ("DRSUAPI_SUPPORTED_EXTENSION_RECYCLE_BIN", "DRS_EXT_RECYCLE_BIN")]
646
647         self.message("Bind to %s succeeded." % DC)
648         self.message("Extensions supported:")
649         for (opt, str) in optmap:
650             optval = getattr(drsuapi, opt, 0)
651             if info.info.supported_extensions & optval:
652                 yesno = "Yes"
653             else:
654                 yesno = "No "
655             self.message("  %-60s: %s (%s)" % (opt, yesno, str))
656
657         if isinstance(info.info, drsuapi.DsBindInfo48):
658             self.message("\nExtended Extensions supported:")
659             for (opt, str) in optmap_ext:
660                 optval = getattr(drsuapi, opt, 0)
661                 if info.info.supported_extensions_ext & optval:
662                     yesno = "Yes"
663                 else:
664                     yesno = "No "
665                 self.message("  %-60s: %s (%s)" % (opt, yesno, str))
666
667         self.message("\nSite GUID: %s" % info.info.site_guid)
668         self.message("Repl epoch: %u" % info.info.repl_epoch)
669         if isinstance(info.info, drsuapi.DsBindInfo48):
670             self.message("Forest GUID: %s" % info.info.config_dn_guid)
671
672
673 class cmd_drs_options(Command):
674     """Query or change 'options' for NTDS Settings object of a Domain Controller."""
675
676     synopsis = "%prog [<DC>] [options]"
677
678     takes_optiongroups = {
679         "sambaopts": options.SambaOptions,
680         "versionopts": options.VersionOptions,
681         "credopts": options.CredentialsOptions,
682     }
683
684     takes_args = ["DC?"]
685
686     takes_options = [
687         Option("--dsa-option", help="DSA option to enable/disable", type="str",
688                metavar="{+|-}IS_GC | {+|-}DISABLE_INBOUND_REPL | {+|-}DISABLE_OUTBOUND_REPL | {+|-}DISABLE_NTDSCONN_XLATE"),
689     ]
690
691     option_map = {"IS_GC": 0x00000001,
692                   "DISABLE_INBOUND_REPL": 0x00000002,
693                   "DISABLE_OUTBOUND_REPL": 0x00000004,
694                   "DISABLE_NTDSCONN_XLATE": 0x00000008}
695
696     def run(self, DC=None, dsa_option=None,
697             sambaopts=None, credopts=None, versionopts=None):
698
699         self.lp = sambaopts.get_loadparm()
700         if DC is None:
701             DC = common.netcmd_dnsname(self.lp)
702         self.server = DC
703         self.creds = credopts.get_credentials(self.lp, fallback_machine=True)
704
705         samdb_connect(self)
706
707         ntds_dn = self.samdb.get_dsServiceName()
708         res = self.samdb.search(base=ntds_dn, scope=ldb.SCOPE_BASE, attrs=["options"])
709         dsa_opts = int(res[0]["options"][0])
710
711         # print out current DSA options
712         cur_opts = [x for x in self.option_map if self.option_map[x] & dsa_opts]
713         self.message("Current DSA options: " + ", ".join(cur_opts))
714
715         # modify options
716         if dsa_option:
717             if dsa_option[:1] not in ("+", "-"):
718                 raise CommandError("Unknown option %s" % dsa_option)
719             flag = dsa_option[1:]
720             if flag not in self.option_map.keys():
721                 raise CommandError("Unknown option %s" % dsa_option)
722             if dsa_option[:1] == "+":
723                 dsa_opts |= self.option_map[flag]
724             else:
725                 dsa_opts &= ~self.option_map[flag]
726             # save new options
727             m = ldb.Message()
728             m.dn = ldb.Dn(self.samdb, ntds_dn)
729             m["options"] = ldb.MessageElement(str(dsa_opts), ldb.FLAG_MOD_REPLACE, "options")
730             self.samdb.modify(m)
731             # print out new DSA options
732             cur_opts = [x for x in self.option_map if self.option_map[x] & dsa_opts]
733             self.message("New DSA options: " + ", ".join(cur_opts))
734
735
736 class cmd_drs_clone_dc_database(Command):
737     """Replicate an initial clone of domain, but DO NOT JOIN it."""
738
739     synopsis = "%prog <dnsdomain> [options]"
740
741     takes_optiongroups = {
742         "sambaopts": options.SambaOptions,
743         "versionopts": options.VersionOptions,
744         "credopts": options.CredentialsOptions,
745     }
746
747     takes_options = [
748         Option("--server", help="DC to join", type=str),
749         Option("--targetdir", help="where to store provision (required)", type=str),
750         Option("-q", "--quiet", help="Be quiet", action="store_true"),
751         Option("--include-secrets", help="Also replicate secret values", action="store_true"),
752         Option("-v", "--verbose", help="Be verbose", action="store_true")
753     ]
754
755     takes_args = ["domain"]
756
757     def run(self, domain, sambaopts=None, credopts=None,
758             versionopts=None, server=None, targetdir=None,
759             quiet=False, verbose=False, include_secrets=False):
760         lp = sambaopts.get_loadparm()
761         creds = credopts.get_credentials(lp)
762
763         logger = self.get_logger()
764         if verbose:
765             logger.setLevel(logging.DEBUG)
766         elif quiet:
767             logger.setLevel(logging.WARNING)
768         else:
769             logger.setLevel(logging.INFO)
770
771         if targetdir is None:
772             raise CommandError("--targetdir option must be specified")
773
774         join_clone(logger=logger, server=server, creds=creds, lp=lp,
775                    domain=domain, dns_backend='SAMBA_INTERNAL',
776                    targetdir=targetdir, include_secrets=include_secrets)
777
778
779 class cmd_drs(SuperCommand):
780     """Directory Replication Services (DRS) management."""
781
782     subcommands = {}
783     subcommands["bind"] = cmd_drs_bind()
784     subcommands["kcc"] = cmd_drs_kcc()
785     subcommands["replicate"] = cmd_drs_replicate()
786     subcommands["showrepl"] = cmd_drs_showrepl()
787     subcommands["options"] = cmd_drs_options()
788     subcommands["clone-dc-database"] = cmd_drs_clone_dc_database()