Removed TimeInit() call from every client program (except for one place
[kai/samba.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   setup_logging(argv[0],True);
192   
193   while ((opt = getopt(argc, argv,"shL:t:")) != EOF) {
194   switch (opt) {
195     case 's':
196       silent_mode = True;
197       break;
198     case 'L':
199       fstrcpy(local_machine,optarg);
200       break;
201     case 'h':
202       usage(argv[0]);
203       exit(0);
204       break;
205     case 't':
206       pstrcpy(term_code,optarg);
207       break;
208     default:
209       printf("Incorrect program usage\n");
210       usage(argv[0]);
211       exit(1);
212       break;
213     }
214   }
215
216   argc += (1 - optind);
217
218   if ((argc == 1) || (argc == 3))
219     pstrcpy(configfile, dyn_CONFIGFILE);
220   else if ((argc == 2) || (argc == 4))
221     pstrcpy(configfile,argv[optind]);
222
223   dbf = x_stdout;
224   DEBUGLEVEL = 2;
225
226   printf("Load smb config files from %s\n",configfile);
227
228   if (!lp_load(configfile,False,True,False)) {
229       printf("Error loading services.\n");
230       return(1);
231   }
232
233   printf("Loaded services file OK.\n");
234
235   ret = do_global_checks();
236
237   for (s=0;s<1000;s++) {
238     if (VALID_SNUM(s))
239       if (strlen(lp_servicename(s)) > 8) {
240         printf("WARNING: You have some share names that are longer than 8 chars\n");
241         printf("These may give errors while browsing or may not be accessible\nto some older clients\n");
242         break;
243       }
244   }
245
246   for (s=0;s<1000;s++) {
247     if (VALID_SNUM(s)) {
248       char **deny_list = lp_hostsdeny(s);
249       char **allow_list = lp_hostsallow(s);
250       int i;
251       if(deny_list) {
252         for (i=0; deny_list[i]; i++) {
253           char *hasstar = strchr_m(deny_list[i], '*');
254           char *hasquery = strchr_m(deny_list[i], '?');
255           if(hasstar || hasquery) {
256             printf("Invalid character %c in hosts deny list (%s) for service %s.\n",
257                  hasstar ? *hasstar : *hasquery, deny_list[i], lp_servicename(s) );
258           }
259         }
260       }
261
262       if(allow_list) {
263         for (i=0; allow_list[i]; i++) {
264           char *hasstar = strchr_m(allow_list[i], '*');
265           char *hasquery = strchr_m(allow_list[i], '?');
266           if(hasstar || hasquery) {
267             printf("Invalid character %c in hosts allow list (%s) for service %s.\n",
268                  hasstar ? *hasstar : *hasquery, allow_list[i], lp_servicename(s) );
269           }
270         }
271       }
272
273       if(lp_level2_oplocks(s) && !lp_oplocks(s)) {
274         printf("Invalid combination of parameters for service %s. \
275 Level II oplocks can only be set if oplocks are also set.\n",
276                lp_servicename(s) );
277       }
278     }
279   }
280
281   if (argc < 3) {
282     if (!silent_mode) {
283       printf("Press enter to see a dump of your service definitions\n");
284       fflush(stdout);
285       getc(stdin);
286     }
287     lp_dump(stdout,True, lp_numservices());
288   }
289   
290   if (argc >= 3) {
291     char *cname;
292     char *caddr;
293       
294     if (argc == 3) {
295       cname = argv[optind];
296       caddr = argv[optind+1];
297     } else {
298       cname = argv[optind+1];
299       caddr = argv[optind+2];
300     }
301
302     /* this is totally ugly, a real `quick' hack */
303     for (s=0;s<1000;s++) {
304       if (VALID_SNUM(s)) {               
305         if (allow_access(lp_hostsdeny(s),lp_hostsallow(s),cname,caddr)) {
306           printf("Allow connection from %s (%s) to %s\n",
307                  cname,caddr,lp_servicename(s));
308         } else {
309           printf("Deny connection from %s (%s) to %s\n",
310                  cname,caddr,lp_servicename(s));
311         }
312       }
313     }
314   }
315   return(ret);
316 }