]> git.ipfire.org Git - thirdparty/sarg.git/blame - include/conf.h
Display a column with the user's IP address in the top user report
[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
eb7ab620 138#include "gettext.h"
eca2cec9 139#if defined(ENABLE_NLS) && defined(HAVE_LIBINTL_H)
c0ec9cc7
FM
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)
eca2cec9 149#endif //NLS
c0ec9cc7 150
b3695c67
FM
151#if defined(__MINGW32__)
152#define mkdir(p,m) _mkdir(p)
153
154#ifndef WIFEXITED
155 #define WIFEXITED(S) 1
156#endif
157
158#ifndef WEXITSTATUS
159 #define WEXITSTATUS(S) (S)
160#endif
161
162#endif /*__MINGW32__*/
25697a35 163
f0126186
FM
164#ifndef __GNUC__
165# define __attribute__(x)
166#endif
167
25697a35 168#define MAXLEN 20000
ac422f9b 169#define MAX_URL_LEN 40000
f72b484a 170#define MAX_TRUNCATED_URL 250
f2ec8c75
FM
171#define MAX_USER_LEN 256
172#define MAX_USER_FNAME_LEN 128
2240dcea
FM
173#define MAX_IP_LEN 64
174#define MAX_DATETIME_LEN 32
1f482a8d
FM
175#define MAX_REDIRECTOR_LOGS 64
176#define MAX_REDIRECTOR_FILELEN 1024
21fd55af
FM
177/*!
178Arbitrary limit on the number of days that are accepted in the selected range of the log file.
179Sarg will complain that there are too many days in the files if this limit is overrun.
180*/
181#define MAX_DATETIME_DAYS 1000
25697a35 182
085c1e1f
FM
183#define REPORT_TYPE_USERS_SITES 0x0001UL
184#define REPORT_TYPE_SITE_USER_TIME_DATE 0x0002UL
185#define REPORT_TYPE_TOPUSERS 0x0004UL
186#define REPORT_TYPE_TOPSITES 0x0008UL
187#define REPORT_TYPE_SITES_USERS 0x0010UL
188#define REPORT_TYPE_DATE_TIME 0x0020UL
189#define REPORT_TYPE_DENIED 0x0040UL
190#define REPORT_TYPE_AUTH_FAILURES 0x0080UL
191#define REPORT_TYPE_DOWNLOADS 0x0100UL
192
193#define DATA_FIELD_USER 0x0001UL
194#define DATA_FIELD_DATE 0x0002UL
195#define DATA_FIELD_TIME 0x0004UL
196#define DATA_FIELD_URL 0x0008UL
197#define DATA_FIELD_CONNECT 0x0010UL
198#define DATA_FIELD_BYTES 0x0020UL
199#define DATA_FIELD_IN_CACHE 0x0040UL
200#define DATA_FIELD_OUT_CACHE 0x0080UL
201#define DATA_FIELD_ELAPSED 0x0100UL
202
203#define TOPUSERFIELDS_NUM 0x0001UL
204#define TOPUSERFIELDS_DATE_TIME 0x0002UL
205#define TOPUSERFIELDS_USERID 0x0004UL
206#define TOPUSERFIELDS_CONNECT 0x0008UL
207#define TOPUSERFIELDS_BYTES 0x0010UL
208#define TOPUSERFIELDS_SETYB 0x0020UL
209#define TOPUSERFIELDS_IN_CACHE_OUT 0x0040UL
210#define TOPUSERFIELDS_USED_TIME 0x0080UL
211#define TOPUSERFIELDS_MILISEC 0x0100UL
212#define TOPUSERFIELDS_PTIME 0x0200UL
213#define TOPUSERFIELDS_TOTAL 0x0400UL
214#define TOPUSERFIELDS_AVERAGE 0x0800UL
8e134f1a 215#define TOPUSERFIELDS_USERIP 0x1000UL
085c1e1f
FM
216
217#define USERREPORTFIELDS_CONNECT 0x0001UL
218#define USERREPORTFIELDS_BYTES 0x0002UL
219#define USERREPORTFIELDS_SETYB 0x0004UL
220#define USERREPORTFIELDS_IN_CACHE_OUT 0x0008UL
221#define USERREPORTFIELDS_USED_TIME 0x0010UL
222#define USERREPORTFIELDS_MILISEC 0x0020UL
223#define USERREPORTFIELDS_PTIME 0x0040UL
224#define USERREPORTFIELDS_TOTAL 0x0080UL
225#define USERREPORTFIELDS_AVERAGE 0x0100UL
226
0349fa24
FM
227#define INDEX_YES 0x0001UL
228#define INDEX_NO 0x0002UL
229#define INDEX_ONLY 0x0004UL
230
231#define INDEX_TREE_DATE 0x0001UL
232#define INDEX_TREE_FILE 0x0002UL
233
9aaa3361
FM
234#define INDEXFIELDS_DIRSIZE 0x0001UL
235
f2ec8c75
FM
236#define NTLMUSERFORMAT_USER 0x0001UL
237#define NTLMUSERFORMAT_DOMAINUSER 0x0002UL
238
239#define RECORDWITHOUTUSER_IP 0x0001UL
240#define RECORDWITHOUTUSER_IGNORE 0x0002UL
241#define RECORDWITHOUTUSER_EVERYBODY 0x0004UL
242
f84a35a3
FM
243#define DATAFILEURL_IP 0x0001UL
244#define DATAFILEURL_NAME 0x0002UL
245
e43854ef
FM
246#define DISPLAY_BYTES 0x0001UL
247#define DISPLAY_ABBREV 0x0002UL
248
43cc1649
FM
249#define DATETIME_ELAP 0x0001UL
250#define DATETIME_BYTE 0x0002UL
251
c02d38bb
FM
252#define REALTIME_UNAUTH_REC_SHOW 0x0001UL
253#define REALTIME_UNAUTH_REC_IGNORE 0x0002UL
71d78774 254
15d5372b
FM
255#define SORT_REVERSE 0x0001
256
257#define TOPUSER_SORT_REVERSE SORT_REVERSE
258#define TOPUSER_SORT_BYTES 0x0002UL
259#define TOPUSER_SORT_USER 0x0004UL
260#define TOPUSER_SORT_CONNECT 0x0008UL
261#define TOPUSER_SORT_TIME 0x0010UL
262
263#define TOPSITE_SORT_REVERSE SORT_REVERSE
264#define TOPSITE_SORT_BYTES 0x0002UL
265#define TOPSITE_SORT_CONNECT 0x0004UL
70cab1a4 266#define TOPSITE_SORT_TIME 0x0008UL
7d82ea1a 267#define TOPSITE_SORT_USER 0x0010UL
15d5372b
FM
268
269#define USER_SORT_REVERSE SORT_REVERSE
270#define USER_SORT_BYTES 0x0002UL
271#define USER_SORT_SITE 0x0004UL
272#define USER_SORT_CONNECT 0x0008UL
273#define USER_SORT_TIME 0x0010UL
274
2e96438d
FM
275//! Value to exclude all the javascripts from the html page.
276#define HTML_JS_NONE 0x0000
277//! Bit to include sorttable.js in the html plage.
278#define HTML_JS_SORTTABLE 0x0001
279
67a93701
FM
280//! The character prefixed in front of the host names that are aliased.
281#define ALIAS_PREFIX '*'
282
2e29ae23
FM
283//! Maximum number of limit files that can be stored.
284#define MAX_USER_LIMITS 16
285
56b97279
FM
286//! Name of the html file containing the index of a report file.
287#define INDEX_HTML_FILE "index.html"
288
fa6552b0
FM
289struct periodstruct
290{
fd46f082 291 //! The first date of the period.
fa6552b0 292 struct tm start;
fd46f082 293 //! The last date of the period.
fa6552b0 294 struct tm end;
fd46f082 295 //! The textual representation of the date.
fa6552b0 296 char text[40];
fd46f082
FM
297 //! The HTML representation of the date.
298 char html[40];
fa6552b0
FM
299};
300
25697a35 301char outdir[MAXLEN];
d5d021c5 302char outdirname[MAXLEN];
fa6552b0 303struct periodstruct period;
d6e703cc
FM
304char code[MAXLEN];
305char code2[MAXLEN];
25697a35 306char tmp[MAXLEN];
25697a35 307char parse_out[MAXLEN];
25697a35 308char html[MAXLEN];
25697a35 309char ConfigFile[MAXLEN];
81a022d8 310char df;
0511cf2d 311int LastLog;
06b39c87 312bool RemoveTempFiles;
25697a35 313char ReplaceIndex[256];
0349fa24 314unsigned long int Index;
06b39c87 315bool OverwriteReport;
f2ec8c75 316unsigned long int RecordsWithoutUser;
06b39c87 317bool UseComma;
4af2f8ff 318char MailUtility[PATH_MAX];
c0ec9cc7 319int TopSitesNum;
fb7c5f27 320int TopUsersNum;
25697a35 321char ExcludeCodes[256];
15d5372b 322unsigned long int TopsitesSort;
085c1e1f 323unsigned long int ReportType;
25697a35
GS
324char UserTabFile[255];
325char warea[MAXLEN];
326char name[MAXLEN];
06b39c87
FM
327bool LongUrl;
328bool Ip2Name;
0a4e18e1 329int AccessLogFromCmdLine;
25697a35
GS
330char Title[MAXLEN];
331char BgColor[MAXLEN];
332char BgImage[MAXLEN];
333char TxColor[MAXLEN];
334char TxBgColor[MAXLEN];
335char TiColor[MAXLEN];
336char LogoImage[MAXLEN];
337char LogoText[MAXLEN];
338char LogoTextColor[MAXLEN];
339char Width[MAXLEN];
340char Height[MAXLEN];
341char FontFace[MAXLEN];
342char HeaderColor[MAXLEN];
343char HeaderBgColor[MAXLEN];
344char FontSize[MAXLEN];
345char PasswdFile[MAXLEN];
346char TempDir[MAXLEN];
347char OutputDir[MAXLEN];
348char OutputEmail[MAXLEN];
15d5372b
FM
349unsigned long int TopuserSort;
350unsigned long int UserSort;
25697a35
GS
351char UserAgentLog[255];
352char module[255];
353char ExcludeHosts[255];
354char ExcludeUsers[255];
81a022d8 355char DateFormat;
06b39c87 356bool UserIp;
25697a35 357char MaxElapsed[255];
43cc1649 358unsigned long int datetimeby;
25697a35
GS
359char CharSet[255];
360char UserInvalidChar[255];
06b39c87 361bool Graphs;
25697a35 362char GraphDaysBytesBarColor[255];
06b39c87 363bool Privacy;
25697a35
GS
364char PrivacyString[255];
365char PrivacyStringColor[30];
366char IncludeUsers[MAXLEN];
367char ExcludeString[MAXLEN];
06b39c87 368bool SuccessfulMsg;
085c1e1f
FM
369unsigned long int TopUserFields;
370unsigned long int UserReportFields;
25697a35
GS
371char DataFile[MAXLEN];
372char DataFileDelimiter[3];
085c1e1f 373unsigned long int DataFileFields;
f84a35a3 374unsigned long int DataFileUrl;
2f4787e6 375//! if \c true, show the number of lines read from the input log file during the reading of the file.
06b39c87 376bool ShowReadStatistics;
2f4787e6
FM
377/*!
378If \c true, the read statistics also includes the percent of the number of lines read.
379
380Beware that it requires two readings of the input log file. It is not possible if the
381input log file is stdin or a pipe.
382*/
383bool ShowReadPercent;
25697a35
GS
384char IndexSortOrder[5];
385char DansGuardianConf[MAXLEN];
64dfb824 386bool DansguardianFilterOutDate;
25697a35
GS
387char SquidGuardConf[MAXLEN];
388char SquidGuarddbHome[255];
1f482a8d
FM
389char RedirectorLogFormat[4096];
390int NRedirectorLogs;
391char RedirectorLogs[MAX_REDIRECTOR_LOGS][MAX_REDIRECTOR_FILELEN];
392int RedirectorLogFromCmdLine;
64dfb824 393bool RedirectorFilterOutDate;
06b39c87
FM
394bool ShowSargInfo;
395bool BytesInSitesUsersReport;
396bool ShowSargLogo;
25697a35 397char ParsedOutputLog[MAXLEN];
ff8d5836 398char ParsedOutputLogCompress[512];
e43854ef 399unsigned long int DisplayedValues;
933aca19 400char HeaderFontSize[5];
491b862f 401char TitleFontSize[5];
25697a35
GS
402char wwwDocumentRoot[MAXLEN];
403char ExternalCSSFile[MAXLEN];
404char BlockIt[255];
f2ec8c75 405unsigned long int NtlmUserFormat;
9aaa3361 406//! How to display the index of the reports.
0349fa24 407unsigned long int IndexTree;
9aaa3361
FM
408//! The columns to show in the index of the reports.
409unsigned long int IndexFields;
06b39c87 410bool UserAuthentication;
d5d021c5 411char AuthUserTemplateFile[1024];
829a53c2
FM
412//! \c True to use anonymous file and directory names in the report.
413bool AnonymousOutputFiles;
25697a35 414char val1[MAXLEN];
25697a35 415char val3[MAXLEN];
25697a35
GS
416char val5[MAXLEN];
417char val6[MAXLEN];
418char val7[MAXLEN];
419char val8[MAXLEN];
420char val9[MAXLEN];
421char val10[MAXLEN];
422char val11[MAXLEN];
25697a35 423char mask[MAXLEN];
25697a35
GS
424char site[MAXLEN];
425char us[50];
426char email[MAXLEN];
427char test[1];
25697a35
GS
428char user2[MAXLEN];
429char wentp[512];
430char addr[MAXLEN];
491b862f
GS
431char Ulimit[6];
432char RealtimeTypes[1024];
25697a35 433char cmd[255];
491b862f 434char ImageFile[255];
71d78774 435unsigned long int RealtimeUnauthRec;
e3af0ae9
PO
436char LDAPHost[255];
437char LDAPBindDN[512];
438char LDAPBindPW[255];
965c4a6f
FM
439int LDAPPort;
440int LDAPProtocolVersion;
e3af0ae9
PO
441char LDAPBaseSearch[255];
442char LDAPFilterSearch[512];
443char LDAPTargetAttr[64];
fd75cd90
FM
444//! Character set to convert the LDAP returned string to.
445char LDAPNativeCharset[20];
3becf85c 446char GraphFont[MAXLEN];
ea275279
FM
447//! The full path to sorttable.js if the table in the reports must be dynamicaly sorted.
448char SortTableJs[256];
22715352
FM
449//! The name of the file containing the host names to replace by an alias in the report.
450char HostAliasFile[512];
c4f0ea8f
FM
451//! The name of the file containing the user names to replace by an alias in the report.
452char UserAliasFile[512];
4d62cb0a
FM
453//! The number of consecutive errors allowed in an input log file before the process is interrupted.
454int NumLogSuccessiveErrors;
455/*!
456The total number of errors allowed in an input log file before the process is interrupted. A negative
457value means the process should never fails irrespective of the number of errors found in the input
458log files.
459*/
460int NumLogTotalErrors;
0459449f
FM
461//! Count the number of lines read from the input log files.
462unsigned long int lines_read;
463//! Count the number of records kept for the processing.
464unsigned long int records_kept;
465//! Count the number of users.
466unsigned long int nusers;
491b862f 467
25697a35 468int idate;
25697a35 469int dansguardian_count;
330b1c52 470int redirector_count;
c0ec9cc7 471int useragent_count;
25697a35
GS
472int z1, z2, z3;
473int ttopen;
25697a35
GS
474int sarglog;
475int isalog;
2357ef77 476int dfrom;
25697a35 477int duntil;
11284535
FM
478bool dataonly;
479bool indexonly;
480bool iprel;
25697a35
GS
481int langcode;
482int debug;
483int debugz;
484int debugm;
485int AuthfailReportLimit;
486int DeniedReportLimit;
94ff9470 487int DownloadReportLimit;
25697a35
GS
488int SiteUsersReportLimit;
489int DansGuardianReportLimit;
490int SquidGuardReportLimit;
491int UserReportLimit;
491b862f
GS
492int realtime_refresh;
493int realtime_access_log_lines;
491b862f 494int rc;
d6e703cc 495int ntopsites;
d6e703cc 496int nrepday;
d6e703cc 497int ntopuser;
2824ec9b 498bool squid24;
11767c6a
FM
499//! \c True to keep the temporary files for inspection.
500bool KeepTempLog;
25697a35 501
491b862f
GS
502long long int nocost;
503float cost;
25697a35
GS
504
505typedef struct
506{ int list[ 24 ];
507 int len;
508} numlist;