]> git.ipfire.org Git - thirdparty/sarg.git/blobdiff - include/conf.h
Protect a few buffers against overflows
[thirdparty/sarg.git] / include / conf.h
index 623e7e4d48e840a95c12d14b5648c80cbc593c2b..3e8582c70b5a4b9d210ba5f6d44c61c303f8ba0a 100755 (executable)
 #include <sys/wait.h>
 #endif
 #ifdef HAVE_GD_H
+#define HAVE_GD 1
 #include <gd.h>
-#define HAVE_GD
-gdImagePtr im;
-gdPoint points[4];
 #endif
 #ifdef HAVE_GDFONTL_H
 #include <gdfontl.h>
@@ -104,6 +102,16 @@ gdPoint points[4];
 #ifdef HAVE_EXECINFO_H
 #include <execinfo.h>
 #endif
+#ifdef HAVE_LIBGEN_H
+#include <libgen.h>
+#endif
+#ifdef HAVE_STDBOOL_H
+#include <stdbool.h>
+#else
+typedef int bool;
+#define true 1
+#define false 0
+#endif
 
 #if defined(HAVE_FOPEN64)
 #define _FILE_OFFSET_BITS 64
@@ -132,6 +140,7 @@ int mkstemps(char *template, int suffixlen);
 #else /* No NLS */
 #define _(String) (String)
 #define N_(String) (String)
+#define ngettext(String,Strings,num) (Strings)
 #define textdomain(String)
 #define bindtextdomain(Domain,Directory)
 #endif //NLS
@@ -149,13 +158,26 @@ int mkstemps(char *template, int suffixlen);
 
 #endif /*__MINGW32__*/
 
+#ifndef __GNUC__
+#  define  __attribute__(x)
+#endif
+
 #define MAXLEN 20000
 #define MAX_URL_LEN 40000
 #define MAX_TRUNCATED_URL 512
-#define MAX_USER_LEN 512
+#define MAX_USER_LEN 256
+#define MAX_USER_FNAME_LEN 128
 #define MAX_IP_LEN 64
 #define MAX_DATETIME_LEN 32
 #define MAXLOGS 255
+#define MAX_LOG_FILELEN 1024
+#define MAX_REDIRECTOR_LOGS 64
+#define MAX_REDIRECTOR_FILELEN 1024
+/*!
+Arbitrary limit on the number of days that are accepted in the selected range of the log file.
+Sarg will complain that there are too many days in the files if this limit is overrun.
+*/
+#define MAX_DATETIME_DAYS 1000
 
 #define REPORT_TYPE_USERS_SITES         0x0001UL
 #define REPORT_TYPE_SITE_USER_TIME_DATE 0x0002UL
@@ -207,10 +229,69 @@ int mkstemps(char *template, int suffixlen);
 #define INDEX_TREE_DATE 0x0001UL
 #define INDEX_TREE_FILE 0x0002UL
 
+#define INDEXFIELDS_DIRSIZE 0x0001UL
+
+#define NTLMUSERFORMAT_USER       0x0001UL
+#define NTLMUSERFORMAT_DOMAINUSER 0x0002UL
+
+#define RECORDWITHOUTUSER_IP        0x0001UL
+#define RECORDWITHOUTUSER_IGNORE    0x0002UL
+#define RECORDWITHOUTUSER_EVERYBODY 0x0004UL
+
+#define DATAFILEURL_IP   0x0001UL
+#define DATAFILEURL_NAME 0x0002UL
+
+#define DISPLAY_BYTES 0x0001UL
+#define DISPLAY_ABBREV 0x0002UL
+
+#define DATETIME_ELAP 0x0001UL
+#define DATETIME_BYTE 0x0002UL
+
+#define REALTIME_UNAUTH_REC_SHOW   0x0001UL
+#define REALTIME_UNAUTH_REC_IGNORE 0x0002UL
+
+#define SORT_REVERSE 0x0001
+
+#define TOPUSER_SORT_REVERSE SORT_REVERSE
+#define TOPUSER_SORT_BYTES   0x0002UL
+#define TOPUSER_SORT_USER    0x0004UL
+#define TOPUSER_SORT_CONNECT 0x0008UL
+#define TOPUSER_SORT_TIME    0x0010UL
+
+#define TOPSITE_SORT_REVERSE SORT_REVERSE
+#define TOPSITE_SORT_BYTES   0x0002UL
+#define TOPSITE_SORT_CONNECT 0x0004UL
+#define TOPSITE_SORT_TIME    0x0008UL
+
+#define USER_SORT_REVERSE SORT_REVERSE
+#define USER_SORT_BYTES   0x0002UL
+#define USER_SORT_SITE    0x0004UL
+#define USER_SORT_CONNECT 0x0008UL
+#define USER_SORT_TIME    0x0010UL
+
+//! Value to exclude all the javascripts from the html page.
+#define HTML_JS_NONE 0x0000
+//! Bit to include sorttable.js in the html plage.
+#define HTML_JS_SORTTABLE 0x0001
+
+//! The character prefixed in front of the host names that are aliased.
+#define ALIAS_PREFIX '*'
+
+struct periodstruct
+{
+   //! The first date of the period.
+   struct tm start;
+   //! The last date of the period.
+   struct tm end;
+   //! The textual representation of the date.
+   char text[40];
+   //! The HTML representation of the date.
+   char html[40];
+};
+
 char outdir[MAXLEN];
-char dirname[MAXLEN];
-char buf[MAXLEN];
-char period[MAXLEN];
+char outdirname[MAXLEN];
+struct periodstruct period;
 char code[MAXLEN];
 char code2[MAXLEN];
 char tmp[MAXLEN];
@@ -219,30 +300,26 @@ char arqtt[MAXLEN];
 char html[MAXLEN];
 char ConfigFile[MAXLEN];
 char df[20];
-char cdfrom[30];
-char cduntil[30];
 int LastLog;
-int RemoveTempFiles;
+bool RemoveTempFiles;
 char ReplaceIndex[256];
 unsigned long int Index;
-int OverwriteReport;
-char RecordsWithoutUser[20];
-int UseComma;
+bool OverwriteReport;
+unsigned long int RecordsWithoutUser;
+bool UseComma;
 char MailUtility[PATH_MAX];
 int TopSitesNum;
 int TopUsersNum;
 char ExcludeCodes[256];
-char TopsitesSortField[15];
-char TopsitesSortType[20];
+unsigned long int TopsitesSort;
 unsigned long int ReportType;
 char UserTabFile[255];
 char warea[MAXLEN];
 char name[MAXLEN];
-int LongUrl;
-int Ip2Name;
-char language[255];
+bool LongUrl;
+bool Ip2Name;
 int NAccessLog;
-char AccessLog[MAXLOGS][MAXLEN];
+char AccessLog[MAXLOGS][MAX_LOG_FILELEN];
 int AccessLogFromCmdLine;
 char Title[MAXLEN];
 char BgColor[MAXLEN];
@@ -263,10 +340,8 @@ char PasswdFile[MAXLEN];
 char TempDir[MAXLEN];
 char OutputDir[MAXLEN];
 char OutputEmail[MAXLEN];
-char TopuserSortField[30];
-char UserSortField[30];
-char TopuserSortOrder[10];
-char UserSortOrder[10];
+unsigned long int TopuserSort;
+unsigned long int UserSort;
 char UserAgentLog[255];
 char module[255];
 char ExcludeHosts[255];
@@ -274,59 +349,58 @@ char ExcludeUsers[255];
 char DateFormat[2];
 char PerUserLimitFile[255];
 int PerUserLimit;
-int UserIp;
+bool UserIp;
 char MaxElapsed[255];
-char datetimeby[10];
+unsigned long int datetimeby;
 char CharSet[255];
 char UserInvalidChar[255];
-int Graphs;
+bool Graphs;
 char GraphDaysBytesBarColor[255];
-int Privacy;
+bool Privacy;
 char PrivacyString[255];
 char PrivacyStringColor[30];
 char IncludeUsers[MAXLEN];
 char ExcludeString[MAXLEN];
-int SuccessfulMsg;
+bool SuccessfulMsg;
 unsigned long int TopUserFields;
 unsigned long int UserReportFields;
 char DataFile[MAXLEN];
 char DataFileDelimiter[3];
 unsigned long int DataFileFields;
-char DataFileUrl[20];
-int ShowReadStatistics;
+unsigned long int DataFileUrl;
+bool ShowReadStatistics;
 char IndexSortOrder[5];
 char DansGuardianConf[MAXLEN];
-int DansguardianIgnoreDate;
+bool DansguardianFilterOutDate;
 char SquidGuardConf[MAXLEN];
 char SquidGuarddbHome[255];
-char SquidGuardLogFormat[MAXLEN];
-char SquidGuardLogAlternate[MAXLEN];
-int SquidguardIgnoreDate;
-int ShowSargInfo;
-int BytesInSitesUsersReport;
-int ShowSargLogo;
+char RedirectorLogFormat[4096];
+int NRedirectorLogs;
+char RedirectorLogs[MAX_REDIRECTOR_LOGS][MAX_REDIRECTOR_FILELEN];
+int RedirectorLogFromCmdLine;
+bool RedirectorFilterOutDate;
+bool ShowSargInfo;
+bool BytesInSitesUsersReport;
+bool ShowSargLogo;
 char ParsedOutputLog[MAXLEN];
 char ParsedOutputLogCompress[512];
-char DisplayedValues[20];
+unsigned long int DisplayedValues;
 char HeaderFontSize[5];
 char TitleFontSize[5];
 char wwwDocumentRoot[MAXLEN];
 char ExternalCSSFile[MAXLEN];
 char BlockIt[255];
-char NtlmUserFormat[30];
+unsigned long int NtlmUserFormat;
+//! How to display the index of the reports.
 unsigned long int IndexTree;
-int UserAuthentication;
-char AuthUserFile[255];
-char AuthName[512];
-char AuthType[255];
-char Require[512];
-char *str;
-char *str2;
-char text[200][255];
+//! The columns to show in the index of the reports.
+unsigned long int IndexFields;
+bool UserAuthentication;
+char AuthUserTemplateFile[1024];
+//! \c True to use anonymous file and directory names in the report.
+bool AnonymousOutputFiles;
 char val1[MAXLEN];
-char val2[MAXLEN];
 char val3[MAXLEN];
-char val4[MAXLEN];
 char val5[MAXLEN];
 char val6[MAXLEN];
 char val7[MAXLEN];
@@ -334,15 +408,11 @@ char val8[MAXLEN];
 char val9[MAXLEN];
 char val10[MAXLEN];
 char val11[MAXLEN];
-char wwork1[MAXLEN];
-char wwork2[MAXLEN];
-char wwork3[MAXLEN];
 char mask[MAXLEN];
 char site[MAXLEN];
 char us[50];
 char email[MAXLEN];
 char test[1];
-char ouser2[255];
 char user2[MAXLEN];
 char wentp[512];
 char addr[MAXLEN];
@@ -350,9 +420,7 @@ char Ulimit[6];
 char RealtimeTypes[1024];
 char cmd[255];
 char ImageFile[255];
-char tbuf[128];
-char ip[25];
-char RealtimeUnauthRec[15];
+unsigned long int RealtimeUnauthRec;
 char LDAPHost[255];
 char LDAPBindDN[512];
 char LDAPBindPW[255];
@@ -362,6 +430,10 @@ char LDAPBaseSearch[255];
 char LDAPFilterSearch[512];
 char LDAPTargetAttr[64];
 char GraphFont[MAXLEN];
+//! The full path to sorttable.js if the table in the reports must be dynamicaly sorted.
+char SortTableJs[256];
+//! The name of the file containing the host names to replace by an alias in the report.
+char HostAliasFile[512];
 
 int  idate;
 int  smartfilter;
@@ -369,23 +441,18 @@ int  denied_count;
 int  download_count;
 int  authfail_count;
 int  dansguardian_count;
-int  squidguard_count;
+int  redirector_count;
 int  useragent_count;
 int  limit_flag;
-int  color1;
-int  color2;
-int  color3;
 int  z1, z2, z3;
 int  ttopen;
-int  ind2;
 int  sarglog;
 int  isalog;
 int  dfrom;
 int  duntil;
 int  dataonly;
-int  indexonly;
-int  iprel;
-int  userip;
+bool  indexonly;
+bool  iprel;
 int  langcode;
 int  debug;
 int  debugz;
@@ -397,18 +464,15 @@ int  SiteUsersReportLimit;
 int  DansGuardianReportLimit;
 int  SquidGuardReportLimit;
 int  UserReportLimit;
-int  dotinuser;
 int  realtime_refresh;
 int  realtime_access_log_lines;
-int  realt;
 int  rc;
 int  ntopsites;
 int  nsitesusers;
 int  nrepday;
 int  ndownload;
 int  ntopuser;
-int  squid24;
-float perc;
+bool  squid24;
 
 long long int nocost;
 float cost;
@@ -417,6 +481,3 @@ typedef struct
 { int list[ 24 ];
   int len;
 } numlist;
-
-DIR *dirp;
-struct dirent *direntp;