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