]> git.ipfire.org Git - thirdparty/sarg.git/blob - getconf.c
Fix typo and add CR at the end of debuga
[thirdparty/sarg.git] / getconf.c
1 /*
2 * SARG Squid Analysis Report Generator http://sarg.sourceforge.net
3 * 1998, 2010
4 *
5 * SARG donations:
6 * please look at http://sarg.sourceforge.net/donations.php
7 * Support:
8 * http://sourceforge.net/projects/sarg/forums/forum/363374
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"
28 #include "include/defs.h"
29
30 #define SET_LIST(list) list,sizeof(list)/sizeof(list[0])
31
32 extern numlist hours, weekdays;
33
34 struct 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
44 struct 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
57 struct 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
70 struct 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
87 struct 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
101 struct 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
108 struct param_list index_tree_values[]=
109 {
110 {"date",INDEX_TREE_DATE,~INDEX_TREE_DATE},
111 {"file",INDEX_TREE_FILE,~INDEX_TREE_FILE},
112 };
113
114 struct param_list ntml_userformat_values[]=
115 {
116 {"user",NTLMUSERFORMAT_USER,~NTLMUSERFORMAT_USER},
117 {"domainname+username",NTLMUSERFORMAT_DOMAINUSER,~NTLMUSERFORMAT_DOMAINUSER},
118 };
119
120 struct 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
127 static int is_param(const char *param,const char *buf)
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
138 static 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 debuga(_("The string value of parameter \"%s\" is too long\n"),param);
150 exit(1);
151 }
152 strcpy(value,buf);
153 fixnone(value);
154 return(1);
155 }
156
157 static int getparam_quoted(const char *param,char *buf,char *value,int value_size)
158 {
159 int plen;
160 int i;
161
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++;
167
168 if (*buf != '\"') {
169 debuga(_("Missing double quote after parameter \"%s\"\n"),param);
170 exit(1);
171 }
172 buf++;
173
174 value_size--;
175 for (i=0 ; i<value_size && *buf && *buf!='\"' ; i++) {
176 value[i]=*buf++;
177 }
178 value[i]='\0';
179
180 if (*buf != '\"') {
181 debuga(_("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 }
187
188 static 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 debuga(_("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 debuga(_("Missing second word for parameter \"%s\"\n"),param);
207 exit(1);
208 }
209 word1[i]=0;
210
211 while (*buf && (unsigned char)*buf<=' ') buf++;
212
213 for (i=0 ; i<word2_size && *buf && (unsigned char)*buf>' ' ; i++)
214 word2[i]=*buf++;
215 if (i>=word2_size) {
216 debuga(_("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;
220
221 fixnone(word1);
222 fixnone(word2);
223 return(1);
224 }
225
226 static 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 debuga(_("The integer value of parameter \"%s\" is invalid\n"),param);
240 exit(1);
241 }
242 return(1);
243 }
244
245 static int getparam_bool(const char *param,char *buf,int *value)
246 {
247 int plen;
248 int i;
249 const char *bool_str="yes,true,on,1";
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;
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) {
261 *value=1;
262 break;
263 }
264 if (bool_str[i]==',') i++;
265 }
266 return(1);
267 }
268
269 static 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 debuga(_("Unknown value \"%s\" for parameter \"%s\"\n"),buf,param);
292 exit(1);
293 }
294 if ((*value & options[i].exclude)!=0) {
295 debuga(_("Value \"%s\" conflicts with other selected values for parameter \"%s\"\n"),buf,param);
296 exit(1);
297 }
298 *value|=options[i].value;
299 buf=str;
300 }
301 return(1);
302 }
303
304 static void parmtest(char *buf)
305 {
306 char wbuf[50];
307 struct getwordstruct gwarea;
308
309 while (*buf && (unsigned char)*buf<=' ') buf++;
310
311 if(*buf == '#' || *buf == '\0')
312 return;
313
314 if(debugz)
315 printf(_("SARG: TAG: %s\n"),buf);
316
317 if (getparam_string("background_color",buf,BgColor,sizeof(BgColor))>0) return;
318
319 if (getparam_string("text_color",buf,TxColor,sizeof(TxColor))>0) return;
320
321 if (getparam_string("text_bgcolor",buf,TxBgColor,sizeof(TxBgColor))>0) return;
322
323 if (getparam_string("title_color",buf,TiColor,sizeof(TiColor))>0) return;
324
325 if (getparam_string("logo_image",buf,LogoImage,sizeof(LogoImage))>0) return;
326
327 if (getparam_quoted("logo_text",buf,LogoText,sizeof(LogoText))>0) return;
328
329 if (getparam_string("logo_text_color",buf,LogoTextColor,sizeof(LogoTextColor))>0) return;
330
331 if (getparam_string("background_image",buf,BgImage,sizeof(BgImage))>0) return;
332
333 if (getparam_bool("show_sarg_info",buf,&ShowSargInfo)>0) return;
334
335 if (getparam_bool("show_sarg_logo",buf,&ShowSargLogo)>0) return;
336
337 if (getparam_string("font_face",buf,FontFace,sizeof(FontFace))>0) return;
338
339 if (getparam_string("header_color",buf,HeaderColor,sizeof(HeaderColor))>0) return;
340
341 if (getparam_string("header_bgcolor",buf,HeaderBgColor,sizeof(HeaderBgColor))>0) return;
342
343 if (getparam_string("font_size",buf,FontSize,sizeof(FontSize))>0) return;
344
345 if (getparam_string("header_font_size",buf,HeaderFontSize,sizeof(HeaderFontSize))>0) return;
346
347 if (getparam_string("title_font_size",buf,TitleFontSize,sizeof(TitleFontSize))>0) return;
348
349 if (getparam_2words("image_size",buf,Width,sizeof(Width),Height,sizeof(Height))>0) return;
350
351 if (getparam_quoted("title",buf,Title,sizeof(Title))>0) return;
352
353 if (getparam_bool("resolve_ip",buf,&Ip2Name)>0) return;
354
355 if (getparam_bool("user_ip",buf,&UserIp)>0) return;
356
357 if (getparam_string("max_elapsed",buf,MaxElapsed,sizeof(MaxElapsed))>0) return;
358
359 if (is_param("date_format",buf)) {
360 getword_start(&gwarea,buf);
361 if (getword_multisep(wbuf,sizeof(wbuf),&gwarea,' ')<0) {
362 debuga(_("Maybe you have a broken record or garbage in \"date_format\" parameter\n"));
363 exit(1);
364 }
365 strncpy(DateFormat,gwarea.current,1);
366 fixnone(DateFormat);
367 return;
368 }
369
370 if (is_param("hours",buf)) {
371 if( getnumlist( buf, &hours, 24, 24 ) ) {
372 debuga(_("Error: Invalid syntax in hours tag!\n"));
373 exit( 1 );
374 }
375 }
376
377 if (is_param("weekdays",buf)) {
378 if( getnumlist( buf, &weekdays, 7, 7 ) ) {
379 debuga(_("Error: Invalid syntax in weekdays tag!\n"));
380 exit( 1 );
381 }
382 }
383
384 if (getparam_2words("topuser_sort_field",buf,TopuserSortField,sizeof(TopuserSortField),TopuserSortOrder,sizeof(TopuserSortOrder))>0) return;
385
386 if (getparam_2words("user_sort_field",buf,UserSortField,sizeof(UserSortField),UserSortOrder,sizeof(UserSortOrder))>0) return;
387
388 if (is_param("access_log",buf)>0) {
389 if (AccessLogFromCmdLine==0) {
390 if (NAccessLog>=MAXLOGS) {
391 debuga(_("Too many log files in configuration file\n"));
392 exit(1);
393 }
394 getparam_string("access_log",buf,AccessLog[NAccessLog],MAXLEN);
395 NAccessLog++;
396 }
397 return;
398 }
399
400 if (getparam_string("useragent_log",buf,UserAgentLog,sizeof(UserAgentLog))>0) return;
401
402 if (getparam_string("exclude_hosts",buf,ExcludeHosts,sizeof(ExcludeHosts))>0) return;
403
404 if (getparam_string("exclude_codes",buf,ExcludeCodes,sizeof(ExcludeCodes))>0) return;
405
406 if (getparam_string("exclude_users",buf,ExcludeUsers,sizeof(ExcludeUsers))>0) return;
407
408 if (getparam_string("password",buf,PasswdFile,sizeof(PasswdFile))>0) return;
409
410 if (getparam_string("temporary_dir",buf,TempDir,sizeof(TempDir))>0) return;
411
412 if (getparam_list("report_type",SET_LIST(report_type_values),buf,&ReportType)>0) return;
413
414 if (getparam_string("output_dir",buf,OutputDir,sizeof(OutputDir))>0) return;
415
416 if (getparam_string("output_email",buf,OutputEmail,sizeof(OutputEmail))>0) return;
417
418 if (getparam_2words("per_user_limit",buf,PerUserLimitFile,sizeof(PerUserLimitFile),wbuf,sizeof(wbuf))>0) {
419 PerUserLimit=atoi(wbuf);
420 return;
421 }
422
423 if (getparam_int("lastlog",buf,&LastLog)>0) return;
424
425 if (getparam_bool("remove_temp_files",buf,&RemoveTempFiles)>0) return;
426
427 if (getparam_string("replace_index",buf,ReplaceIndex,sizeof(ReplaceIndex))>0) return;
428
429 if (getparam_list("index_tree",SET_LIST(index_tree_values),buf,&IndexTree)>0) return;
430
431 if (getparam_list("index",SET_LIST(index_values),buf,&Index)>0) return;
432
433 if (getparam_bool("overwrite_report",buf,&OverwriteReport)>0) return;
434
435 if (getparam_list("records_without_userid",SET_LIST(recnouser_values),buf,&RecordsWithoutUser)>0) return;
436
437 if (getparam_bool("use_comma",buf,&UseComma)>0) return;
438
439 if (getparam_string("mail_utility",buf,MailUtility,sizeof(MailUtility))>0) return;
440
441 if (getparam_int("topsites_num",buf,&TopSitesNum)>0) return;
442
443 if (getparam_int("topuser_num",buf,&TopUsersNum)>0) return;
444
445 if (getparam_string("usertab",buf,UserTabFile,sizeof(UserTabFile))>0) return;
446
447 if (getparam_string("index_sort_order",buf,IndexSortOrder,sizeof(IndexSortOrder))>0) return;
448
449 if (getparam_2words("topsites_sort_order",buf,TopsitesSortField,sizeof(TopsitesSortField),TopsitesSortType,sizeof(TopsitesSortType))>0) return;
450
451 if (getparam_bool("long_url",buf,&LongUrl)>0) return;
452
453 if (getparam_string("dansguardian_conf",buf,DansGuardianConf,sizeof(DansGuardianConf))>0) return;
454
455 if (getparam_string("squidguard_conf",buf,SquidGuardConf,sizeof(SquidGuardConf))>0) return;
456
457 if (getparam_string("date_time_by",buf,datetimeby,sizeof(datetimeby))>0) return;
458
459 if (getparam_string("charset",buf,CharSet,sizeof(CharSet))>0) {
460 ccharset(CharSet);
461 return;
462 }
463
464 if (getparam_quoted("user_invalid_char",buf,UserInvalidChar,sizeof(UserInvalidChar))>0) return;
465
466 if (getparam_quoted("include_users",buf,IncludeUsers+1,sizeof(IncludeUsers)-2)>0) {
467 IncludeUsers[0]=':';
468 strcat(IncludeUsers,":");
469 return;
470 }
471
472 if (getparam_quoted("exclude_string",buf,ExcludeString,sizeof(ExcludeString))>0) return;
473
474 if (getparam_bool("privacy",buf,&Privacy)>0) return;
475
476 if (getparam_quoted("privacy_string",buf,PrivacyString,sizeof(PrivacyString))>0) return;
477
478 if (getparam_string("privacy_string_color",buf,PrivacyStringColor,sizeof(PrivacyStringColor))>0) return;
479
480 if (getparam_bool("show_successful_message",buf,&SuccessfulMsg)>0) return;
481
482 if (getparam_bool("show_read_statistics",buf,&ShowReadStatistics)>0) return;
483
484 if (getparam_list("topuser_fields",SET_LIST(topuserfields_values),buf,&TopUserFields)>0) return;
485
486 if (getparam_bool("bytes_in_sites_users_report",buf,&BytesInSitesUsersReport)>0) return;
487
488 if (getparam_list("user_report_fields",SET_LIST(userreportfields_values),buf,&UserReportFields)>0) return;
489
490 if (getparam_string("datafile",buf,DataFile,sizeof(DataFile))>0) return;
491
492 if (getparam_quoted("datafile_delimiter",buf,DataFileDelimiter,sizeof(DataFileDelimiter))>0) return;
493
494 if (getparam_list("datafile_fields",SET_LIST(data_field_values),buf,&DataFileFields)>0) return;
495
496 if (getparam_string("datafile_url",buf,DataFileUrl,sizeof(DataFileUrl))>0) return;
497
498 if (getparam_string("parsed_output_log",buf,ParsedOutputLog,sizeof(ParsedOutputLog))>0) return;
499
500 if (getparam_string("parsed_output_log_compress",buf,ParsedOutputLogCompress,sizeof(ParsedOutputLogCompress))>0) return;
501
502 if (getparam_string("displayed_values",buf,DisplayedValues,sizeof(DisplayedValues))>0) return;
503
504 if (getparam_int("authfail_report_limit",buf,&AuthfailReportLimit)>0) return;
505
506 if (getparam_int("denied_report_limit",buf,&DeniedReportLimit)>0) return;
507
508 if (getparam_int("siteusers_report_limit",buf,&SiteUsersReportLimit)>0) return;
509
510 if (getparam_int("dansguardian_report_limit",buf,&DansGuardianReportLimit)>0) return;
511
512 if (getparam_int("squidguard_report_limit",buf,&SquidGuardReportLimit)>0) return;
513
514 if (getparam_int("user_report_limit",buf,&UserReportLimit)>0) return;
515
516 if (getparam_int("download_report_limit",buf,&DownloadReportLimit)>0) return;
517
518 if (getparam_string("www_document_root",buf,wwwDocumentRoot,sizeof(wwwDocumentRoot))>0) return;
519
520 if (getparam_string("block_it",buf,BlockIt,sizeof(BlockIt))>0) return;
521
522 if (getparam_string("external_css_file",buf,ExternalCSSFile,sizeof(ExternalCSSFile))>0) return;
523
524 if (getparam_bool("user_authentication",buf,&UserAuthentication)>0) return;
525
526 if (getparam_string("AuthUserFile",buf,AuthUserFile,sizeof(AuthUserFile))>0) return;
527
528 if (getparam_string("AuthName",buf,AuthName,sizeof(AuthName))>0) return;
529
530 if (getparam_string("AuthType",buf,AuthType,sizeof(AuthType))>0) return;
531
532 if (getparam_string("Require",buf,Require,sizeof(Require))>0) return;
533
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);
539 return;
540 }
541
542 if (getparam_bool("graphs",buf,&Graphs)>0) return;
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
548 if (getparam_bool("squidguard_ignore_date",buf,&SquidguardIgnoreDate)>0) return;
549
550 if (getparam_bool("dansguardian_ignore_date",buf,&DansguardianIgnoreDate)>0) return;
551
552 if (getparam_string("ulimit",buf,Ulimit,sizeof(Ulimit))>0) return;
553
554 if (getparam_list("ntlm_user_format",SET_LIST(ntml_userformat_values),buf,&NtlmUserFormat)>0) return;
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
564 if (getparam_string("LDAPHost",buf,LDAPHost,sizeof(LDAPHost))>0) return;
565
566 if (getparam_int("LDAPPort",buf,&LDAPPort)>0) return;
567
568 if (getparam_int("LDAPProtocolVersion",buf,&LDAPProtocolVersion)>0) return;
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
580 if (getparam_string("graph_font",buf,GraphFont,sizeof(GraphFont))>0) return;
581
582 if(strstr(buf,"squid24") != 0) {
583 squid24++;
584 return;
585 }
586
587 if(strstr(buf,"byte_cost") != 0) {
588 getword_start(&gwarea,buf);
589 if (getword_multisep(wbuf,sizeof(wbuf),&gwarea,' ')<0) {
590 debuga(_("The \"byte_cost\" parameter of the configuration file is invalid\n"));
591 exit(1);
592 }
593 cost=atol(gwarea.current);
594 if (getword_multisep(wbuf,sizeof(wbuf),&gwarea,' ')<0) {
595 debuga(_("The \"byte_cost\" parameter of the configuration file is invalid\n"));
596 exit(1);
597 }
598 nocost=my_atoll(gwarea.current);
599 return;
600 }
601
602 printf(_("SARG: Unknown option %s\n"),buf);
603 }
604
605 void getconf(void)
606 {
607
608 FILE *fp_in;
609 char buf[MAXLEN];
610
611 if(debug)
612 debuga(_("Loading configuration from: %s\n"),ConfigFile);
613
614 if ((fp_in = fopen(ConfigFile, "r")) == NULL) {
615 debuga(_("(getconf) Cannot open file: %s\n"),ConfigFile);
616 exit(1);
617 }
618
619 while (fgets(buf, sizeof(buf), fp_in) != NULL) {
620 fixendofline(buf);
621
622 if(debugm)
623 printf("SYSCONFDIR %s\n",buf);
624
625 parmtest(buf);
626
627 }
628
629 fclose(fp_in);
630 return;
631 }