Removed 'extern int DEBUGLEVEL' as it is now in the smb.h header.
[ira/wip.git] / source3 / utils / testparm.c
1 /* 
2    Unix SMB/Netbios implementation.
3    Version 1.9.
4    Test validity of smb.conf
5    Copyright (C) Karl Auer 1993, 1994-1998
6
7    Extensively modified by Andrew Tridgell, 1995
8    
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 2 of the License, or
12    (at your option) any later version.
13    
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18    
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software
21    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 */
23
24 /*
25  * Testbed for loadparm.c/params.c
26  *
27  * This module simply loads a specified configuration file and
28  * if successful, dumps it's contents to stdout. Note that the
29  * operation is performed with DEBUGLEVEL at 3.
30  *
31  * Useful for a quick 'syntax check' of a configuration file.
32  *
33  */
34
35 #include "includes.h"
36 #include "smb.h"
37
38 /***********************************************
39  Here we do a set of 'hard coded' checks for bad
40  configuration settings.
41 ************************************************/
42
43 static int do_global_checks(void)
44 {
45         int ret = 0;
46         SMB_STRUCT_STAT st;
47
48         if (lp_security() == SEC_DOMAIN && !lp_encrypted_passwords()) {
49                 printf("ERROR: in 'security=domain' mode the 'encrypt passwords' parameter must also be set to 'true'.\n");
50                 ret = 1;
51         }
52
53         if (lp_wins_support() && wins_srv_count()) {
54                 printf("ERROR: both 'wins support = true' and 'wins server = <server>' \
55 cannot be set in the smb.conf file. nmbd will abort with this setting.\n");
56                 ret = 1;
57         }
58
59         if (!directory_exist(lp_lockdir(), &st)) {
60                 printf("ERROR: lock directory %s does not exist\n",
61                        lp_lockdir());
62                 ret = 1;
63         } else if ((st.st_mode & 0777) != 0755) {
64                 printf("WARNING: lock directory %s should have permissions 0755 for browsing to work\n",
65                        lp_lockdir());
66                 ret = 1;
67         }
68
69         /*
70          * Password server sanity checks.
71          */
72
73         if((lp_security() == SEC_SERVER || lp_security() == SEC_DOMAIN) && !lp_passwordserver()) {
74                 pstring sec_setting;
75                 if(lp_security() == SEC_SERVER)
76                         pstrcpy(sec_setting, "server");
77                 else if(lp_security() == SEC_DOMAIN)
78                         pstrcpy(sec_setting, "domain");
79
80                 printf("ERROR: The setting 'security=%s' requires the 'password server' parameter be set \
81 to a valid password server.\n", sec_setting );
82                 ret = 1;
83         }
84
85         
86         /*
87          * Check 'hosts equiv' and 'use rhosts' compatability with 'hostname lookup' value.
88          */
89
90         if(*lp_hosts_equiv() && !lp_hostname_lookups()) {
91                 printf("ERROR: The setting 'hosts equiv = %s' requires that 'hostname lookups = yes'.\n", lp_hosts_equiv());
92                 ret = 1;
93         }
94
95         if(lp_use_rhosts() && !lp_hostname_lookups()) {
96                 printf("ERROR: The setting 'use rhosts = yes' requires the 'hostname lookups = yes'.\n");
97                 ret = 1;
98         }
99
100
101         /*
102          * Password chat sanity checks.
103          */
104
105         if(lp_security() == SEC_USER && lp_unix_password_sync()) {
106
107                 /*
108                  * Check that we have a valid lp_passwd_program() if not using pam.
109                  */
110
111 #ifdef WITH_PAM
112                 if (!lp_pam_password_change()) {
113 #endif
114
115                         if(lp_passwd_program() == NULL) {
116                                 printf("ERROR: the 'unix password sync' parameter is set and there is no valid 'passwd program' \
117 parameter.\n" );
118                                 ret = 1;
119                         } else {
120                                 pstring passwd_prog;
121                                 pstring truncated_prog;
122                                 char *p;
123
124                                 pstrcpy( passwd_prog, lp_passwd_program());
125                                 p = passwd_prog;
126                                 *truncated_prog = '\0';
127                                 next_token(&p, truncated_prog, NULL, sizeof(pstring));
128
129                                 if(access(truncated_prog, F_OK) == -1) {
130                                         printf("ERROR: the 'unix password sync' parameter is set and the 'passwd program' (%s) \
131 cannot be executed (error was %s).\n", truncated_prog, strerror(errno) );
132                                         ret = 1;
133                                 }
134                         }
135
136 #ifdef WITH_PAM
137                 }
138 #endif
139
140                 if(lp_passwd_chat() == NULL) {
141                         printf("ERROR: the 'unix password sync' parameter is set and there is no valid 'passwd chat' \
142 parameter.\n");
143                         ret = 1;
144                 }
145
146                 /*
147                  * Check that we have a valid script and that it hasn't
148                  * been written to expect the old password.
149                  */
150
151                 if(lp_encrypted_passwords()) {
152                         if(strstr( lp_passwd_chat(), "%o")!=NULL) {
153                                 printf("ERROR: the 'passwd chat' script [%s] expects to use the old plaintext password \
154 via the %%o substitution. With encrypted passwords this is not possible.\n", lp_passwd_chat() );
155                                 ret = 1;
156                         }
157                 }
158         }
159
160         return ret;
161 }   
162
163 static void usage(char *pname)
164 {
165         printf("Usage: %s [-sh] [-L servername] [configfilename] [hostname hostIP]\n", pname);
166         printf("\t-s                  Suppress prompt for enter\n");
167         printf("\t-h                  Print usage\n");
168         printf("\t-L servername       Set %%L macro to servername\n");
169         printf("\t-t encoding         Print parameters with encoding\n");
170         printf("\tconfigfilename      Configuration file to test\n");
171         printf("\thostname hostIP.    Hostname and Host IP address to test\n");
172         printf("\t                    against \"host allow\" and \"host deny\"\n");
173         printf("\n");
174 }
175
176
177 int main(int argc, char *argv[])
178 {
179   extern char *optarg;
180   extern int optind;
181   extern fstring local_machine;
182   pstring configfile;
183   int opt;
184   int s;
185   BOOL silent_mode = False;
186   int ret = 0;
187   pstring term_code;
188
189   *term_code = 0;
190
191   TimeInit();
192
193   setup_logging(argv[0],True);
194   
195   while ((opt = getopt(argc, argv,"shL:t:")) != EOF) {
196   switch (opt) {
197     case 's':
198       silent_mode = True;
199       break;
200     case 'L':
201       fstrcpy(local_machine,optarg);
202       break;
203     case 'h':
204       usage(argv[0]);
205       exit(0);
206       break;
207     case 't':
208       pstrcpy(term_code,optarg);
209       break;
210     default:
211       printf("Incorrect program usage\n");
212       usage(argv[0]);
213       exit(1);
214       break;
215     }
216   }
217
218   argc += (1 - optind);
219
220   if ((argc == 1) || (argc == 3))
221     pstrcpy(configfile,CONFIGFILE);
222   else if ((argc == 2) || (argc == 4))
223     pstrcpy(configfile,argv[optind]);
224
225   dbf = x_stdout;
226   DEBUGLEVEL = 2;
227
228   printf("Load smb config files from %s\n",configfile);
229
230   if (!lp_load(configfile,False,True,False)) {
231       printf("Error loading services.\n");
232       return(1);
233   }
234
235   printf("Loaded services file OK.\n");
236
237   ret = do_global_checks();
238
239   for (s=0;s<1000;s++) {
240     if (VALID_SNUM(s))
241       if (strlen(lp_servicename(s)) > 8) {
242         printf("WARNING: You have some share names that are longer than 8 chars\n");
243         printf("These may give errors while browsing or may not be accessible\nto some older clients\n");
244         break;
245       }
246   }
247
248   for (s=0;s<1000;s++) {
249     if (VALID_SNUM(s)) {
250       char **deny_list = lp_hostsdeny(s);
251       char **allow_list = lp_hostsallow(s);
252       int i;
253       if(deny_list) {
254         for (i=0; deny_list[i]; i++) {
255           char *hasstar = strchr_m(deny_list[i], '*');
256           char *hasquery = strchr_m(deny_list[i], '?');
257           if(hasstar || hasquery) {
258             printf("Invalid character %c in hosts deny list (%s) for service %s.\n",
259                  hasstar ? *hasstar : *hasquery, deny_list[i], lp_servicename(s) );
260           }
261         }
262       }
263
264       if(allow_list) {
265         for (i=0; allow_list[i]; i++) {
266           char *hasstar = strchr_m(allow_list[i], '*');
267           char *hasquery = strchr_m(allow_list[i], '?');
268           if(hasstar || hasquery) {
269             printf("Invalid character %c in hosts allow list (%s) for service %s.\n",
270                  hasstar ? *hasstar : *hasquery, allow_list[i], lp_servicename(s) );
271           }
272         }
273       }
274
275       if(lp_level2_oplocks(s) && !lp_oplocks(s)) {
276         printf("Invalid combination of parameters for service %s. \
277 Level II oplocks can only be set if oplocks are also set.\n",
278                lp_servicename(s) );
279       }
280     }
281   }
282
283   if (argc < 3) {
284     if (!silent_mode) {
285       printf("Press enter to see a dump of your service definitions\n");
286       fflush(stdout);
287       getc(stdin);
288     }
289     lp_dump(stdout,True, lp_numservices());
290   }
291   
292   if (argc >= 3) {
293     char *cname;
294     char *caddr;
295       
296     if (argc == 3) {
297       cname = argv[optind];
298       caddr = argv[optind+1];
299     } else {
300       cname = argv[optind+1];
301       caddr = argv[optind+2];
302     }
303
304     /* this is totally ugly, a real `quick' hack */
305     for (s=0;s<1000;s++) {
306       if (VALID_SNUM(s)) {               
307         if (allow_access(lp_hostsdeny(s),lp_hostsallow(s),cname,caddr)) {
308           printf("Allow connection from %s (%s) to %s\n",
309                  cname,caddr,lp_servicename(s));
310         } else {
311           printf("Deny connection from %s (%s) to %s\n",
312                  cname,caddr,lp_servicename(s));
313         }
314       }
315     }
316   }
317   return(ret);
318 }