samba-tool: moved takes_optiongroups definition to Command base class
[metze/samba/wip.git] / source4 / scripting / python / samba / netcmd / rodc.py
1 #!/usr/bin/env python
2 #
3 # rodc related commands
4 #
5 # Copyright Andrew Tridgell 2010
6 # Copyright Giampaolo Lauria 2011 <lauria2@yahoo.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
22 from samba.netcmd import Command, CommandError, Option, SuperCommand
23 import samba.getopt as options
24 from samba.samdb import SamDB
25 from samba.auth import system_session
26 import ldb
27 from samba.dcerpc import misc, drsuapi
28 from samba.credentials import Credentials
29 from samba.drs_utils import drs_Replicate
30
31 class cmd_rodc_preload(Command):
32     """Preload one account for an RODC"""
33
34     synopsis = "%prog rodc preload <SID|DN|accountname>"
35
36     takes_options = [
37         Option("--server", help="DC to use", type=str),
38         ]
39
40     takes_args = ["account"]
41
42     def get_dn(self, samdb, account):
43         '''work out what DN they meant'''
44
45         # we accept the account in SID, accountname or DN form
46         if account[0:2] == 'S-':
47             res = samdb.search(base="<SID=%s>" % account,
48                                expression="objectclass=user",
49                                scope=ldb.SCOPE_BASE, attrs=[])
50         elif account.find('=') >= 0:
51             res = samdb.search(base=account,
52                                expression="objectclass=user",
53                                scope=ldb.SCOPE_BASE, attrs=[])
54         else:
55             res = samdb.search(expression="(&(samAccountName=%s)(objectclass=user))" % account,
56                                scope=ldb.SCOPE_SUBTREE, attrs=[])
57         if len(res) != 1:
58             raise Exception("Failed to find account '%s'" % account)
59         return str(res[0]["dn"])
60
61
62     def get_dsServiceName(self, samdb):
63         res = samdb.search(base="", scope=ldb.SCOPE_BASE, attrs=["dsServiceName"])
64         return res[0]["dsServiceName"][0]
65
66
67     def run(self, account, sambaopts=None,
68             credopts=None, versionopts=None, server=None):
69
70         if server is None:
71             raise Exception("You must supply a server")
72
73         lp = sambaopts.get_loadparm()
74
75         creds = credopts.get_credentials(lp, fallback_machine=True)
76
77         # connect to the remote and local SAMs
78         samdb = SamDB(url="ldap://%s" % server,
79                       session_info=system_session(),
80                       credentials=creds, lp=lp)
81
82         local_samdb = SamDB(url=None, session_info=system_session(),
83                             credentials=creds, lp=lp)
84
85         # work out the source and destination GUIDs
86         dc_ntds_dn = self.get_dsServiceName(samdb)
87         res = samdb.search(base=dc_ntds_dn, scope=ldb.SCOPE_BASE, attrs=["invocationId"])
88         source_dsa_invocation_id = misc.GUID(local_samdb.schema_format_value("objectGUID", res[0]["invocationId"][0]))
89
90         dn = self.get_dn(samdb, account)
91         print "Replicating DN %s" % dn
92
93         destination_dsa_guid = misc.GUID(local_samdb.get_ntds_GUID())
94
95         local_samdb.transaction_start()
96         repl = drs_Replicate("ncacn_ip_tcp:%s[seal,print]" % server, lp, creds, local_samdb)
97         try:
98             repl.replicate(dn, source_dsa_invocation_id, destination_dsa_guid,
99                            exop=drsuapi.DRSUAPI_EXOP_REPL_SECRET, rodc=True)
100         except Exception, e:
101             raise CommandError("Error replicating DN %s" % dn, e)
102         local_samdb.transaction_commit()
103
104
105
106 class cmd_rodc(SuperCommand):
107     """RODC commands"""
108
109     subcommands = {}
110     subcommands["preload"] = cmd_rodc_preload()