r12730: Reimplement --parameter-name, and bring in common samba options.
[kai/samba.git] / source4 / utils / testparm.c
1 /* 
2    Unix SMB/CIFS implementation.
3    Test validity of smb.conf
4    Copyright (C) Karl Auer 1993, 1994-1998
5
6    Extensively modified by Andrew Tridgell, 1995
7    Converted to popt by Jelmer Vernooij (jelmer@nl.linux.org), 2002
8    Updated for Samba4 by Andrew Bartlett <abartlet@samba.org> 2006
9    
10    This program is free software; you can redistribute it and/or modify
11    it under the terms of the GNU General Public License as published by
12    the Free Software Foundation; either version 2 of the License, or
13    (at your option) any later version.
14    
15    This program is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18    GNU General Public License for more details.
19    
20    You should have received a copy of the GNU General Public License
21    along with this program; if not, write to the Free Software
22    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 */
24
25 /*
26  * Testbed for loadparm.c/params.c
27  *
28  * This module simply loads a specified configuration file and
29  * if successful, dumps it's contents to stdout. Note that the
30  * operation is performed with DEBUGLEVEL at 3.
31  *
32  * Useful for a quick 'syntax check' of a configuration file.
33  *
34  */
35
36 #include "includes.h"
37 #include "system/filesys.h"
38 #include "lib/cmdline/popt_common.h"
39 #include "lib/socket/socket.h"
40
41
42 /***********************************************
43  Here we do a set of 'hard coded' checks for bad
44  configuration settings.
45 ************************************************/
46
47 static int do_global_checks(void)
48 {
49         int ret = 0;
50
51         if (!directory_exist(lp_lockdir())) {
52                 fprintf(stderr, "ERROR: lock directory %s does not exist\n",
53                        lp_lockdir());
54                 ret = 1;
55         }
56
57         if (!directory_exist(lp_piddir())) {
58                 fprintf(stderr, "ERROR: pid directory %s does not exist\n",
59                        lp_piddir());
60                 ret = 1;
61         }
62
63         if (strlen(lp_winbind_separator()) != 1) {
64                 fprintf(stderr,"ERROR: the 'winbind separator' parameter must be a single character.\n");
65                 ret = 1;
66         }
67
68         if (*lp_winbind_separator() == '+') {
69                 fprintf(stderr,"'winbind separator = +' might cause problems with group membership.\n");
70         }
71
72         return ret;
73 }   
74
75  int main(int argc, const char *argv[])
76 {
77         int s;
78         static BOOL silent_mode = False;
79         int ret = 0;
80         poptContext pc;
81         static const char *term_code = "";
82 /*
83         static BOOL show_all_parameters = False;
84         static char *new_local_machine = NULL;
85 */
86         static const char *section_name = NULL;
87         static char *parameter_name = NULL;
88         static const char *cname;
89         static const char *caddr;
90         static int show_defaults;
91
92         struct poptOption long_options[] = {
93                 POPT_AUTOHELP
94                 {"suppress-prompt", '\0', POPT_ARG_VAL, &silent_mode, 1, "Suppress prompt for enter"},
95                 {"verbose", 'v', POPT_ARG_NONE, &show_defaults, 1, "Show default options too"},
96 /*
97   We need support for smb.conf macros before this will work again 
98                 {"server", 'L',POPT_ARG_STRING, &new_local_machine, 0, "Set %%L macro to servername\n"},
99 */              {"encoding", 't', POPT_ARG_STRING, &term_code, 0, "Print parameters with encoding"},
100 /*
101   These are harder to do with the new code structure
102                 {"show-all-parameters", '\0', POPT_ARG_VAL, &show_all_parameters, True, "Show the parameters, type, possible values" },
103 */
104                 {"section-name", '\0', POPT_ARG_STRING, &section_name, 0, "Limit testparm to a named section" },
105                 {"parameter-name", '\0', POPT_ARG_STRING, &parameter_name, 0, "Limit testparm to a named parameter" },
106                 {"client-name", '\0', POPT_ARG_STRING, &cname, 0, "Client DNS name for 'hosts allow' checking (should match reverse lookup)"},
107                 {"client-ip", '\0', POPT_ARG_STRING, &caddr, 0, "Client IP address for 'hosts allow' checking"},
108                 POPT_COMMON_SAMBA
109                 POPT_COMMON_VERSION
110                 POPT_TABLEEND
111         };
112
113         setup_logging(NULL, DEBUG_STDERR);
114
115         pc = poptGetContext(NULL, argc, argv, long_options, 
116                             POPT_CONTEXT_KEEP_FIRST);
117         poptSetOtherOptionHelp(pc, "[OPTION...] [host-name] [host-ip]");
118
119         while(poptGetNextOpt(pc) != -1);
120
121 /* 
122         if (show_all_parameters) {
123                 show_parameter_list();
124                 exit(0);
125         }
126 */
127
128         if ( cname && ! caddr ) {
129                 printf ( "ERROR: For 'hosts allow' check you must specify both a DNS name and an IP address.\n" );
130                 return(1);
131         }
132 /*
133   We need support for smb.conf macros before this will work again 
134
135         if (new_local_machine) {
136                 set_local_machine_name(new_local_machine, True);
137         }
138 */
139         
140         /* We need this to force the output */
141         lp_set_cmdline("log level", "2");
142
143         fprintf(stderr,"Load smb config files from %s\n",lp_configfile());
144
145         if (!lp_load()) {
146                 fprintf(stderr,"Error loading services.\n");
147                 return(1);
148         }
149
150         fprintf(stderr,"Loaded services file OK.\n");
151
152         ret = do_global_checks();
153
154         for (s=0;s<lp_numservices();s++) {
155                 if (lp_snum_ok(s))
156                         if (strlen(lp_servicename(s)) > 12) {
157                                 fprintf(stderr, "WARNING: You have some share names that are longer than 12 characters.\n" );
158                                 fprintf(stderr, "These may not be accessible to some older clients.\n" );
159                                 fprintf(stderr, "(Eg. Windows9x, WindowsMe, and not listed in smbclient in Samba 3.0.)\n" );
160                                 break;
161                         }
162         }
163
164         for (s=0;s<lp_numservices();s++) {
165                 if (lp_snum_ok(s)) {
166                         const char **deny_list = lp_hostsdeny(s);
167                         const char **allow_list = lp_hostsallow(s);
168                         int i;
169                         if(deny_list) {
170                                 for (i=0; deny_list[i]; i++) {
171                                         char *hasstar = strchr_m(deny_list[i], '*');
172                                         char *hasquery = strchr_m(deny_list[i], '?');
173                                         if(hasstar || hasquery) {
174                                                 fprintf(stderr,"Invalid character %c in hosts deny list (%s) for service %s.\n",
175                                                            hasstar ? *hasstar : *hasquery, deny_list[i], lp_servicename(s) );
176                                         }
177                                 }
178                         }
179
180                         if(allow_list) {
181                                 for (i=0; allow_list[i]; i++) {
182                                         char *hasstar = strchr_m(allow_list[i], '*');
183                                         char *hasquery = strchr_m(allow_list[i], '?');
184                                         if(hasstar || hasquery) {
185                                                 fprintf(stderr,"Invalid character %c in hosts allow list (%s) for service %s.\n",
186                                                            hasstar ? *hasstar : *hasquery, allow_list[i], lp_servicename(s) );
187                                         }
188                                 }
189                         }
190                 }
191         }
192
193
194         if (!cname) {
195                 if (!silent_mode) {
196                         fprintf(stderr,"Press enter to see a dump of your service definitions\n");
197                         fflush(stdout);
198                         getc(stdin);
199                 }
200                 if (section_name || parameter_name) {
201                         BOOL isGlobal = False;
202                         if (!section_name) {
203                                 section_name = GLOBAL_NAME;
204                                 isGlobal = True;
205                         } else if ((isGlobal=!strwicmp(section_name, GLOBAL_NAME)) == 0 &&
206                                  (s=lp_servicenumber(section_name)) == -1) {
207                                         fprintf(stderr,"Unknown section %s\n",
208                                                 section_name);
209                                         return(1);
210                         }
211                         if (!parameter_name) {
212                                 if (isGlobal == True) {
213                                         lp_dump(stdout, show_defaults, 0);
214                                 } else {
215                                         lp_dump_one(stdout, show_defaults, s);
216                                 }
217                         } else {
218                                 ret = lp_dump_a_parameter(s, parameter_name, stdout, isGlobal);
219                         }
220                 } else {
221                         lp_dump(stdout, show_defaults, lp_numservices());
222                 }
223                 return(ret);
224         }
225
226         if(cname && caddr){
227                 /* this is totally ugly, a real `quick' hack */
228                 for (s=0;s<lp_numservices();s++) {
229                         if (lp_snum_ok(s)) {
230                                 if (allow_access(NULL, lp_hostsdeny(-1), lp_hostsallow(-1), cname, caddr)
231                                     && allow_access(NULL, lp_hostsdeny(s), lp_hostsallow(s), cname, caddr)) {
232                                         fprintf(stderr,"Allow connection from %s (%s) to %s\n",
233                                                    cname,caddr,lp_servicename(s));
234                                 } else {
235                                         fprintf(stderr,"Deny connection from %s (%s) to %s\n",
236                                                    cname,caddr,lp_servicename(s));
237                                 }
238                         }
239                 }
240         }
241         return(ret);
242 }
243