s4-dbcheck: Allow forcing an override of an old @MODULES record
[Samba/gebeck_regimport.git] / source4 / scripting / python / samba / netcmd / dbcheck.py
blob889b0ff075c3d44acc48db56ad865bef397164ff
1 # Samba4 AD database checker
3 # Copyright (C) Andrew Tridgell 2011
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 import ldb, sys
20 import samba.getopt as options
21 from samba.auth import system_session
22 from samba.samdb import SamDB
23 from samba.netcmd import (
24 Command,
25 CommandError,
26 Option
28 from samba.dbchecker import dbcheck
31 class cmd_dbcheck(Command):
32 """Check local AD database for errors."""
33 synopsis = "%prog [<DN>] [options]"
35 takes_optiongroups = {
36 "sambaopts": options.SambaOptions,
37 "versionopts": options.VersionOptions,
38 "credopts": options.CredentialsOptionsDouble,
41 takes_args = ["DN?"]
43 takes_options = [
44 Option("--scope", dest="scope", default="SUB",
45 help="Pass search scope that builds DN list. Options: SUB, ONE, BASE"),
46 Option("--fix", dest="fix", default=False, action='store_true',
47 help='Fix any errors found'),
48 Option("--yes", dest="yes", default=False, action='store_true',
49 help="don't confirm changes, just do them all as a single transaction"),
50 Option("--cross-ncs", dest="cross_ncs", default=False, action='store_true',
51 help="cross naming context boundaries"),
52 Option("-v", "--verbose", dest="verbose", action="store_true", default=False,
53 help="Print more details of checking"),
54 Option("--quiet", dest="quiet", action="store_true", default=False,
55 help="don't print details of checking"),
56 Option("--attrs", dest="attrs", default=None, help="list of attributes to check (space separated)"),
57 Option("--reindex", dest="reindex", default=False, action="store_true", help="force database re-index"),
58 Option("--force-modules", dest="force_modules", default=False, action="store_true", help="force loading of Samba modules and ignore the @MODULES record (for very old databases)"),
59 Option("-H", "--URL", help="LDB URL for database or target server (defaults to local SAM database)",
60 type=str, metavar="URL", dest="H"),
63 def run(self, DN=None, H=None, verbose=False, fix=False, yes=False,
64 cross_ncs=False, quiet=False,
65 scope="SUB", credopts=None, sambaopts=None, versionopts=None,
66 attrs=None, reindex=False, force_modules=False):
68 lp = sambaopts.get_loadparm()
70 over_ldap = H is not None and H.startswith('ldap')
72 if over_ldap:
73 creds = credopts.get_credentials(lp, fallback_machine=True)
74 else:
75 creds = None
77 if force_modules:
78 samdb = SamDB(session_info=system_session(), url=H,
79 credentials=creds, lp=lp, options=["modules=samba_dsdb"])
80 else:
81 try:
82 samdb = SamDB(session_info=system_session(), url=H,
83 credentials=creds, lp=lp)
84 except:
85 raise CommandError("Failed to connect to DB at %s. If this is a really old sam.ldb (before alpha9), then try again with --force-modules" % H)
88 if H is None or not over_ldap:
89 samdb_schema = samdb
90 else:
91 samdb_schema = SamDB(session_info=system_session(), url=None,
92 credentials=creds, lp=lp)
94 scope_map = { "SUB": ldb.SCOPE_SUBTREE, "BASE": ldb.SCOPE_BASE, "ONE":ldb.SCOPE_ONELEVEL }
95 scope = scope.upper()
96 if not scope in scope_map:
97 raise CommandError("Unknown scope %s" % scope)
98 search_scope = scope_map[scope]
100 controls = ['show_deleted:1']
101 if over_ldap:
102 controls.append('paged_results:1:1000')
103 if cross_ncs:
104 controls.append("search_options:1:2")
106 if not attrs:
107 attrs = ['*']
108 else:
109 attrs = attrs.split()
111 started_transaction = False
112 if yes and fix:
113 samdb.transaction_start()
114 started_transaction = True
115 try:
116 chk = dbcheck(samdb, samdb_schema=samdb_schema, verbose=verbose,
117 fix=fix, yes=yes, quiet=quiet, in_transaction=started_transaction)
119 if reindex:
120 self.outf.write("Re-indexing...\n")
121 error_count = 0
122 if chk.reindex_database():
123 self.outf.write("completed re-index OK\n")
125 elif force_modules:
126 self.outf.write("Resetting @MODULES...\n")
127 error_count = 0
128 if chk.reset_modules():
129 self.outf.write("completed @MODULES reset OK\n")
131 else:
132 error_count = chk.check_database(DN=DN, scope=search_scope,
133 controls=controls, attrs=attrs)
134 except:
135 if started_transaction:
136 samdb.transaction_cancel()
137 raise
139 if started_transaction:
140 samdb.transaction_commit()
142 if error_count != 0:
143 sys.exit(1)