dbcheck: use specified DB schema for non-LDAP URLs
[mat/samba.git] / source4 / scripting / python / samba / netcmd / dbcheck.py
1 #!/usr/bin/env python
2 #
3 # Samba4 AD database checker
4 #
5 # Copyright (C) Andrew Tridgell 2011
6 #
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20
21 import ldb, sys
22 import samba.getopt as options
23 from samba.auth import system_session
24 from samba.samdb import SamDB
25 from samba.netcmd import (
26     Command,
27     CommandError,
28     Option
29     )
30 from samba.dbchecker import dbcheck
31
32
33 class cmd_dbcheck(Command):
34     """check local AD database for errors"""
35     synopsis = "dbcheck <DN> [options]"
36
37     takes_optiongroups = {
38         "sambaopts": options.SambaOptions,
39         "versionopts": options.VersionOptions,
40         "credopts": options.CredentialsOptionsDouble,
41     }
42
43     takes_args = ["DN?"]
44
45     takes_options = [
46         Option("--scope", dest="scope", default="SUB",
47             help="Pass search scope that builds DN list. Options: SUB, ONE, BASE"),
48         Option("--fix", dest="fix", default=False, action='store_true',
49                help='Fix any errors found'),
50         Option("--yes", dest="yes", default=False, action='store_true',
51                help="don't confirm changes, just do them all as a single transaction"),
52         Option("--cross-ncs", dest="cross_ncs", default=False, action='store_true',
53                help="cross naming context boundaries"),
54         Option("-v", "--verbose", dest="verbose", action="store_true", default=False,
55             help="Print more details of checking"),
56         Option("--quiet", dest="quiet", action="store_true", default=False,
57             help="don't print details of checking"),
58         Option("--attrs", dest="attrs", default=None, help="list of attributes to check (space separated)"),
59         Option("-H", help="LDB URL for database or target server (defaults to local SAM database)", type=str),
60         ]
61
62     def run(self, DN=None, H=None, verbose=False, fix=False, yes=False, cross_ncs=False, quiet=False,
63             scope="SUB", credopts=None, sambaopts=None, versionopts=None, attrs=None):
64
65         lp = sambaopts.get_loadparm()
66
67         over_ldap = H is not None and H.startswith('ldap')
68
69         if over_ldap:
70             creds = credopts.get_credentials(lp, fallback_machine=True)
71         else:
72             creds = None
73
74         samdb = SamDB(session_info=system_session(), url=H,
75                       credentials=creds, lp=lp)
76
77         if H is None or not over_ldap:
78             samdb_schema = samdb
79         else:
80             samdb_schema = SamDB(session_info=system_session(), url=None,
81                                  credentials=creds, lp=lp)
82
83         scope_map = { "SUB": ldb.SCOPE_SUBTREE, "BASE":ldb.SCOPE_BASE, "ONE":ldb.SCOPE_ONELEVEL }
84         scope = scope.upper()
85         if not scope in scope_map:
86             raise CommandError("Unknown scope %s" % scope)
87         search_scope = scope_map[scope]
88
89         controls = []
90         if H.startswith('ldap'):
91             controls.append('paged_results:1:1000')
92         if cross_ncs:
93             controls.append("search_options:1:2")
94
95         if not attrs:
96             attrs = ['*']
97         else:
98             attrs = attrs.split()
99
100         if yes and fix:
101             samdb.transaction_start()
102
103         chk = dbcheck(samdb, samdb_schema=samdb_schema, verbose=verbose, fix=fix, yes=yes, quiet=quiet)
104         error_count = chk.check_database(DN=DN, scope=search_scope, controls=controls, attrs=attrs)
105
106         if yes and fix:
107             samdb.transaction_commit()
108
109         if error_count != 0:
110             sys.exit(1)
111