]> git.ipfire.org Git - thirdparty/sarg.git/blame - include/defs.h
Fix an error when processing NTLM user formatted name
[thirdparty/sarg.git] / include / defs.h
CommitLineData
f2ec8c75
FM
1/*!\file
2\brief Declaration of the structures and functions.
3*/
9c7c6346 4
8e53b2e7
FM
5#include "readlog.h"
6
9c7c6346
FM
7struct getwordstruct
8{
9 const char *current;
10 const char *beginning;
e5b2c6f0 11 int modified;
9c7c6346
FM
12};
13
afaa3b67 14typedef struct longlinestruct *longline;
ac422f9b 15
2240dcea
FM
16struct generalitemstruct
17{
18 //! \c True if the entry is for the total of the file or \c false if it is a single line.
19 int total;
20 //! The user to which the entry apply. The length is limited to ::MAX_USER_LEN.
21 char *user;
22 //! The number of accesses performed by the user.
23 long long nacc;
24 //! The number of bytes transfered.
25 long long nbytes;
26 //! The URL accessed by the user. The length is not limited.
27 char *url;
28 //! The source IP address of the user. The length is limited to ::MAX_IP_LEN.
29 char *ip;
30 //! The time of the access. The length is limited to ::MAX_DATETIME_LEN.
31 char *time;
32 //! The date of the access. The length is limited to ::MAX_DATETIME_LEN.
33 char *date;
34 //! The number of milliseconds spend processing the request.
35 long long nelap;
36 //! The number of bytes fetched from the cache of the proxy (cache hit).
37 long long incache;
38 //! The number of bytes fetched from the site (cache miss).
39 long long oucache;
40};
41
93551487
FM
42/*! \brief What is known about a user.
43*/
f2ec8c75
FM
44struct userinfostruct
45{
93551487 46 //! The ID of the user as found in the input file.
b6b6cb8c 47 const char *id;
93551487
FM
48 //! \c True if the ID is in fact the IP address from which the user connected.
49 bool id_is_ip;
50 //! \c True if the user doesn't have a report file.
51 bool no_report;
52 //! The name of the user to display in the report.
b6b6cb8c 53 const char *label;
93551487 54 //! The mangled name to use in file names of that user.
b6b6cb8c 55 const char *filename;
a58e6d54
FM
56 //! \c True if this user is in the topuser list.
57 int topuser;
58 //! A general purpose flag that can be set when scanning the user's list.
59 int flag;
d91457d2
FM
60#ifdef ENABLE_DOUBLE_CHECK_DATA
61 //! Total number of bytes.
62 long long int nbytes;
63 //! Total time spent processing the requests.
64 long long int elap;
65#endif
f2ec8c75
FM
66};
67
93551487
FM
68//! Scan through the known users.
69typedef struct userscanstruct *userscan;
70
9dc20988
FM
71/*! \brief Global statistics
72*/
73struct globalstatstruct
74{
75 //! Total number of accesses.
76 long long int nacc;
77 //! Total number of bytes.
78 long long int nbytes;
79 //! Total time spent processing the requests.
80 long long int elap;
81 //! Amount of data fetched from the cache.
82 long long int incache;
83 //! Amount of data not fetched from the cache.
84 long long int oucache;
e5b3a129
FM
85 //! The number of users in the topuser list.
86 int totuser;
9dc20988
FM
87};
88
026ddd8b
FM
89//! The object to store the daily statistics.
90typedef struct DayStruct *DayObject;
91
27d1fa35
FM
92/*!
93\brief Log filtering criterion.
94*/
95struct ReadLogDataStruct
96{
97 //! The filtering date range.
98 char DateRange[255];
99 //! \c True to filter on hosts.
100 bool HostFilter;
101 //! \c True to filter on users.
102 bool UserFilter;
103 //! Maximum elpased time allowed. Any time greater than this value is set to zero.
104 long int max_elapsed;
105 //! \c True to restrict the log to the system users.
106 bool SysUsers;
107 //! The start time to include in the report(H*100+M). Set to -1 to disable.
108 int StartTime;
109 //! The end time to include in the report(H*100+M). Set to -1 to disable.
110 int EndTime;
111};
112
5f3cfd1d 113// auth.c
d25d4e6a 114void htaccess(const struct userinfostruct *uinfo);
5f3cfd1d
FM
115
116// authfail.c
16b013cc
FM
117void authfail_open(void);
118void authfail_write(const struct ReadLogStruct *log_entry);
119void authfail_close(void);
120bool is_authfail(void);
5f3cfd1d 121void authfail_report(void);
16b013cc 122void authfail_cleanup(void);
5f3cfd1d
FM
123
124// charset.c
125void ccharset(char *CharSet);
126
127// convlog.c
81a022d8 128void convlog(const char* arq, char df, int dfrom, int duntil);
5f3cfd1d
FM
129
130// css.c
d183fb7f 131void css_content(FILE *fp_css);
5f3cfd1d
FM
132void css(FILE *fp_css);
133
134// dansguardian_log.c
135void dansguardian_log(void);
136
137// dansguardian_report.c
138void dansguardian_report(void);
139
140// datafile.c
141void data_file(char *tmp);
142
143// decomp.c
d2855b39 144FILE *decomp(const char *arq, bool *pipe);
5f3cfd1d
FM
145
146// denied.c
8e53b2e7
FM
147void denied_open(void);
148void denied_write(const struct ReadLogStruct *log_entry);
149void denied_close(void);
150bool is_denied(void);
5f3cfd1d 151void gen_denied_report(void);
60b48ae5 152void denied_cleanup(void);
5f3cfd1d
FM
153
154// download.c
11284535
FM
155void download_open(void);
156void download_write(const struct ReadLogStruct *log_entry,const char *url);
157void download_close(void);
158bool is_download(void);
5f3cfd1d 159void download_report(void);
6e792ade
FM
160void free_download(void);
161void set_download_suffix(const char *list);
2824ec9b 162bool is_download_suffix(const char *url);
11284535 163void download_cleanup(void);
5f3cfd1d
FM
164
165// email.c
2824ec9b 166int geramail(const char *dirname, int debug, const char *outdir, const char *email, const char *TempDir);
5f3cfd1d
FM
167
168// exclude.c
43f18f45
FM
169void gethexclude(const char *hexfile, int debug);
170void getuexclude(const char *uexfile, int debug);
171int vhexclude(const char *url);
172int vuexclude(const char *user);
2824ec9b 173bool is_indexonly(void);
43f18f45 174void free_exclude(void);
5f3cfd1d 175
6068ae56
FM
176#ifndef HAVE_FNMATCH
177// fnmtach.c
178int fnmatch(const char *pattern,const char *string,int flags);
179#endif
180
5f3cfd1d
FM
181// getconf.c
182void getconf(void);
183
184// grepday.c
1f482a8d 185void greport_prepare(void);
f2ec8c75 186void greport_day(const struct userinfostruct *user);
c274f011 187void greport_cleanup(void);
5f3cfd1d
FM
188
189// html.c
190void htmlrel(void);
191
192// indexonly.c
193void index_only(const char *dirname,int debug);
194
195// ip2name.c
51b166d4
FM
196int ip2name_config(const char *param);
197void ip2name_forcedns(void);
5f3cfd1d 198void ip2name(char *ip,int ip_len);
0326d73b 199void ip2name_cleanup(void);
4afbb7a5 200void name2ip(char *name,int name_size);
5f3cfd1d 201
5f3cfd1d
FM
202// lastlog.c
203void mklastlog(const char *outdir);
204
afaa3b67 205// longline.c
fa6552b0 206__attribute__((warn_unused_result)) /*@null@*//*@only@*/longline longline_create(void);
afaa3b67
FM
207void longline_reset(longline line);
208/*@null@*/char *longline_read(FILE *fp_in,/*@null@*/longline line);
209void longline_destroy(/*@out@*//*@only@*//*@null@*/longline *line_ptr);
210
5f3cfd1d
FM
211// index.c
212void make_index(void);
213
27d1fa35
FM
214// readlog.c
215int ReadLogFile(struct ReadLogDataStruct *Filter);
216
5f3cfd1d
FM
217// realtime.c
218void realtime(void);
219
330b1c52
FM
220// redirector.c
221void redirector_log(void);
222void redirector_report(void);
223
5f3cfd1d 224// repday.c
f2ec8c75 225void report_day(const struct userinfostruct *user);
5f3cfd1d
FM
226
227// report.c
5f3cfd1d 228void gerarel(void);
2240dcea 229int ger_read(char *buffer,struct generalitemstruct *item,const char *filename);
9dc20988 230void totalger(FILE *fp_gen,const char *filename);
5f3cfd1d
FM
231
232// siteuser.c
233void siteuser(void);
234
235// smartfilter.c
236void smartfilter_report(void);
237
238// sort.c
461b479d 239void sort_users_log(const char *tmp, int debug,struct userinfostruct *uinfo);
e5b3a129 240void tmpsort(const struct userinfostruct *uinfo);
15d5372b 241void sort_labels(const char **label,const char **order);
5f3cfd1d
FM
242
243// splitlog.c
81a022d8 244void splitlog(const char *arq, char df, int dfrom, int duntil, int convert, const char *splitprefix);
5f3cfd1d 245
5f3cfd1d
FM
246// topsites.c
247void topsites(void);
248
249// topuser.c
250void topuser(void);
251
252// totday.c
026ddd8b
FM
253DayObject day_prepare(void);
254void day_cleanup(DayObject ddata);
255void day_newuser(DayObject ddata);
256void day_addpoint(DayObject ddata,const char *date, const char *time, long long int elap, long long int bytes);
257void day_totalize(DayObject ddata,const char *tmp, const struct userinfostruct *uinfo);
5f3cfd1d 258
22715352
FM
259// url.c
260void read_hostalias(const char *Filename);
261void free_hostalias(void);
6fa33a32 262const char *skip_scheme(const char *url);
e2379f05 263const char *process_url(const char *url,bool full_url);
22715352
FM
264void url_hostname(const char *url,char *hostname,int hostsize);
265
5f3cfd1d
FM
266// usage.c
267void usage(const char *prog);
268
269// useragent.c
270void useragent(void);
271
f2ec8c75 272// userinfo.c
4ca814cc 273/*@shared@*/struct userinfostruct *userinfo_create(const char *userid);
f2ec8c75 274void userinfo_free(void);
b6b6cb8c 275void userinfo_label(struct userinfostruct *uinfo,const char *label);
4ca814cc
FM
276/*@shared@*/struct userinfostruct *userinfo_find_from_file(const char *filename);
277/*@shared@*/struct userinfostruct *userinfo_find_from_id(const char *id);
93551487
FM
278userscan userinfo_startscan(void);
279void userinfo_stopscan(userscan uscan);
280struct userinfostruct *userinfo_advancescan(userscan uscan);
a58e6d54 281void userinfo_clearflag(void);
f2ec8c75 282
965c4a6f
FM
283// usertab.c
284void init_usertab(const char *UserTabFile);
285void user_find(char *mappedname, int namelen, const char *userlogin);
286void close_usertab(void);
287
5f3cfd1d 288// util.c
06b39c87 289void getword_start(/*@out@*/struct getwordstruct *gwarea, const char *line);
9c7c6346 290void getword_restart(struct getwordstruct *gwarea);
d5a1c7f9
FM
291__attribute__((warn_unused_result)) int getword(/*@out@*/char *word, int limit, struct getwordstruct *gwarea, char stop);
292__attribute__((warn_unused_result)) int getword_limit(/*@out@*/char *word, int limit, struct getwordstruct *gwarea, char stop);
293__attribute__((warn_unused_result)) int getword_multisep(/*@out@*/char *word, int limit, struct getwordstruct *gwarea, char stop);
294__attribute__((warn_unused_result)) int getword_skip(int limit, struct getwordstruct *gwarea, char stop);
295__attribute__((warn_unused_result)) int getword_atoll(/*@out@*/long long int *number, struct getwordstruct *gwarea, char stop);
bd8b7715 296__attribute__((warn_unused_result)) int getword_atoi(/*@out@*/int *number, struct getwordstruct *gwarea, char stop);
2c4bc22b
FM
297__attribute__((warn_unused_result)) int getword_atol(long int *number, struct getwordstruct *gwarea, char stop);
298__attribute__((warn_unused_result)) int getword_atolu(unsigned long int *number, struct getwordstruct *gwarea, char stop);
d5a1c7f9 299__attribute__((warn_unused_result)) int getword_ptr(char *orig_line,/*@out@*/char **word, struct getwordstruct *gwarea, char stop);
e6414a9d
FM
300long long int my_atoll (const char *nptr);
301int is_absolute(const char *path);
e3af0ae9 302int getnumlist(char *, numlist *, const int, const int);
5f3cfd1d 303void name_month(char *month,int month_len);
fa6552b0
FM
304int conv_month(const char *month);
305const char *conv_month_name(int month);
5f3cfd1d 306void buildymd(const char *dia, const char *mes, const char *ano, char *wdata);
42b117e3 307void date_from(char *date, int *dfrom, int *duntil);
5f3cfd1d
FM
308char *fixnum(long long int value, int n);
309char *fixnum2(long long int value, int n);
310void fixnone(char *str);
324ba7f3 311char *fixtime(long long int elap);
2357ef77 312void fixendofline(char *str);
5f3cfd1d 313void show_info(FILE *fp_ou);
c0ec9cc7 314void show_sarg(FILE *fp_ou, int depth);
dfb337be 315void write_logo_image(FILE *fp_ou);
2e96438d
FM
316void write_html_head(FILE *fp_ou, int depth, const char *page_title,int javascript);
317void write_html_header(FILE *fp_ou, int depth, const char *title,int javascript);
c0ec9cc7 318void close_html_header(FILE *fp_ou);
fa6552b0 319__attribute__((warn_unused_result)) int write_html_trailer(FILE *fp_ou);
ac422f9b
FM
320void output_html_string(FILE *fp_ou,const char *str,int maxlen);
321void output_html_url(FILE *fp_ou,const char *url);
6fa33a32 322void output_html_link(FILE *fp_ou,const char *url,int maxlen);
f0126186 323void debuga(const char *msg,...) __attribute__((format(printf,1,2)));
9f93fec3 324void debugaz(const char *msg,...) __attribute__((format(printf,1,2)));
e5b2c6f0 325void my_lltoa(unsigned long long int n, char *s, int ssize, int len);
5f3cfd1d 326char *get_size(const char *path, const char *file);
48864d28 327void url_module(const char *url, char *w2);
f72b484a 328void url_to_anchor(const char *url,char *anchor,int size);
a87d4d11 329void safe_strcpy(char *dest,const char *src,int length);
5f3cfd1d
FM
330void strip_latin(char *line);
331char *buildtime(long long int elap);
15d3cb5c 332int obtdate(const char *dirname, const char *name, char *data);
a1de61fe 333void formatdate(char *date,int date_size,int year,int month,int day,int hour,int minute,int second,int dst);
fa6552b0 334void computedate(int year,int month,int day,struct tm *t);
d25d4e6a 335int obtuser(const char *dirname, const char *name);
ea275279 336void obttotal(const char *dirname, const char *name, int nuser, long long int *tbytes, long long int *media);
5f3cfd1d
FM
337void version(void);
338int vercode(const char *code);
48864d28
FM
339void load_excludecodes(const char *ExcludeCodes);
340void free_excludecodes(void);
5f3cfd1d
FM
341void my_mkdir(const char *name);
342int testvaliduserchar(const char *user);
343char *strlow(char *string);
344char *strup(char *string);
fa6552b0
FM
345int month2num(const char *month);
346int builddia(int day, int month, int year);
944cf283 347int compare_date(struct tm *date1,struct tm *date2);
fa6552b0
FM
348int vrfydir(const struct periodstruct *per1, const char *addr, const char *site, const char *us, const char *form);
349int getperiod_fromsarglog(const char *arqtt,struct periodstruct *period);
42b117e3 350void getperiod_fromrange(struct periodstruct *period,int dfrom,int duntil);
cc6af460 351void getperiod_merge(struct periodstruct *main,struct periodstruct *candidate);
fa6552b0 352int getperiod_buildtext(struct periodstruct *period);
5f3cfd1d 353void removetmp(const char *outdir);
81a022d8 354void zdate(char *ftime,int ftimesize, char DateFormat);
5f3cfd1d 355char *get_param_value(const char *param,char *line);
48864d28 356int compar( const void *, const void * );
170a77ea
FM
357void unlinkdir(const char *dir,bool contentonly);
358void emptytmpdir(const char *dir);
7819e0d5 359int extract_address_mask(const char *buf,const char **text,unsigned char *ipv4,unsigned short int *ipv6,int *nbits,const char **next);