]> git.ipfire.org Git - thirdparty/sarg.git/blame - include/conf.h
Make sure the configure script is up to date when packaging the project
[thirdparty/sarg.git] / include / conf.h
CommitLineData
b3695c67 1#include "config.h"
25697a35 2#include "info.h"
e3af0ae9 3#include "btree_cache.h"
25697a35 4
b3695c67
FM
5#ifdef HAVE_WINDOWS_H
6#include <windows.h>
7#endif
8#ifdef HAVE_STDIO_H
25697a35
GS
9#include <stdio.h>
10#endif
b3695c67 11#ifdef HAVE_STDLIB_H
25697a35
GS
12#include <stdlib.h>
13#endif
b3695c67 14#ifdef HAVE_STRING_H
25697a35
GS
15#include <string.h>
16#endif
b3695c67 17#ifdef HAVE_STRINGS_H
25697a35
GS
18#include <strings.h>
19#endif
b3695c67 20#ifdef HAVE_SYS_TIME_H
25697a35
GS
21#include <sys/time.h>
22#endif
b3695c67 23#ifdef HAVE_TIME_H
25697a35
GS
24#include <time.h>
25#endif
b3695c67 26#ifdef HAVE_SYS_RESOURCE_H
25697a35
GS
27#include <sys/resource.h>
28#endif
b3695c67 29#ifdef HAVE_UNISTD_H
25697a35
GS
30#include <unistd.h>
31#endif
b3695c67 32#if defined(HAVE_SYS_DIRENT_H) && !defined(HAVE_DIRENT_H)
25697a35
GS
33#include <sys/dirent.h>
34#endif
b3695c67 35#ifdef HAVE_DIRENT_H
25697a35
GS
36#include <dirent.h>
37#endif
b3695c67 38#ifdef HAVE_SYS_SOCKET_H
25697a35
GS
39#include <sys/socket.h>
40#endif
b3695c67 41#ifdef HAVE_NETDB_H
25697a35
GS
42#include <netdb.h>
43#endif
b3695c67 44#ifdef HAVE_TYPES_H
25697a35
GS
45#include <types.h>
46#endif
b3695c67 47#ifdef HAVE_NETINET_IN_H
25697a35
GS
48#include <netinet/in.h>
49#endif
b3695c67 50#ifdef HAVE_ARPA_INET_H
25697a35
GS
51#include <arpa/inet.h>
52#endif
b3695c67 53#ifdef HAVE_SYS_STAT_H
25697a35
GS
54#include <sys/stat.h>
55#endif
b3695c67 56#ifdef HAVE_CTYPE_H
25697a35
GS
57#include <ctype.h>
58#endif
b3695c67 59#ifdef HAVE_ERRNO_H
25697a35
GS
60#include <errno.h>
61#endif
b3695c67 62#ifdef HAVE_SYS_WAIT_H
d96e3ba6
FM
63#include <sys/wait.h>
64#endif
b3695c67 65#ifdef HAVE_GD_H
2824ec9b 66#define HAVE_GD 1
25697a35 67#include <gd.h>
25697a35 68#endif
b3695c67 69#ifdef HAVE_GDFONTL_H
25697a35
GS
70#include <gdfontl.h>
71#endif
b3695c67 72#ifdef HAVE_GDFONTT_H
25697a35
GS
73#include <gdfontt.h>
74#endif
b3695c67 75#ifdef HAVE_GDFONTS_H
25697a35
GS
76#include <gdfonts.h>
77#endif
b3695c67 78#ifdef HAVE_GDFONTMB_H
25697a35
GS
79#include <gdfontmb.h>
80#endif
b3695c67 81#ifdef HAVE_GDFONTG_H
25697a35
GS
82#include <gdfontg.h>
83#endif
b3695c67 84#ifdef HAVE_STDARG_H
d2fe0c32
FM
85#include <stdarg.h>
86#endif
b3695c67 87#ifdef HAVE_INTTYPES_H
2357ef77
FM
88#include <inttypes.h>
89#endif
b3695c67 90#ifdef HAVE_LIMITS_H
4af2f8ff
FM
91#include <limits.h>
92#endif
b3695c67
FM
93#ifdef HAVE_WINSOCK_H
94#include <winsock.h>
95#endif
e3af0ae9
PO
96#ifdef HAVE_MATH_H
97#include <math.h>
98#endif
a1de61fe
FM
99#ifdef HAVE_LOCALE_H
100#include <locale.h>
101#endif
e6414a9d
FM
102#ifdef HAVE_EXECINFO_H
103#include <execinfo.h>
104#endif
d5d021c5
FM
105#ifdef HAVE_LIBGEN_H
106#include <libgen.h>
107#endif
06b39c87
FM
108#ifdef HAVE_STDBOOL_H
109#include <stdbool.h>
110#else
111typedef int bool;
112#define true 1
113#define false 0
114#endif
72a23a7a
FM
115#ifdef HAVE_FCNTL_H
116#include <fcntl.h>
117#endif
6068ae56
FM
118#ifdef HAVE_FNMATCH_H
119#include <fnmatch.h>
120#endif
25697a35 121
b3695c67 122#if defined(HAVE_FOPEN64)
25697a35 123#define _FILE_OFFSET_BITS 64
936c9905 124#define MY_FOPEN fopen64
25697a35
GS
125#else
126#define MY_FOPEN fopen
127#endif
128
b3695c67
FM
129#if !defined(HAVE_BZERO)
130#define bzero(mem,size) memset(mem,0,size)
131#endif
132
133#if defined(IBERTY_LIB) && !defined(HAVE_MKSTEMP)
134int mkstemps(char *template, int suffixlen);
135#define mkstemp(template) mkstemps(template,0)
136#endif
137
eca2cec9 138#if defined(ENABLE_NLS) && defined(HAVE_LIBINTL_H)
c0ec9cc7
FM
139#include <libintl.h>
140#define _(String) gettext(String)
141#ifdef gettext_noop
142#define N_(String) gettext_noop(String)
143#else
144#define N_(String) (String)
145#endif
146#else /* No NLS */
147#define _(String) (String)
148#define N_(String) (String)
06b39c87 149#define ngettext(String,Strings,num) (Strings)
c0ec9cc7
FM
150#define textdomain(String)
151#define bindtextdomain(Domain,Directory)
eca2cec9 152#endif //NLS
c0ec9cc7 153
b3695c67
FM
154#if defined(__MINGW32__)
155#define mkdir(p,m) _mkdir(p)
156
157#ifndef WIFEXITED
158 #define WIFEXITED(S) 1
159#endif
160
161#ifndef WEXITSTATUS
162 #define WEXITSTATUS(S) (S)
163#endif
164
165#endif /*__MINGW32__*/
25697a35 166
f0126186
FM
167#ifndef __GNUC__
168# define __attribute__(x)
169#endif
170
25697a35 171#define MAXLEN 20000
ac422f9b 172#define MAX_URL_LEN 40000
e5b2c6f0 173#define MAX_TRUNCATED_URL 512
f2ec8c75
FM
174#define MAX_USER_LEN 256
175#define MAX_USER_FNAME_LEN 128
2240dcea
FM
176#define MAX_IP_LEN 64
177#define MAX_DATETIME_LEN 32
1f482a8d
FM
178#define MAX_REDIRECTOR_LOGS 64
179#define MAX_REDIRECTOR_FILELEN 1024
21fd55af
FM
180/*!
181Arbitrary limit on the number of days that are accepted in the selected range of the log file.
182Sarg will complain that there are too many days in the files if this limit is overrun.
183*/
184#define MAX_DATETIME_DAYS 1000
25697a35 185
085c1e1f
FM
186#define REPORT_TYPE_USERS_SITES 0x0001UL
187#define REPORT_TYPE_SITE_USER_TIME_DATE 0x0002UL
188#define REPORT_TYPE_TOPUSERS 0x0004UL
189#define REPORT_TYPE_TOPSITES 0x0008UL
190#define REPORT_TYPE_SITES_USERS 0x0010UL
191#define REPORT_TYPE_DATE_TIME 0x0020UL
192#define REPORT_TYPE_DENIED 0x0040UL
193#define REPORT_TYPE_AUTH_FAILURES 0x0080UL
194#define REPORT_TYPE_DOWNLOADS 0x0100UL
195
196#define DATA_FIELD_USER 0x0001UL
197#define DATA_FIELD_DATE 0x0002UL
198#define DATA_FIELD_TIME 0x0004UL
199#define DATA_FIELD_URL 0x0008UL
200#define DATA_FIELD_CONNECT 0x0010UL
201#define DATA_FIELD_BYTES 0x0020UL
202#define DATA_FIELD_IN_CACHE 0x0040UL
203#define DATA_FIELD_OUT_CACHE 0x0080UL
204#define DATA_FIELD_ELAPSED 0x0100UL
205
206#define TOPUSERFIELDS_NUM 0x0001UL
207#define TOPUSERFIELDS_DATE_TIME 0x0002UL
208#define TOPUSERFIELDS_USERID 0x0004UL
209#define TOPUSERFIELDS_CONNECT 0x0008UL
210#define TOPUSERFIELDS_BYTES 0x0010UL
211#define TOPUSERFIELDS_SETYB 0x0020UL
212#define TOPUSERFIELDS_IN_CACHE_OUT 0x0040UL
213#define TOPUSERFIELDS_USED_TIME 0x0080UL
214#define TOPUSERFIELDS_MILISEC 0x0100UL
215#define TOPUSERFIELDS_PTIME 0x0200UL
216#define TOPUSERFIELDS_TOTAL 0x0400UL
217#define TOPUSERFIELDS_AVERAGE 0x0800UL
218
219#define USERREPORTFIELDS_CONNECT 0x0001UL
220#define USERREPORTFIELDS_BYTES 0x0002UL
221#define USERREPORTFIELDS_SETYB 0x0004UL
222#define USERREPORTFIELDS_IN_CACHE_OUT 0x0008UL
223#define USERREPORTFIELDS_USED_TIME 0x0010UL
224#define USERREPORTFIELDS_MILISEC 0x0020UL
225#define USERREPORTFIELDS_PTIME 0x0040UL
226#define USERREPORTFIELDS_TOTAL 0x0080UL
227#define USERREPORTFIELDS_AVERAGE 0x0100UL
228
0349fa24
FM
229#define INDEX_YES 0x0001UL
230#define INDEX_NO 0x0002UL
231#define INDEX_ONLY 0x0004UL
232
233#define INDEX_TREE_DATE 0x0001UL
234#define INDEX_TREE_FILE 0x0002UL
235
9aaa3361
FM
236#define INDEXFIELDS_DIRSIZE 0x0001UL
237
f2ec8c75
FM
238#define NTLMUSERFORMAT_USER 0x0001UL
239#define NTLMUSERFORMAT_DOMAINUSER 0x0002UL
240
241#define RECORDWITHOUTUSER_IP 0x0001UL
242#define RECORDWITHOUTUSER_IGNORE 0x0002UL
243#define RECORDWITHOUTUSER_EVERYBODY 0x0004UL
244
f84a35a3
FM
245#define DATAFILEURL_IP 0x0001UL
246#define DATAFILEURL_NAME 0x0002UL
247
e43854ef
FM
248#define DISPLAY_BYTES 0x0001UL
249#define DISPLAY_ABBREV 0x0002UL
250
43cc1649
FM
251#define DATETIME_ELAP 0x0001UL
252#define DATETIME_BYTE 0x0002UL
253
c02d38bb
FM
254#define REALTIME_UNAUTH_REC_SHOW 0x0001UL
255#define REALTIME_UNAUTH_REC_IGNORE 0x0002UL
71d78774 256
15d5372b
FM
257#define SORT_REVERSE 0x0001
258
259#define TOPUSER_SORT_REVERSE SORT_REVERSE
260#define TOPUSER_SORT_BYTES 0x0002UL
261#define TOPUSER_SORT_USER 0x0004UL
262#define TOPUSER_SORT_CONNECT 0x0008UL
263#define TOPUSER_SORT_TIME 0x0010UL
264
265#define TOPSITE_SORT_REVERSE SORT_REVERSE
266#define TOPSITE_SORT_BYTES 0x0002UL
267#define TOPSITE_SORT_CONNECT 0x0004UL
70cab1a4 268#define TOPSITE_SORT_TIME 0x0008UL
7d82ea1a 269#define TOPSITE_SORT_USER 0x0010UL
15d5372b
FM
270
271#define USER_SORT_REVERSE SORT_REVERSE
272#define USER_SORT_BYTES 0x0002UL
273#define USER_SORT_SITE 0x0004UL
274#define USER_SORT_CONNECT 0x0008UL
275#define USER_SORT_TIME 0x0010UL
276
2e96438d
FM
277//! Value to exclude all the javascripts from the html page.
278#define HTML_JS_NONE 0x0000
279//! Bit to include sorttable.js in the html plage.
280#define HTML_JS_SORTTABLE 0x0001
281
67a93701
FM
282//! The character prefixed in front of the host names that are aliased.
283#define ALIAS_PREFIX '*'
284
fa6552b0
FM
285struct periodstruct
286{
fd46f082 287 //! The first date of the period.
fa6552b0 288 struct tm start;
fd46f082 289 //! The last date of the period.
fa6552b0 290 struct tm end;
fd46f082 291 //! The textual representation of the date.
fa6552b0 292 char text[40];
fd46f082
FM
293 //! The HTML representation of the date.
294 char html[40];
fa6552b0
FM
295};
296
25697a35 297char outdir[MAXLEN];
d5d021c5 298char outdirname[MAXLEN];
fa6552b0 299struct periodstruct period;
d6e703cc
FM
300char code[MAXLEN];
301char code2[MAXLEN];
25697a35 302char tmp[MAXLEN];
25697a35 303char parse_out[MAXLEN];
25697a35 304char html[MAXLEN];
25697a35 305char ConfigFile[MAXLEN];
81a022d8 306char df;
0511cf2d 307int LastLog;
06b39c87 308bool RemoveTempFiles;
25697a35 309char ReplaceIndex[256];
0349fa24 310unsigned long int Index;
06b39c87 311bool OverwriteReport;
f2ec8c75 312unsigned long int RecordsWithoutUser;
06b39c87 313bool UseComma;
4af2f8ff 314char MailUtility[PATH_MAX];
c0ec9cc7 315int TopSitesNum;
fb7c5f27 316int TopUsersNum;
25697a35 317char ExcludeCodes[256];
15d5372b 318unsigned long int TopsitesSort;
085c1e1f 319unsigned long int ReportType;
25697a35
GS
320char UserTabFile[255];
321char warea[MAXLEN];
322char name[MAXLEN];
06b39c87
FM
323bool LongUrl;
324bool Ip2Name;
0a4e18e1 325int AccessLogFromCmdLine;
25697a35
GS
326char Title[MAXLEN];
327char BgColor[MAXLEN];
328char BgImage[MAXLEN];
329char TxColor[MAXLEN];
330char TxBgColor[MAXLEN];
331char TiColor[MAXLEN];
332char LogoImage[MAXLEN];
333char LogoText[MAXLEN];
334char LogoTextColor[MAXLEN];
335char Width[MAXLEN];
336char Height[MAXLEN];
337char FontFace[MAXLEN];
338char HeaderColor[MAXLEN];
339char HeaderBgColor[MAXLEN];
340char FontSize[MAXLEN];
341char PasswdFile[MAXLEN];
342char TempDir[MAXLEN];
343char OutputDir[MAXLEN];
344char OutputEmail[MAXLEN];
15d5372b
FM
345unsigned long int TopuserSort;
346unsigned long int UserSort;
25697a35
GS
347char UserAgentLog[255];
348char module[255];
349char ExcludeHosts[255];
350char ExcludeUsers[255];
81a022d8 351char DateFormat;
25697a35 352char PerUserLimitFile[255];
e6414a9d 353int PerUserLimit;
06b39c87 354bool UserIp;
25697a35 355char MaxElapsed[255];
43cc1649 356unsigned long int datetimeby;
25697a35
GS
357char CharSet[255];
358char UserInvalidChar[255];
06b39c87 359bool Graphs;
25697a35 360char GraphDaysBytesBarColor[255];
06b39c87 361bool Privacy;
25697a35
GS
362char PrivacyString[255];
363char PrivacyStringColor[30];
364char IncludeUsers[MAXLEN];
365char ExcludeString[MAXLEN];
06b39c87 366bool SuccessfulMsg;
085c1e1f
FM
367unsigned long int TopUserFields;
368unsigned long int UserReportFields;
25697a35
GS
369char DataFile[MAXLEN];
370char DataFileDelimiter[3];
085c1e1f 371unsigned long int DataFileFields;
f84a35a3 372unsigned long int DataFileUrl;
2f4787e6 373//! if \c true, show the number of lines read from the input log file during the reading of the file.
06b39c87 374bool ShowReadStatistics;
2f4787e6
FM
375/*!
376If \c true, the read statistics also includes the percent of the number of lines read.
377
378Beware that it requires two readings of the input log file. It is not possible if the
379input log file is stdin or a pipe.
380*/
381bool ShowReadPercent;
25697a35
GS
382char IndexSortOrder[5];
383char DansGuardianConf[MAXLEN];
64dfb824 384bool DansguardianFilterOutDate;
25697a35
GS
385char SquidGuardConf[MAXLEN];
386char SquidGuarddbHome[255];
1f482a8d
FM
387char RedirectorLogFormat[4096];
388int NRedirectorLogs;
389char RedirectorLogs[MAX_REDIRECTOR_LOGS][MAX_REDIRECTOR_FILELEN];
390int RedirectorLogFromCmdLine;
64dfb824 391bool RedirectorFilterOutDate;
06b39c87
FM
392bool ShowSargInfo;
393bool BytesInSitesUsersReport;
394bool ShowSargLogo;
25697a35 395char ParsedOutputLog[MAXLEN];
ff8d5836 396char ParsedOutputLogCompress[512];
e43854ef 397unsigned long int DisplayedValues;
933aca19 398char HeaderFontSize[5];
491b862f 399char TitleFontSize[5];
25697a35
GS
400char wwwDocumentRoot[MAXLEN];
401char ExternalCSSFile[MAXLEN];
402char BlockIt[255];
f2ec8c75 403unsigned long int NtlmUserFormat;
9aaa3361 404//! How to display the index of the reports.
0349fa24 405unsigned long int IndexTree;
9aaa3361
FM
406//! The columns to show in the index of the reports.
407unsigned long int IndexFields;
06b39c87 408bool UserAuthentication;
d5d021c5 409char AuthUserTemplateFile[1024];
829a53c2
FM
410//! \c True to use anonymous file and directory names in the report.
411bool AnonymousOutputFiles;
25697a35 412char val1[MAXLEN];
25697a35 413char val3[MAXLEN];
25697a35
GS
414char val5[MAXLEN];
415char val6[MAXLEN];
416char val7[MAXLEN];
417char val8[MAXLEN];
418char val9[MAXLEN];
419char val10[MAXLEN];
420char val11[MAXLEN];
25697a35 421char mask[MAXLEN];
25697a35
GS
422char site[MAXLEN];
423char us[50];
424char email[MAXLEN];
425char test[1];
25697a35
GS
426char user2[MAXLEN];
427char wentp[512];
428char addr[MAXLEN];
491b862f
GS
429char Ulimit[6];
430char RealtimeTypes[1024];
25697a35 431char cmd[255];
491b862f 432char ImageFile[255];
71d78774 433unsigned long int RealtimeUnauthRec;
e3af0ae9
PO
434char LDAPHost[255];
435char LDAPBindDN[512];
436char LDAPBindPW[255];
965c4a6f
FM
437int LDAPPort;
438int LDAPProtocolVersion;
e3af0ae9
PO
439char LDAPBaseSearch[255];
440char LDAPFilterSearch[512];
441char LDAPTargetAttr[64];
3becf85c 442char GraphFont[MAXLEN];
ea275279
FM
443//! The full path to sorttable.js if the table in the reports must be dynamicaly sorted.
444char SortTableJs[256];
22715352
FM
445//! The name of the file containing the host names to replace by an alias in the report.
446char HostAliasFile[512];
4d62cb0a
FM
447//! The number of consecutive errors allowed in an input log file before the process is interrupted.
448int NumLogSuccessiveErrors;
449/*!
450The total number of errors allowed in an input log file before the process is interrupted. A negative
451value means the process should never fails irrespective of the number of errors found in the input
452log files.
453*/
454int NumLogTotalErrors;
0459449f
FM
455//! Count the number of lines read from the input log files.
456unsigned long int lines_read;
457//! Count the number of records kept for the processing.
458unsigned long int records_kept;
459//! Count the number of users.
460unsigned long int nusers;
491b862f 461
25697a35 462int idate;
25697a35 463int dansguardian_count;
330b1c52 464int redirector_count;
c0ec9cc7 465int useragent_count;
25697a35 466int limit_flag;
25697a35
GS
467int z1, z2, z3;
468int ttopen;
25697a35
GS
469int sarglog;
470int isalog;
2357ef77 471int dfrom;
25697a35 472int duntil;
11284535
FM
473bool dataonly;
474bool indexonly;
475bool iprel;
25697a35
GS
476int langcode;
477int debug;
478int debugz;
479int debugm;
480int AuthfailReportLimit;
481int DeniedReportLimit;
94ff9470 482int DownloadReportLimit;
25697a35
GS
483int SiteUsersReportLimit;
484int DansGuardianReportLimit;
485int SquidGuardReportLimit;
486int UserReportLimit;
491b862f
GS
487int realtime_refresh;
488int realtime_access_log_lines;
491b862f 489int rc;
d6e703cc 490int ntopsites;
d6e703cc 491int nrepday;
d6e703cc 492int ntopuser;
2824ec9b 493bool squid24;
11767c6a
FM
494//! \c True to keep the temporary files for inspection.
495bool KeepTempLog;
25697a35 496
491b862f
GS
497long long int nocost;
498float cost;
25697a35
GS
499
500typedef struct
501{ int list[ 24 ];
502 int len;
503} numlist;