dbcheck: don't check expired tombstone objects by default anymore
[Samba.git] / python / samba / netcmd / dbcheck.py
blobf0dd85282e3eceb6663dc5709bbaf7b17f6daa46
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
20 import sys
21 import samba.getopt as options
22 from samba.auth import system_session
23 from samba.samdb import SamDB
24 from samba.netcmd import (
25 Command,
26 CommandError,
27 Option
29 from samba.dbchecker import dbcheck
32 class cmd_dbcheck(Command):
33 """Check local AD database for errors."""
34 synopsis = "%prog [<DN>] [options]"
36 takes_optiongroups = {
37 "sambaopts": options.SambaOptions,
38 "versionopts": options.VersionOptions,
39 "credopts": options.CredentialsOptionsDouble,
42 def process_yes(option, opt, value, parser):
43 assert value is None
44 rargs = parser.rargs
45 if rargs:
46 arg = rargs[0]
47 if ((arg[:2] == "--" and len(arg) > 2) or
48 (arg[:1] == "-" and len(arg) > 1 and arg[1] != "-")):
49 setattr(parser.values, "yes", True)
50 else:
51 setattr(parser.values, "yes_rules", arg.split())
52 del rargs[0]
53 else:
54 setattr(parser.values, "yes", True)
56 takes_args = ["DN?"]
58 takes_options = [
59 Option("--scope", dest="scope", default="SUB",
60 help="Pass search scope that builds DN list. Options: SUB, ONE, BASE"),
61 Option("--fix", dest="fix", default=False, action='store_true',
62 help='Fix any errors found'),
63 Option("--yes", action='callback', callback=process_yes,
64 help="don't confirm changes individually. Applies all as a single transaction (will not succeed if any errors are found)"),
65 Option("--cross-ncs", dest="cross_ncs", default=False, action='store_true',
66 help="cross naming context boundaries"),
67 Option("-v", "--verbose", dest="verbose", action="store_true", default=False,
68 help="Print more details of checking"),
69 Option("-q", "--quiet", action="store_true", default=False,
70 help="don't print details of checking"),
71 Option("--attrs", dest="attrs", default=None, help="list of attributes to check (space separated)"),
72 Option("--reindex", dest="reindex", default=False, action="store_true", help="force database re-index"),
73 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)"),
74 Option("--reset-well-known-acls", dest="reset_well_known_acls", default=False, action="store_true", help="reset ACLs on objects with well known default ACL values to the default"),
75 Option("--quick-membership-checks", dest="quick_membership_checks",
76 help=("Skips missing/orphaned memberOf backlinks checks, "
77 "but speeds up dbcheck dramatically for domains with "
78 "large groups"),
79 default=False, action="store_true"),
80 Option("-H", "--URL", help="LDB URL for database or target server (defaults to local SAM database)",
81 type=str, metavar="URL", dest="H"),
82 Option("--selftest-check-expired-tombstones",
83 dest="selftest_check_expired_tombstones", default=False, action="store_true",
84 help=Option.SUPPRESS_HELP), # This is only used by tests
87 def run(self, DN=None, H=None, verbose=False, fix=False, yes=False,
88 cross_ncs=False, quiet=False,
89 scope="SUB", credopts=None, sambaopts=None, versionopts=None,
90 attrs=None, reindex=False, force_modules=False,
91 quick_membership_checks=False,
92 reset_well_known_acls=False,
93 selftest_check_expired_tombstones=False,
94 yes_rules=[]):
96 lp = sambaopts.get_loadparm()
98 over_ldap = H is not None and H.startswith('ldap')
100 if over_ldap:
101 creds = credopts.get_credentials(lp, fallback_machine=True)
102 else:
103 creds = None
105 if force_modules:
106 samdb = SamDB(session_info=system_session(), url=H,
107 credentials=creds, lp=lp, options=["modules=samba_dsdb"])
108 else:
109 try:
110 samdb = SamDB(session_info=system_session(), url=H,
111 credentials=creds, lp=lp)
112 except:
113 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)
115 if H is None or not over_ldap:
116 samdb_schema = samdb
117 else:
118 samdb_schema = SamDB(session_info=system_session(), url=None,
119 credentials=creds, lp=lp)
121 scope_map = {"SUB": ldb.SCOPE_SUBTREE, "BASE": ldb.SCOPE_BASE, "ONE": ldb.SCOPE_ONELEVEL}
122 scope = scope.upper()
123 if scope not in scope_map:
124 raise CommandError("Unknown scope %s" % scope)
125 search_scope = scope_map[scope]
127 controls = ['show_deleted:1']
128 if over_ldap:
129 controls.append('paged_results:1:1000')
130 if cross_ncs:
131 controls.append("search_options:1:2")
133 if not attrs:
134 attrs = ['*']
135 else:
136 attrs = attrs.split()
138 started_transaction = False
139 if yes and fix:
140 samdb.transaction_start()
141 started_transaction = True
142 try:
143 chk = dbcheck(samdb, samdb_schema=samdb_schema, verbose=verbose,
144 fix=fix, yes=yes, quiet=quiet,
145 in_transaction=started_transaction,
146 quick_membership_checks=quick_membership_checks,
147 reset_well_known_acls=reset_well_known_acls,
148 check_expired_tombstones=selftest_check_expired_tombstones)
150 for option in yes_rules:
151 if hasattr(chk, option):
152 setattr(chk, option, 'ALL')
153 else:
154 raise CommandError("Invalid fix rule %s" % option)
156 if reindex:
157 self.outf.write("Re-indexing...\n")
158 error_count = 0
159 if chk.reindex_database():
160 self.outf.write("completed re-index OK\n")
162 elif force_modules:
163 self.outf.write("Resetting @MODULES...\n")
164 error_count = 0
165 if chk.reset_modules():
166 self.outf.write("completed @MODULES reset OK\n")
168 else:
169 error_count = chk.check_database(DN=DN, scope=search_scope,
170 controls=controls, attrs=attrs)
171 except:
172 if started_transaction:
173 samdb.transaction_cancel()
174 raise
176 if started_transaction:
177 samdb.transaction_commit()
179 if error_count != 0:
180 sys.exit(1)