updating documentation to reflect code a little bit.
[Samba.git] / source / utils / testparm.c
blob1d6cc2b000333b315a80d630b231228bdfcfc08c
1 /*
2 Unix SMB/Netbios implementation.
3 Version 1.9.
4 Test validity of smb.conf
5 Copyright (C) Karl Auer 1993, 1994
7 Extensively modified by Andrew Tridgell, 1995
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.
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.
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.
25 * Testbed for loadparm.c/params.c
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.
31 * Useful for a quick 'syntax check' of a configuration file.
35 #include "includes.h"
36 #include "smb.h"
38 /* these live in util.c */
39 extern FILE *dbf;
40 extern int DEBUGLEVEL;
42 int main(int argc, char *argv[])
44 pstring configfile;
45 int s;
47 TimeInit();
49 setup_logging(argv[0],True);
51 charset_initialise();
53 if (argc < 2)
54 strcpy(configfile,CONFIGFILE);
55 else
56 strcpy(configfile,argv[1]);
58 dbf = stdout;
59 DEBUGLEVEL = 2;
61 printf("Load smb config files from %s\n",configfile);
63 if (!lp_load(configfile,False))
65 printf("Error loading services.\n");
66 return(1);
70 printf("Loaded services file OK.\n");
72 for (s=0;s<1000;s++)
73 if (VALID_SNUM(s))
74 if (strlen(lp_servicename(s)) > 8) {
75 printf("WARNING: You have some share names that are longer than 8 chars\n");
76 printf("These may give errors while browsing or may not be accessible\nto some older clients\n");
77 break;
80 if (argc < 4)
82 printf("Press enter to see a dump of your service definitions\n");
83 fflush(stdout);
84 getc(stdin);
85 lp_dump();
88 if (argc == 4)
90 struct from_host f;
91 f.name = argv[2];
92 f.addr = argv[3];
94 /* this is totally ugly, a real `quick' hack */
95 for (s=0;s<1000;s++)
96 if (VALID_SNUM(s))
98 if (allow_access(lp_hostsdeny(s),lp_hostsallow(s),&f))
100 printf("Allow connection from %s (%s) to %s\n",
101 f.name,f.addr,lp_servicename(s));
103 else
105 printf("Deny connection from %s (%s) to %s\n",
106 f.name,f.addr,lp_servicename(s));
110 return(0);