53357e4dffb5eece754c6aa4a6f2cfcb60e6dcab
[obnox/samba/samba-obnox.git] / source4 / scripting / python / samba / netcmd / testparm.py
1 #   Unix SMB/CIFS implementation.
2 #   Test validity of smb.conf
3 #   Copyright (C) 2010-2011 Jelmer Vernooij <jelmer@samba.org>
4 #
5 # Based on the original in C:
6 #   Copyright (C) Karl Auer 1993, 1994-1998
7 #   Extensively modified by Andrew Tridgell, 1995
8 #   Converted to popt by Jelmer Vernooij (jelmer@nl.linux.org), 2002
9 #   Updated for Samba4 by Andrew Bartlett <abartlet@samba.org> 2006
10 #
11 # This program is free software; you can redistribute it and/or modify
12 # it under the terms of the GNU General Public License as published by
13 # the Free Software Foundation; either version 3 of the License, or
14 # (at your option) any later version.
15 #
16 # This program is distributed in the hope that it will be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 # GNU General Public License for more details.
20 #
21 # You should have received a copy of the GNU General Public License
22 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
23 #
24 # Testbed for loadparm.c/params.c
25 #
26 # This module simply loads a specified configuration file and
27 # if successful, dumps it's contents to stdout. Note that the
28 # operation is performed with DEBUGLEVEL at 3.
29 #
30 # Useful for a quick 'syntax check' of a configuration file.
31 #
32
33 import os
34 import sys
35
36 import samba
37 import samba.getopt as options
38 from samba.netcmd import Command, CommandError, Option
39
40 class cmd_testparm(Command):
41     """Syntax check the configuration file."""
42
43     synopsis = "%prog [options]"
44
45     takes_optiongroups = {
46         "sambaopts": options.SambaOptions,
47         "versionopts": options.VersionOptions
48     }
49
50     takes_options = [
51         Option("--section-name", type=str,
52                help="Limit testparm to a named section"),
53         Option("--parameter-name", type=str,
54                help="Limit testparm to a named parameter"),
55         Option("--client-name", type=str,
56                help="Client DNS name for 'hosts allow' checking "
57                     "(should match reverse lookup)"),
58         Option("--client-ip", type=str,
59                help="Client IP address for 'hosts allow' checking"),
60         Option("--suppress-prompt", action="store_true", default=False,
61                help="Suppress prompt for enter"),
62         Option("-v", "--verbose", action="store_true",
63                default=False, help="Show default options too"),
64         # We need support for smb.conf macros before this will work again
65         Option("--server", type=str, help="Set %%L macro to servername"),
66         # These are harder to do with the new code structure
67         Option("--show-all-parameters", action="store_true", default=False,
68                help="Show the parameters, type, possible values")
69         ]
70
71     takes_args = []
72
73     def run(self, sambaopts, versionopts, section_name=None,
74             parameter_name=None, client_ip=None, client_name=None,
75             verbose=False, suppress_prompt=None, show_all_parameters=False,
76             server=None):
77         if server:
78             raise NotImplementedError("--server not yet implemented")
79         if show_all_parameters:
80             raise NotImplementedError("--show-all-parameters not yet implemented")
81         if client_name is not None and client_ip is None:
82             raise CommandError("Both a DNS name and an IP address are "
83                                "required for the host access check")
84
85         lp = sambaopts.get_loadparm()
86
87         # We need this to force the output
88         samba.set_debug_level(2)
89
90         logger = self.get_logger("testparm")
91
92         logger.info("Loaded smb config files from %s", lp.configfile)
93         logger.info("Loaded services file OK.")
94
95         valid = self.do_global_checks(lp, logger)
96         valid = valid and self.do_share_checks(lp, logger)
97         if client_name is not None and client_ip is not None:
98             self.check_client_access(lp, logger, client_name, client_ip)
99         else:
100             if section_name is not None or parameter_name is not None:
101                 if parameter_name is None:
102                     lp[section_name].dump(sys.stdout, lp.default_service,
103                             verbose)
104                 else:
105                     self.outf.write(lp.get(parameter_name, section_name)+"\n")
106             else:
107                 if not suppress_prompt:
108                     self.outf.write("Press enter to see a dump of your service definitions\n")
109                     sys.stdin.readline()
110                 lp.dump(sys.stdout, verbose)
111         if valid:
112             return
113         else:
114             raise CommandError("Invalid smb.conf")
115
116     def do_global_checks(self, lp, logger):
117         valid = True
118
119         netbios_name = lp.get("netbios name")
120         if not samba.valid_netbios_name(netbios_name):
121             logger.error("netbios name %s is not a valid netbios name",
122                          netbios_name)
123             valid = False
124
125         workgroup = lp.get("workgroup")
126         if not samba.valid_netbios_name(workgroup):
127             logger.error("workgroup name %s is not a valid netbios name",
128                          workgroup)
129             valid = False
130
131         lockdir = lp.get("lockdir")
132
133         if not os.path.isdir(lockdir):
134             logger.error("lock directory %s does not exist", lockdir)
135             valid = False
136
137         piddir = lp.get("pid directory")
138
139         if not os.path.isdir(piddir):
140             logger.error("pid directory %s does not exist", piddir)
141             valid = False
142
143         winbind_separator = lp.get("winbind separator")
144
145         if len(winbind_separator) != 1:
146             logger.error("the 'winbind separator' parameter must be a single "
147                          "character.")
148             valid = False
149
150         if winbind_separator == '+':
151             logger.error(
152                 "'winbind separator = +' might cause problems with group "
153                 "membership.")
154             valid = False
155
156         return valid
157
158     def allow_access(self, deny_list, allow_list, cname, caddr):
159         raise NotImplementedError(self.allow_access)
160
161     def do_share_checks(self, lp, logger):
162         valid = True
163         for s in lp.services():
164             if len(s) > 12:
165                 logger.warning(
166                     "You have some share names that are longer than 12 "
167                     "characters. These may not be accessible to some older "
168                     "clients. (Eg. Windows9x, WindowsMe, and not listed in "
169                     "smbclient in Samba 3.0.)")
170                 break
171
172         for s in lp.services():
173             deny_list = lp.get("hosts deny", s)
174             allow_list = lp.get("hosts allow", s)
175             if deny_list:
176                 for entry in deny_list:
177                     if "*" in entry or "?" in entry:
178                         logger.error("Invalid character (* or ?) in hosts deny "
179                                      "list (%s) for service %s.", entry, s)
180                         valid = False
181
182             if allow_list:
183                 for entry in allow_list:
184                     if "*" in entry or "?" in entry:
185                         logger.error("Invalid character (* or ?) in hosts allow "
186                                      "list (%s) for service %s.", entry, s)
187                         valid = False
188         return valid
189
190     def check_client_access(self, lp, logger, cname, caddr):
191         # this is totally ugly, a real `quick' hack
192         for s in lp.services():
193             if (self.allow_access(lp.get("hosts deny"), lp.get("hosts allow"), cname,
194                              caddr) and
195                 self.allow_access(lp.get("hosts deny", s), lp.get("hosts allow", s),
196                              cname, caddr)):
197                 logger.info("Allow connection from %s (%s) to %s", cname, caddr, s)
198             else:
199                 logger.info("Deny connection from %s (%s) to %s", cname, caddr, s)
200
201 ##   FIXME: We need support for smb.conf macros before this will work again
202 ##
203 ##    if (new_local_machine) {
204 ##        set_local_machine_name(new_local_machine, True)
205 ##    }
206 #