Since we have dynamic initialisation in the group mapping code, make
[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 extern BOOL AllowDebugChange;
39
40 /***********************************************
41  Here we do a set of 'hard coded' checks for bad
42  configuration settings.
43 ************************************************/
44
45 static int do_global_checks(void)
46 {
47         int ret = 0;
48         SMB_STRUCT_STAT st;
49
50         if (lp_security() == SEC_DOMAIN && !lp_encrypted_passwords()) {
51                 printf("ERROR: in 'security=domain' mode the 'encrypt passwords' parameter must also be set to 'true'.\n");
52                 ret = 1;
53         }
54
55         if (lp_wins_support() && wins_srv_count()) {
56                 printf("ERROR: both 'wins support = true' and 'wins server = <server>' \
57 cannot be set in the smb.conf file. nmbd will abort with this setting.\n");
58                 ret = 1;
59         }
60
61         if (!directory_exist(lp_lockdir(), &st)) {
62                 printf("ERROR: lock directory %s does not exist\n",
63                        lp_lockdir());
64                 ret = 1;
65         } else if ((st.st_mode & 0777) != 0755) {
66                 printf("WARNING: lock directory %s should have permissions 0755 for browsing to work\n",
67                        lp_lockdir());
68                 ret = 1;
69         }
70
71         /*
72          * Password server sanity checks.
73          */
74
75         if((lp_security() == SEC_SERVER || lp_security() == SEC_DOMAIN) && !lp_passwordserver()) {
76                 pstring sec_setting;
77                 if(lp_security() == SEC_SERVER)
78                         pstrcpy(sec_setting, "server");
79                 else if(lp_security() == SEC_DOMAIN)
80                         pstrcpy(sec_setting, "domain");
81
82                 printf("ERROR: The setting 'security=%s' requires the 'password server' parameter be set \
83 to a valid password server.\n", sec_setting );
84                 ret = 1;
85         }
86
87         
88         /*
89          * Check 'hosts equiv' and 'use rhosts' compatability with 'hostname lookup' value.
90          */
91
92         if(*lp_hosts_equiv() && !lp_hostname_lookups()) {
93                 printf("ERROR: The setting 'hosts equiv = %s' requires that 'hostname lookups = yes'.\n", lp_hosts_equiv());
94                 ret = 1;
95         }
96
97         /*
98          * Password chat sanity checks.
99          */
100
101         if(lp_security() == SEC_USER && lp_unix_password_sync()) {
102
103                 /*
104                  * Check that we have a valid lp_passwd_program() if not using pam.
105                  */
106
107 #ifdef WITH_PAM
108                 if (!lp_pam_password_change()) {
109 #endif
110
111                         if(lp_passwd_program() == NULL) {
112                                 printf("ERROR: the 'unix password sync' parameter is set and there is no valid 'passwd program' \
113 parameter.\n" );
114                                 ret = 1;
115                         } else {
116                                 pstring passwd_prog;
117                                 pstring truncated_prog;
118                                 char *p;
119
120                                 pstrcpy( passwd_prog, lp_passwd_program());
121                                 p = passwd_prog;
122                                 *truncated_prog = '\0';
123                                 next_token(&p, truncated_prog, NULL, sizeof(pstring));
124
125                                 if(access(truncated_prog, F_OK) == -1) {
126                                         printf("ERROR: the 'unix password sync' parameter is set and the 'passwd program' (%s) \
127 cannot be executed (error was %s).\n", truncated_prog, strerror(errno) );
128                                         ret = 1;
129                                 }
130                         }
131
132 #ifdef WITH_PAM
133                 }
134 #endif
135
136                 if(lp_passwd_chat() == NULL) {
137                         printf("ERROR: the 'unix password sync' parameter is set and there is no valid 'passwd chat' \
138 parameter.\n");
139                         ret = 1;
140                 }
141
142                 /*
143                  * Check that we have a valid script and that it hasn't
144                  * been written to expect the old password.
145                  */
146
147                 if(lp_encrypted_passwords()) {
148                         if(strstr( lp_passwd_chat(), "%o")!=NULL) {
149                                 printf("ERROR: the 'passwd chat' script [%s] expects to use the old plaintext password \
150 via the %%o substitution. With encrypted passwords this is not possible.\n", lp_passwd_chat() );
151                                 ret = 1;
152                         }
153                 }
154         }
155
156         return ret;
157 }   
158
159 static void usage(char *pname)
160 {
161         printf("Usage: %s [-sh] [-L servername] [configfilename] [hostname hostIP]\n", pname);
162         printf("\t-s                  Suppress prompt for enter\n");
163         printf("\t-h                  Print usage\n");
164         printf("\t-L servername       Set %%L macro to servername\n");
165         printf("\t-t encoding         Print parameters with encoding\n");
166         printf("\tconfigfilename      Configuration file to test\n");
167         printf("\thostname hostIP.    Hostname and Host IP address to test\n");
168         printf("\t                    against \"host allow\" and \"host deny\"\n");
169         printf("\n");
170 }
171
172
173 int main(int argc, char *argv[])
174 {
175   extern char *optarg;
176   extern int optind;
177   extern fstring local_machine;
178   pstring configfile;
179   int opt;
180   int s;
181   BOOL silent_mode = False;
182   int ret = 0;
183   pstring term_code;
184
185   *term_code = 0;
186
187   setup_logging(argv[0],True);
188   
189   while ((opt = getopt(argc, argv,"shL:t:")) != EOF) {
190   switch (opt) {
191     case 's':
192       silent_mode = True;
193       break;
194     case 'L':
195       fstrcpy(local_machine,optarg);
196       break;
197     case 'h':
198       usage(argv[0]);
199       exit(0);
200       break;
201     case 't':
202       pstrcpy(term_code,optarg);
203       break;
204     default:
205       printf("Incorrect program usage\n");
206       usage(argv[0]);
207       exit(1);
208       break;
209     }
210   }
211
212   argc += (1 - optind);
213
214   if ((argc == 1) || (argc == 3))
215     pstrcpy(configfile, dyn_CONFIGFILE);
216   else if ((argc == 2) || (argc == 4))
217     pstrcpy(configfile,argv[optind]);
218
219   dbf = x_stdout;
220   DEBUGLEVEL = 2;
221   AllowDebugChange = False;
222
223   printf("Load smb config files from %s\n",configfile);
224
225   if (!lp_load(configfile,False,True,False)) {
226       printf("Error loading services.\n");
227       return(1);
228   }
229
230   printf("Loaded services file OK.\n");
231
232   ret = do_global_checks();
233
234   for (s=0;s<1000;s++) {
235     if (VALID_SNUM(s))
236       if (strlen(lp_servicename(s)) > 8) {
237         printf("WARNING: You have some share names that are longer than 8 chars\n");
238         printf("These may give errors while browsing or may not be accessible\nto some older clients\n");
239         break;
240       }
241   }
242
243   for (s=0;s<1000;s++) {
244     if (VALID_SNUM(s)) {
245       char **deny_list = lp_hostsdeny(s);
246       char **allow_list = lp_hostsallow(s);
247       int i;
248       if(deny_list) {
249         for (i=0; deny_list[i]; i++) {
250           char *hasstar = strchr_m(deny_list[i], '*');
251           char *hasquery = strchr_m(deny_list[i], '?');
252           if(hasstar || hasquery) {
253             printf("Invalid character %c in hosts deny list (%s) for service %s.\n",
254                  hasstar ? *hasstar : *hasquery, deny_list[i], lp_servicename(s) );
255           }
256         }
257       }
258
259       if(allow_list) {
260         for (i=0; allow_list[i]; i++) {
261           char *hasstar = strchr_m(allow_list[i], '*');
262           char *hasquery = strchr_m(allow_list[i], '?');
263           if(hasstar || hasquery) {
264             printf("Invalid character %c in hosts allow list (%s) for service %s.\n",
265                  hasstar ? *hasstar : *hasquery, allow_list[i], lp_servicename(s) );
266           }
267         }
268       }
269
270       if(lp_level2_oplocks(s) && !lp_oplocks(s)) {
271         printf("Invalid combination of parameters for service %s. \
272 Level II oplocks can only be set if oplocks are also set.\n",
273                lp_servicename(s) );
274       }
275     }
276   }
277
278   if (argc < 3) {
279     if (!silent_mode) {
280       printf("Press enter to see a dump of your service definitions\n");
281       fflush(stdout);
282       getc(stdin);
283     }
284     lp_dump(stdout,True, lp_numservices());
285   }
286   
287   if (argc >= 3) {
288     char *cname;
289     char *caddr;
290       
291     if (argc == 3) {
292       cname = argv[optind];
293       caddr = argv[optind+1];
294     } else {
295       cname = argv[optind+1];
296       caddr = argv[optind+2];
297     }
298
299     /* this is totally ugly, a real `quick' hack */
300     for (s=0;s<1000;s++) {
301       if (VALID_SNUM(s)) {               
302         if (allow_access(lp_hostsdeny(s),lp_hostsallow(s),cname,caddr)) {
303           printf("Allow connection from %s (%s) to %s\n",
304                  cname,caddr,lp_servicename(s));
305         } else {
306           printf("Deny connection from %s (%s) to %s\n",
307                  cname,caddr,lp_servicename(s));
308         }
309       }
310     }
311   }
312   return(ret);
313 }