]> git.ipfire.org Git - thirdparty/sarg.git/blame - getconf.c
Automated replacement of the translated strings by a gettext macro
[thirdparty/sarg.git] / getconf.c
CommitLineData
25697a35 1/*
94ff9470 2 * SARG Squid Analysis Report Generator http://sarg.sourceforge.net
1164c474 3 * 1998, 2010
25697a35
GS
4 *
5 * SARG donations:
6 * please look at http://sarg.sourceforge.net/donations.php
1164c474
FM
7 * Support:
8 * http://sourceforge.net/projects/sarg/forums/forum/363374
25697a35
GS
9 * ---------------------------------------------------------------------
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
24 *
25 */
26
27#include "include/conf.h"
5f3cfd1d 28#include "include/defs.h"
25697a35 29
085c1e1f
FM
30#define SET_LIST(list) list,sizeof(list)/sizeof(list[0])
31
25697a35
GS
32extern numlist hours, weekdays;
33
085c1e1f
FM
34struct param_list
35{
36 //! The name of the value of the parameter.
37 const char *name;
38 //! The bit to set if the value is found.
39 unsigned long int value;
40 //! The value is invalid if any bit of this mask is set in the parameter.
41 unsigned long int exclude;
42};
43
44struct param_list report_type_values[]=
45{
46 {"users_sites",REPORT_TYPE_USERS_SITES,0},
47 {"topusers",REPORT_TYPE_TOPUSERS,0},
48 {"topsites",REPORT_TYPE_TOPSITES,0},
49 {"sites_users",REPORT_TYPE_SITES_USERS,0},
50 {"date_time",REPORT_TYPE_DATE_TIME,0},
51 {"denied",REPORT_TYPE_DENIED,0},
52 {"auth_failures",REPORT_TYPE_AUTH_FAILURES,0},
53 {"site_user_time_date",REPORT_TYPE_SITE_USER_TIME_DATE,0},
54 {"downloads",REPORT_TYPE_DOWNLOADS,0},
55};
56
57struct param_list data_field_values[]=
58{
59 {"user",DATA_FIELD_USER,0},
60 {"date",DATA_FIELD_DATE,0},
61 {"time",DATA_FIELD_TIME,0},
62 {"url",DATA_FIELD_URL,0},
63 {"connect",DATA_FIELD_CONNECT,0},
64 {"bytes",DATA_FIELD_BYTES,0},
65 {"in_cache",DATA_FIELD_IN_CACHE,0},
66 {"out_cache",DATA_FIELD_OUT_CACHE,0},
67 {"elapsed",DATA_FIELD_ELAPSED,0},
68};
69
70struct param_list topuserfields_values[]=
71{
72 {"NUM",TOPUSERFIELDS_NUM,0},
73 {"DATE_TIME",TOPUSERFIELDS_DATE_TIME,0},
74 {"USERID",TOPUSERFIELDS_USERID,0},
75 {"CONNECT",TOPUSERFIELDS_CONNECT,0},
76 {"BYTES",TOPUSERFIELDS_BYTES,0},
77 {"%BYTES",TOPUSERFIELDS_SETYB,0},
78 {"SETYB",TOPUSERFIELDS_SETYB,0},
79 {"IN-CACHE-OUT",TOPUSERFIELDS_IN_CACHE_OUT,0},
80 {"USED_TIME",TOPUSERFIELDS_USED_TIME,0},
81 {"MILISEC",TOPUSERFIELDS_MILISEC,0},
82 {"%TIME",TOPUSERFIELDS_PTIME,0},
83 {"TOTAL",TOPUSERFIELDS_TOTAL,0},
84 {"AVERAGE",TOPUSERFIELDS_AVERAGE,0},
85};
86
87struct param_list userreportfields_values[]=
88{
89 {"CONNECT",USERREPORTFIELDS_CONNECT,0},
90 {"BYTES",USERREPORTFIELDS_BYTES,0},
91 {"%BYTES",USERREPORTFIELDS_SETYB,0},
92 {"SETYB",USERREPORTFIELDS_SETYB,0},
93 {"IN-CACHE-OUT",USERREPORTFIELDS_IN_CACHE_OUT,0},
94 {"USED_TIME",USERREPORTFIELDS_USED_TIME,0},
95 {"MILISEC",USERREPORTFIELDS_MILISEC,0},
96 {"%TIME",USERREPORTFIELDS_PTIME,0},
97 {"TOTAL",USERREPORTFIELDS_TOTAL,0},
98 {"AVERAGE",USERREPORTFIELDS_AVERAGE,0},
99};
100
0349fa24
FM
101struct param_list index_values[]=
102{
103 {"yes",INDEX_YES,~INDEX_YES},
104 {"no",INDEX_NO,~INDEX_NO},
105 {"only",INDEX_ONLY,~INDEX_ONLY},
106};
107
108struct param_list index_tree_values[]=
109{
110 {"date",INDEX_TREE_DATE,~INDEX_TREE_DATE},
111 {"file",INDEX_TREE_FILE,~INDEX_TREE_FILE},
112};
113
f2ec8c75
FM
114struct param_list ntml_userformat_values[]=
115{
116 {"user",NTLMUSERFORMAT_USER,~NTLMUSERFORMAT_USER},
117 {"domainname+username",NTLMUSERFORMAT_DOMAINUSER,~NTLMUSERFORMAT_DOMAINUSER},
118};
119
120struct param_list recnouser_values[]=
121{
122 {"ip",RECORDWITHOUTUSER_IP,~RECORDWITHOUTUSER_IP},
123 {"ignore",RECORDWITHOUTUSER_IGNORE,~RECORDWITHOUTUSER_IGNORE},
124 {"everybody",RECORDWITHOUTUSER_EVERYBODY,~RECORDWITHOUTUSER_EVERYBODY},
125};
126
6e792ade 127static int is_param(const char *param,const char *buf)
0a4e18e1
FM
128{
129 int plen;
130
131 plen=strlen(param);
132 if (strncmp(buf,param,plen) != 0) return(0);
133 buf+=plen;
134 if ((unsigned char)*buf>' ') return(0);
135 return(1);
136}
137
4af2f8ff
FM
138static int getparam_string(const char *param,char *buf,char *value,int value_size)
139{
140 int plen;
141
142 plen=strlen(param);
143 if (strncmp(buf,param,plen) != 0) return(0);
144 buf+=plen;
145 if ((unsigned char)*buf>' ') return(0);
146 while (*buf && (unsigned char)*buf<=' ') buf++;
147
148 if (strlen(buf)>=value_size) {
149 printf("SARG: Maybe you have a broken record or garbage in %s parameter.\n",param);
150 exit(1);
151 }
152 strcpy(value,buf);
153 fixnone(value);
154 return(1);
155}
25697a35 156
4af2f8ff 157static int getparam_quoted(const char *param,char *buf,char *value,int value_size)
25697a35 158{
4af2f8ff
FM
159 int plen;
160 int i;
25697a35 161
4af2f8ff
FM
162 plen=strlen(param);
163 if (strncmp(buf,param,plen) != 0) return(0);
164 buf+=plen;
165 if ((unsigned char)*buf>' ') return(0);
166 while (*buf && (unsigned char)*buf<=' ') buf++;
25697a35 167
4af2f8ff 168 if (*buf != '\"') {
c36c7384 169 printf("SARG: %s %s.\n",_("Missing double quote after parameter"),param);
4af2f8ff
FM
170 exit(1);
171 }
172 buf++;
25697a35 173
4af2f8ff
FM
174 value_size--;
175 for (i=0 ; i<value_size && *buf && *buf!='\"' ; i++) {
176 value[i]=*buf++;
177 }
178 value[i]='\0';
25697a35 179
4af2f8ff
FM
180 if (*buf != '\"') {
181 printf("SARG: Missing double quote after parameter %s or value is more than %d bytes long.\n",param,value_size);
182 exit(1);
183 }
184 fixnone(value);
185 return(1);
186}
25697a35 187
4af2f8ff
FM
188static int getparam_2words(const char *param,char *buf,char *word1,int word1_size,char *word2,int word2_size)
189{
190 int plen;
191 int i;
192
193 plen=strlen(param);
194 if (strncmp(buf,param,plen) != 0) return(0);
195 buf+=plen;
196 if ((unsigned char)*buf>' ') return(0);
197 while (*buf && (unsigned char)*buf<=' ') buf++;
198
199 for (i=0 ; i<word1_size && *buf && (unsigned char)*buf>' ' ; i++)
200 word1[i]=*buf++;
201 if (i>=word1_size) {
202 printf("SARG: The first word of parameter %s is more than %d bytes long.\n",param,word1_size-1);
203 exit(1);
204 }
205 if (*buf!=' ') {
206 printf("SARG: Missing second word for parameter %s.\n",param);
207 exit(1);
208 }
209 word1[i]=0;
25697a35 210
4af2f8ff 211 while (*buf && (unsigned char)*buf<=' ') buf++;
25697a35 212
4af2f8ff
FM
213 for (i=0 ; i<word2_size && *buf && (unsigned char)*buf>' ' ; i++)
214 word2[i]=*buf++;
215 if (i>=word2_size) {
216 printf("SARG: The second word of parameter %s is more than %d bytes long.\n",param,word2_size-1);
217 exit(1);
218 }
219 word2[i]=0;
25697a35 220
4af2f8ff
FM
221 fixnone(word1);
222 fixnone(word2);
223 return(1);
224}
25697a35 225
4af2f8ff
FM
226static int getparam_int(const char *param,char *buf,int *value)
227{
228 int plen;
229 int next;
230
231 plen=strlen(param);
232 if (strncmp(buf,param,plen) != 0) return(0);
233 buf+=plen;
234 if ((unsigned char)*buf>' ') return(0);
235 while (*buf && (unsigned char)*buf<=' ') buf++;
236
237 next=0;
238 if (sscanf(buf,"%d%n",value,&next) != 1 || (unsigned char)buf[next] > ' ') {
239 printf("SARG: Maybe you have a broken record or garbage in %s parameter.\n",param);
240 exit(1);
241 }
242 return(1);
243}
25697a35 244
246c8489
FM
245static int getparam_bool(const char *param,char *buf,int *value)
246{
247 int plen;
246c8489 248 int i;
f6ff06fa 249 const char *bool_str="yes,true,on,1";
246c8489
FM
250
251 plen=strlen(param);
252 if (strncmp(buf,param,plen) != 0) return(0);
253 buf+=plen;
254 if ((unsigned char)*buf>' ') return(0);
255 while (*buf && (unsigned char)*buf<=' ') buf++;
256
257 *value=0;
f6ff06fa
FM
258 for ( ; *bool_str ; bool_str+=i) {
259 for (i=0 ; bool_str[i] && bool_str[i]!=',' ; i++);
260 if (strncasecmp(bool_str,buf,i)==0) {
246c8489
FM
261 *value=1;
262 break;
263 }
f6ff06fa 264 if (bool_str[i]==',') i++;
246c8489
FM
265 }
266 return(1);
267}
268
085c1e1f
FM
269static int getparam_list(const char *param,struct param_list *options,int noptions,char *buf,unsigned long int *value)
270{
271 int plen;
272 char *str;
273 int i;
274
275 plen=strlen(param);
276 if (strncmp(buf,param,plen) != 0) return(0);
277 buf+=plen;
278 if ((unsigned char)*buf>' ') return(0);
279 while (*buf && (unsigned char)*buf<=' ') buf++;
280
281 *value=0UL;
282 while (*buf) {
283 str=buf;
284 while (*str && (unsigned char)*str>' ' && *str!=';') str++;
285 if (*str) {
286 *str++='\0';
287 while (*str && ((unsigned char)*str<=' ' || *str==';')) str++;
288 }
289 for (i=0 ; i<noptions && strcasecmp(buf,options[i].name) ; i++);
290 if (i>=noptions) {
291 fprintf(stderr,"SARG: Unknown value %s for parameter %s\n",buf,param);
292 exit(1);
293 }
294 if ((*value & options[i].exclude)!=0) {
295 fprintf(stderr,"SARG: Value %s conflicts with other selected values of parameter %s\n",buf,param);
296 exit(1);
297 }
298 *value|=options[i].value;
299 buf=str;
300 }
301 return(1);
302}
303
4af2f8ff
FM
304static void parmtest(char *buf)
305{
306 char wbuf[50];
9c7c6346 307 struct getwordstruct gwarea;
25697a35 308
4af2f8ff 309 while (*buf && (unsigned char)*buf<=' ') buf++;
25697a35 310
4af2f8ff
FM
311 if(*buf == '#' || *buf == '\0')
312 return;
25697a35 313
4af2f8ff
FM
314 if(debugz)
315 printf("SARG: TAG: %s\n",buf);
25697a35 316
4af2f8ff 317 if (getparam_string("background_color",buf,BgColor,sizeof(BgColor))>0) return;
25697a35 318
4af2f8ff 319 if (getparam_string("text_color",buf,TxColor,sizeof(TxColor))>0) return;
25697a35 320
4af2f8ff 321 if (getparam_string("text_bgcolor",buf,TxBgColor,sizeof(TxBgColor))>0) return;
25697a35 322
4af2f8ff 323 if (getparam_string("title_color",buf,TiColor,sizeof(TiColor))>0) return;
25697a35 324
4af2f8ff 325 if (getparam_string("logo_image",buf,LogoImage,sizeof(LogoImage))>0) return;
25697a35 326
4af2f8ff 327 if (getparam_quoted("logo_text",buf,LogoText,sizeof(LogoText))>0) return;
25697a35 328
4af2f8ff 329 if (getparam_string("logo_text_color",buf,LogoTextColor,sizeof(LogoTextColor))>0) return;
25697a35 330
4af2f8ff 331 if (getparam_string("background_image",buf,BgImage,sizeof(BgImage))>0) return;
25697a35 332
e6414a9d 333 if (getparam_bool("show_sarg_info",buf,&ShowSargInfo)>0) return;
25697a35 334
e6414a9d 335 if (getparam_bool("show_sarg_logo",buf,&ShowSargLogo)>0) return;
25697a35 336
4af2f8ff 337 if (getparam_string("font_face",buf,FontFace,sizeof(FontFace))>0) return;
25697a35 338
4af2f8ff 339 if (getparam_string("header_color",buf,HeaderColor,sizeof(HeaderColor))>0) return;
25697a35 340
4af2f8ff 341 if (getparam_string("header_bgcolor",buf,HeaderBgColor,sizeof(HeaderBgColor))>0) return;
25697a35 342
4af2f8ff 343 if (getparam_string("font_size",buf,FontSize,sizeof(FontSize))>0) return;
25697a35 344
4af2f8ff 345 if (getparam_string("header_font_size",buf,HeaderFontSize,sizeof(HeaderFontSize))>0) return;
25697a35 346
4af2f8ff 347 if (getparam_string("title_font_size",buf,TitleFontSize,sizeof(TitleFontSize))>0) return;
25697a35 348
4af2f8ff 349 if (getparam_2words("image_size",buf,Width,sizeof(Width),Height,sizeof(Height))>0) return;
25697a35 350
4af2f8ff 351 if (getparam_quoted("title",buf,Title,sizeof(Title))>0) return;
25697a35 352
246c8489 353 if (getparam_bool("resolve_ip",buf,&Ip2Name)>0) return;
25697a35 354
246c8489 355 if (getparam_bool("user_ip",buf,&UserIp)>0) return;
4af2f8ff
FM
356
357 if (getparam_string("max_elapsed",buf,MaxElapsed,sizeof(MaxElapsed))>0) return;
25697a35 358
e6414a9d 359 if (is_param("date_format",buf)) {
9c7c6346
FM
360 getword_start(&gwarea,buf);
361 if (getword_multisep(wbuf,sizeof(wbuf),&gwarea,' ')<0) {
4af2f8ff
FM
362 printf("SARG: Maybe you have a broken record or garbage in date_format parameter.\n");
363 exit(1);
25697a35 364 }
9c7c6346 365 strncpy(DateFormat,gwarea.current,1);
4af2f8ff
FM
366 fixnone(DateFormat);
367 return;
368 }
25697a35 369
e6414a9d 370 if (is_param("hours",buf)) {
4af2f8ff
FM
371 if( getnumlist( buf, &hours, 24, 24 ) ) {
372 fprintf( stderr, "Error: Invalid syntax in hours tag!\n" );
373 exit( 1 );
25697a35 374 }
4af2f8ff 375 }
25697a35 376
e6414a9d 377 if (is_param("weekdays",buf)) {
4af2f8ff
FM
378 if( getnumlist( buf, &weekdays, 7, 7 ) ) {
379 fprintf( stderr, "Error: Invalid syntax in weekdays tag!\n" );
380 exit( 1 );
25697a35 381 }
4af2f8ff 382 }
25697a35 383
4af2f8ff 384 if (getparam_2words("topuser_sort_field",buf,TopuserSortField,sizeof(TopuserSortField),TopuserSortOrder,sizeof(TopuserSortOrder))>0) return;
25697a35 385
4af2f8ff 386 if (getparam_2words("user_sort_field",buf,UserSortField,sizeof(UserSortField),UserSortOrder,sizeof(UserSortOrder))>0) return;
25697a35 387
6e792ade 388 if (is_param("access_log",buf)>0) {
0a4e18e1
FM
389 if (AccessLogFromCmdLine==0) {
390 if (NAccessLog>=MAXLOGS) {
391 fprintf(stderr,"SARG: Too many log files.\n");
392 exit(1);
393 }
394 getparam_string("access_log",buf,AccessLog[NAccessLog],MAXLEN);
395 NAccessLog++;
396 }
397 return;
398 }
25697a35 399
4af2f8ff 400 if (getparam_string("useragent_log",buf,UserAgentLog,sizeof(UserAgentLog))>0) return;
25697a35 401
4af2f8ff 402 if (getparam_string("exclude_hosts",buf,ExcludeHosts,sizeof(ExcludeHosts))>0) return;
25697a35 403
4af2f8ff 404 if (getparam_string("exclude_codes",buf,ExcludeCodes,sizeof(ExcludeCodes))>0) return;
25697a35 405
4af2f8ff 406 if (getparam_string("exclude_users",buf,ExcludeUsers,sizeof(ExcludeUsers))>0) return;
25697a35 407
4af2f8ff 408 if (getparam_string("password",buf,PasswdFile,sizeof(PasswdFile))>0) return;
25697a35 409
4af2f8ff 410 if (getparam_string("temporary_dir",buf,TempDir,sizeof(TempDir))>0) return;
25697a35 411
085c1e1f 412 if (getparam_list("report_type",SET_LIST(report_type_values),buf,&ReportType)>0) return;
25697a35 413
4af2f8ff 414 if (getparam_string("output_dir",buf,OutputDir,sizeof(OutputDir))>0) return;
25697a35 415
4af2f8ff 416 if (getparam_string("output_email",buf,OutputEmail,sizeof(OutputEmail))>0) return;
25697a35 417
e6414a9d
FM
418 if (getparam_2words("per_user_limit",buf,PerUserLimitFile,sizeof(PerUserLimitFile),wbuf,sizeof(wbuf))>0) {
419 PerUserLimit=atoi(wbuf);
420 return;
421 }
25697a35 422
0511cf2d 423 if (getparam_int("lastlog",buf,&LastLog)>0) return;
25697a35 424
e6414a9d 425 if (getparam_bool("remove_temp_files",buf,&RemoveTempFiles)>0) return;
25697a35 426
4af2f8ff 427 if (getparam_string("replace_index",buf,ReplaceIndex,sizeof(ReplaceIndex))>0) return;
25697a35 428
0349fa24 429 if (getparam_list("index_tree",SET_LIST(index_tree_values),buf,&IndexTree)>0) return;
25697a35 430
0349fa24 431 if (getparam_list("index",SET_LIST(index_values),buf,&Index)>0) return;
25697a35 432
e6414a9d 433 if (getparam_bool("overwrite_report",buf,&OverwriteReport)>0) return;
25697a35 434
f2ec8c75 435 if (getparam_list("records_without_userid",SET_LIST(recnouser_values),buf,&RecordsWithoutUser)>0) return;
25697a35 436
e6414a9d 437 if (getparam_bool("use_comma",buf,&UseComma)>0) return;
25697a35 438
4af2f8ff 439 if (getparam_string("mail_utility",buf,MailUtility,sizeof(MailUtility))>0) return;
25697a35 440
c0ec9cc7 441 if (getparam_int("topsites_num",buf,&TopSitesNum)>0) return;
25697a35 442
fb7c5f27 443 if (getparam_int("topuser_num",buf,&TopUsersNum)>0) return;
25697a35 444
4af2f8ff 445 if (getparam_string("usertab",buf,UserTabFile,sizeof(UserTabFile))>0) return;
25697a35 446
4af2f8ff 447 if (getparam_string("index_sort_order",buf,IndexSortOrder,sizeof(IndexSortOrder))>0) return;
25697a35 448
4af2f8ff 449 if (getparam_2words("topsites_sort_order",buf,TopsitesSortField,sizeof(TopsitesSortField),TopsitesSortType,sizeof(TopsitesSortType))>0) return;
25697a35 450
246c8489 451 if (getparam_bool("long_url",buf,&LongUrl)>0) return;
25697a35 452
4af2f8ff 453 if (getparam_string("dansguardian_conf",buf,DansGuardianConf,sizeof(DansGuardianConf))>0) return;
25697a35 454
4af2f8ff 455 if (getparam_string("squidguard_conf",buf,SquidGuardConf,sizeof(SquidGuardConf))>0) return;
25697a35 456
4af2f8ff 457 if (getparam_string("date_time_by",buf,datetimeby,sizeof(datetimeby))>0) return;
25697a35 458
4af2f8ff
FM
459 if (getparam_string("charset",buf,CharSet,sizeof(CharSet))>0) {
460 ccharset(CharSet);
461 return;
462 }
25697a35 463
4af2f8ff 464 if (getparam_quoted("user_invalid_char",buf,UserInvalidChar,sizeof(UserInvalidChar))>0) return;
25697a35 465
4af2f8ff
FM
466 if (getparam_quoted("include_users",buf,IncludeUsers+1,sizeof(IncludeUsers)-2)>0) {
467 IncludeUsers[0]=':';
468 strcat(IncludeUsers,":");
469 return;
470 }
491b862f 471
4af2f8ff 472 if (getparam_quoted("exclude_string",buf,ExcludeString,sizeof(ExcludeString))>0) return;
25697a35 473
e6414a9d 474 if (getparam_bool("privacy",buf,&Privacy)>0) return;
25697a35 475
78015ea0 476 if (getparam_quoted("privacy_string",buf,PrivacyString,sizeof(PrivacyString))>0) return;
25697a35 477
4af2f8ff 478 if (getparam_string("privacy_string_color",buf,PrivacyStringColor,sizeof(PrivacyStringColor))>0) return;
25697a35 479
e6414a9d 480 if (getparam_bool("show_successful_message",buf,&SuccessfulMsg)>0) return;
25697a35 481
e6414a9d 482 if (getparam_bool("show_read_statistics",buf,&ShowReadStatistics)>0) return;
25697a35 483
085c1e1f 484 if (getparam_list("topuser_fields",SET_LIST(topuserfields_values),buf,&TopUserFields)>0) return;
25697a35 485
e6414a9d 486 if (getparam_bool("bytes_in_sites_users_report",buf,&BytesInSitesUsersReport)>0) return;
25697a35 487
085c1e1f 488 if (getparam_list("user_report_fields",SET_LIST(userreportfields_values),buf,&UserReportFields)>0) return;
25697a35 489
4af2f8ff 490 if (getparam_string("datafile",buf,DataFile,sizeof(DataFile))>0) return;
25697a35 491
4af2f8ff 492 if (getparam_quoted("datafile_delimiter",buf,DataFileDelimiter,sizeof(DataFileDelimiter))>0) return;
25697a35 493
085c1e1f 494 if (getparam_list("datafile_fields",SET_LIST(data_field_values),buf,&DataFileFields)>0) return;
25697a35 495
4af2f8ff 496 if (getparam_string("datafile_url",buf,DataFileUrl,sizeof(DataFileUrl))>0) return;
25697a35 497
4af2f8ff 498 if (getparam_string("parsed_output_log",buf,ParsedOutputLog,sizeof(ParsedOutputLog))>0) return;
25697a35 499
4af2f8ff 500 if (getparam_string("parsed_output_log_compress",buf,ParsedOutputLogCompress,sizeof(ParsedOutputLogCompress))>0) return;
25697a35 501
4af2f8ff 502 if (getparam_string("displayed_values",buf,DisplayedValues,sizeof(DisplayedValues))>0) return;
25697a35 503
4af2f8ff 504 if (getparam_int("authfail_report_limit",buf,&AuthfailReportLimit)>0) return;
25697a35 505
4af2f8ff 506 if (getparam_int("denied_report_limit",buf,&DeniedReportLimit)>0) return;
25697a35 507
4af2f8ff 508 if (getparam_int("siteusers_report_limit",buf,&SiteUsersReportLimit)>0) return;
25697a35 509
4af2f8ff 510 if (getparam_int("dansguardian_report_limit",buf,&DansGuardianReportLimit)>0) return;
25697a35 511
4af2f8ff 512 if (getparam_int("squidguard_report_limit",buf,&SquidGuardReportLimit)>0) return;
25697a35 513
4af2f8ff 514 if (getparam_int("user_report_limit",buf,&UserReportLimit)>0) return;
491b862f 515
4af2f8ff 516 if (getparam_int("download_report_limit",buf,&DownloadReportLimit)>0) return;
491b862f 517
4af2f8ff 518 if (getparam_string("www_document_root",buf,wwwDocumentRoot,sizeof(wwwDocumentRoot))>0) return;
25697a35 519
4af2f8ff 520 if (getparam_string("block_it",buf,BlockIt,sizeof(BlockIt))>0) return;
491b862f 521
4af2f8ff 522 if (getparam_string("external_css_file",buf,ExternalCSSFile,sizeof(ExternalCSSFile))>0) return;
491b862f 523
e6414a9d 524 if (getparam_bool("user_authentication",buf,&UserAuthentication)>0) return;
491b862f 525
4af2f8ff 526 if (getparam_string("AuthUserFile",buf,AuthUserFile,sizeof(AuthUserFile))>0) return;
491b862f 527
4af2f8ff 528 if (getparam_string("AuthName",buf,AuthName,sizeof(AuthName))>0) return;
491b862f 529
4af2f8ff
FM
530 if (getparam_string("AuthType",buf,AuthType,sizeof(AuthType))>0) return;
531
532 if (getparam_string("Require",buf,Require,sizeof(Require))>0) return;
533
6e792ade
FM
534 if (is_param("download_suffix",buf)) {
535 char warea[MAXLEN];
536
537 getparam_quoted("download_suffix",buf,warea,sizeof(warea));
538 set_download_suffix(warea);
e6414a9d 539 return;
6e792ade 540 }
d6e703cc 541
e6414a9d 542 if (getparam_bool("graphs",buf,&Graphs)>0) return;
4af2f8ff
FM
543
544 if (getparam_string("graph_days_bytes_bar_color",buf,GraphDaysBytesBarColor,sizeof(GraphDaysBytesBarColor))>0) return;
545
546 if (getparam_string("squidguard_log_format",buf,SquidGuardLogFormat,sizeof(SquidGuardLogFormat))>0) return;
547
e6414a9d 548 if (getparam_bool("squidguard_ignore_date",buf,&SquidguardIgnoreDate)>0) return;
4af2f8ff 549
e6414a9d 550 if (getparam_bool("dansguardian_ignore_date",buf,&DansguardianIgnoreDate)>0) return;
4af2f8ff
FM
551
552 if (getparam_string("ulimit",buf,Ulimit,sizeof(Ulimit))>0) return;
553
f2ec8c75 554 if (getparam_list("ntlm_user_format",SET_LIST(ntml_userformat_values),buf,&NtlmUserFormat)>0) return;
4af2f8ff
FM
555
556 if (getparam_string("realtime_types",buf,RealtimeTypes,sizeof(RealtimeTypes))>0) return;
557
558 if (getparam_string("realtime_unauthenticated_records",buf,RealtimeUnauthRec,sizeof(RealtimeUnauthRec))>0) return;
559
560 if (getparam_int("realtime_refresh_time",buf,&realtime_refresh)>0) return;
561
562 if (getparam_int("realtime_access_log_lines",buf,&realtime_access_log_lines)>0) return;
563
e3af0ae9
PO
564 if (getparam_string("LDAPHost",buf,LDAPHost,sizeof(LDAPHost))>0) return;
565
965c4a6f 566 if (getparam_int("LDAPPort",buf,&LDAPPort)>0) return;
e3af0ae9 567
965c4a6f 568 if (getparam_int("LDAPProtocolVersion",buf,&LDAPProtocolVersion)>0) return;
e3af0ae9
PO
569
570 if (getparam_string("LDAPBindDN",buf,LDAPBindDN,sizeof(LDAPBindDN))>0) return;
571
572 if (getparam_string("LDAPBindPW",buf,LDAPBindPW,sizeof(LDAPBindPW))>0) return;
573
574 if (getparam_string("LDAPBaseSearch",buf,LDAPBaseSearch,sizeof(LDAPBaseSearch))>0) return;
575
576 if (getparam_string("LDAPFilterSearch",buf,LDAPFilterSearch,sizeof(LDAPFilterSearch))>0) return;
577
578 if (getparam_string("LDAPTargetAttr",buf,LDAPTargetAttr,sizeof(LDAPTargetAttr))>0) return;
579
3becf85c
FM
580 if (getparam_string("graph_font",buf,GraphFont,sizeof(GraphFont))>0) return;
581
4af2f8ff
FM
582 if(strstr(buf,"squid24") != 0) {
583 squid24++;
584 return;
585 }
586
587 if(strstr(buf,"byte_cost") != 0) {
9c7c6346
FM
588 getword_start(&gwarea,buf);
589 if (getword_multisep(wbuf,sizeof(wbuf),&gwarea,' ')<0) {
4af2f8ff
FM
590 printf("SARG: Maybe you have a broken record or garbage in byte_cost parameter.\n");
591 exit(1);
592 }
9c7c6346
FM
593 cost=atol(gwarea.current);
594 if (getword_multisep(wbuf,sizeof(wbuf),&gwarea,' ')<0) {
4af2f8ff
FM
595 printf("SARG: Maybe you have a broken record or garbage in byte_cost parameter.\n");
596 exit(1);
491b862f 597 }
9c7c6346 598 nocost=my_atoll(gwarea.current);
4af2f8ff
FM
599 return;
600 }
601
c36c7384 602 printf("SARG: %s %s\n",_("Unknown option"),buf);
d6e703cc
FM
603}
604
32e71fa4 605void getconf(void)
d6e703cc
FM
606{
607
608 FILE *fp_in;
609 char buf[MAXLEN];
610
d2fe0c32
FM
611 if(debug)
612 debuga("Loading configuration from: %s",ConfigFile);
d6e703cc
FM
613
614 if ((fp_in = fopen(ConfigFile, "r")) == NULL) {
615 fprintf(stderr, "SARG: (getconf) Cannot open file: %s\n",ConfigFile);
616 exit(1);
617 }
618
4af2f8ff
FM
619 while (fgets(buf, sizeof(buf), fp_in) != NULL) {
620 fixendofline(buf);
d6e703cc
FM
621
622 if(debugm)
3103300b 623 printf("SYSCONFDIR %s\n",buf);
d6e703cc 624
d6e703cc
FM
625 parmtest(buf);
626
627 }
628
629 fclose(fp_in);
d6e703cc 630 return;
25697a35 631}