Fix the %m security bug again - and try to make it harder to reintroduce in
[ira/wip.git] / source3 / 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    
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         if (!directory_exist(lp_piddir(), &st)) {
72                 printf("ERROR: pid directory %s does not exist\n",
73                        lp_piddir());
74                 ret = 1;
75         }
76
77         /*
78          * Password server sanity checks.
79          */
80
81         if((lp_security() == SEC_SERVER || lp_security() >= SEC_DOMAIN) && !lp_passwordserver()) {
82                 pstring sec_setting;
83                 if(lp_security() == SEC_SERVER)
84                         pstrcpy(sec_setting, "server");
85                 else if(lp_security() == SEC_DOMAIN)
86                         pstrcpy(sec_setting, "domain");
87
88                 printf("ERROR: The setting 'security=%s' requires the 'password server' parameter be set \
89 to a valid password server.\n", sec_setting );
90                 ret = 1;
91         }
92
93         
94         /*
95          * Check 'hosts equiv' and 'use rhosts' compatibility with 'hostname lookup' value.
96          */
97
98         if(*lp_hosts_equiv() && !lp_hostname_lookups()) {
99                 printf("ERROR: The setting 'hosts equiv = %s' requires that 'hostname lookups = yes'.\n", lp_hosts_equiv());
100                 ret = 1;
101         }
102
103         /*
104          * Password chat sanity checks.
105          */
106
107         if(lp_security() == SEC_USER && lp_unix_password_sync()) {
108
109                 /*
110                  * Check that we have a valid lp_passwd_program() if not using pam.
111                  */
112
113 #ifdef WITH_PAM
114                 if (!lp_pam_password_change()) {
115 #endif
116
117                         if(lp_passwd_program() == NULL) {
118                                 printf("ERROR: the 'unix password sync' parameter is set and there is no valid 'passwd program' \
119 parameter.\n" );
120                                 ret = 1;
121                         } else {
122                                 pstring passwd_prog;
123                                 pstring truncated_prog;
124                                 char *p;
125
126                                 pstrcpy( passwd_prog, lp_passwd_program());
127                                 p = passwd_prog;
128                                 *truncated_prog = '\0';
129                                 next_token(&p, truncated_prog, NULL, sizeof(pstring));
130
131                                 if(access(truncated_prog, F_OK) == -1) {
132                                         printf("ERROR: the 'unix password sync' parameter is set and the 'passwd program' (%s) \
133 cannot be executed (error was %s).\n", truncated_prog, strerror(errno) );
134                                         ret = 1;
135                                 }
136                         }
137
138 #ifdef WITH_PAM
139                 }
140 #endif
141
142                 if(lp_passwd_chat() == NULL) {
143                         printf("ERROR: the 'unix password sync' parameter is set and there is no valid 'passwd chat' \
144 parameter.\n");
145                         ret = 1;
146                 }
147
148                 /*
149                  * Check that we have a valid script and that it hasn't
150                  * been written to expect the old password.
151                  */
152
153                 if(lp_encrypted_passwords()) {
154                         if(strstr( lp_passwd_chat(), "%o")!=NULL) {
155                                 printf("ERROR: the 'passwd chat' script [%s] expects to use the old plaintext password \
156 via the %%o substitution. With encrypted passwords this is not possible.\n", lp_passwd_chat() );
157                                 ret = 1;
158                         }
159                 }
160         }
161
162         if (strlen(lp_winbind_separator()) != 1) {
163                 printf("ERROR: the 'winbind separator' parameter must be a single character.\n");
164                 ret = 1;
165         }
166
167         if (*lp_winbind_separator() == '+') {
168                 printf("'winbind separator = +' might cause problems with group membership.\n");
169         }
170
171         return ret;
172 }   
173
174 int main(int argc, char *argv[])
175 {
176         extern char *optarg;
177         extern int optind;
178         const char *config_file = dyn_CONFIGFILE;
179         int s;
180         static BOOL silent_mode = False;
181         int ret = 0;
182         int opt;
183         poptContext pc;
184         static char *term_code = "";
185         static char *new_local_machine = NULL;
186         const char *cname;
187         const char *caddr;
188
189         struct poptOption long_options[] = {
190                 POPT_AUTOHELP
191                 {"suppress-prompt", 's', POPT_ARG_VAL, &silent_mode, 1, "Suppress prompt for enter"},
192                 {"server", 'L',POPT_ARG_STRING, &new_local_machine, 0, "Set %%L macro to servername\n"},
193                 {"encoding", 't', POPT_ARG_STRING, &term_code, 0, "Print parameters with encoding"},
194                 {0,0,0,0}
195         };
196
197         pc = poptGetContext(NULL, argc, (const char **) argv, long_options, 
198                                                 POPT_CONTEXT_KEEP_FIRST);
199
200         while((opt = poptGetNextOpt(pc)) != -1);
201
202         setup_logging(poptGetArg(pc), True);
203
204         if (poptPeekArg(pc)) 
205                 config_file = poptGetArg(pc);
206
207         cname = poptGetArg(pc);
208         caddr = poptGetArg(pc);
209         
210         if (new_local_machine) {
211                 set_local_machine_name(new_local_machine);
212         }
213
214         dbf = x_stdout;
215         DEBUGLEVEL = 2;
216         AllowDebugChange = False;
217
218         printf("Load smb config files from %s\n",config_file);
219
220         if (!lp_load(config_file,False,True,False)) {
221                 printf("Error loading services.\n");
222                 return(1);
223         }
224
225         printf("Loaded services file OK.\n");
226
227         ret = do_global_checks();
228
229         for (s=0;s<1000;s++) {
230                 if (VALID_SNUM(s))
231                         if (strlen(lp_servicename(s)) > 8) {
232                                 printf("WARNING: You have some share names that are longer than 8 chars\n");
233                                 printf("These may give errors while browsing or may not be accessible\nto some older clients\n");
234                                 break;
235                         }
236         }
237
238         for (s=0;s<1000;s++) {
239                 if (VALID_SNUM(s)) {
240                         char **deny_list = lp_hostsdeny(s);
241                         char **allow_list = lp_hostsallow(s);
242                         int i;
243                         if(deny_list) {
244                                 for (i=0; deny_list[i]; i++) {
245                                         char *hasstar = strchr_m(deny_list[i], '*');
246                                         char *hasquery = strchr_m(deny_list[i], '?');
247                                         if(hasstar || hasquery) {
248                                                 printf("Invalid character %c in hosts deny list (%s) for service %s.\n",
249                                                            hasstar ? *hasstar : *hasquery, deny_list[i], lp_servicename(s) );
250                                         }
251                                 }
252                         }
253
254                         if(allow_list) {
255                                 for (i=0; allow_list[i]; i++) {
256                                         char *hasstar = strchr_m(allow_list[i], '*');
257                                         char *hasquery = strchr_m(allow_list[i], '?');
258                                         if(hasstar || hasquery) {
259                                                 printf("Invalid character %c in hosts allow list (%s) for service %s.\n",
260                                                            hasstar ? *hasstar : *hasquery, allow_list[i], lp_servicename(s) );
261                                         }
262                                 }
263                         }
264
265                         if(lp_level2_oplocks(s) && !lp_oplocks(s)) {
266                                 printf("Invalid combination of parameters for service %s. \
267                                            Level II oplocks can only be set if oplocks are also set.\n",
268                                            lp_servicename(s) );
269                         }
270                 }
271         }
272
273         if (!cname) {
274                 if (!silent_mode) {
275                         printf("Press enter to see a dump of your service definitions\n");
276                         fflush(stdout);
277                         getc(stdin);
278                 }
279                 lp_dump(stdout,True, lp_numservices());
280         }
281
282         if(cname && caddr){
283                 /* this is totally ugly, a real `quick' hack */
284                 for (s=0;s<1000;s++) {
285                         if (VALID_SNUM(s)) {             
286                                 if (allow_access(lp_hostsdeny(s), lp_hostsallow(s), cname, caddr)) {
287                                         printf("Allow connection from %s (%s) to %s\n",
288                                                    cname,caddr,lp_servicename(s));
289                                 } else {
290                                         printf("Deny connection from %s (%s) to %s\n",
291                                                    cname,caddr,lp_servicename(s));
292                                 }
293                         }
294                 }
295         }
296         return(ret);
297 }