]> git.ipfire.org Git - thirdparty/sarg.git/blob - report.c
Output the period as an HTML text in the HTML reports
[thirdparty/sarg.git] / report.c
1 /*
2 * SARG Squid Analysis Report Generator http://sarg.sourceforge.net
3 * 1998, 2010
4 *
5 * SARG donations:
6 * please look at http://sarg.sourceforge.net/donations.php
7 * Support:
8 * http://sourceforge.net/projects/sarg/forums/forum/363374
9 * ---------------------------------------------------------------------
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
24 *
25 */
26
27 #include "include/conf.h"
28 #include "include/defs.h"
29
30 static FILE *fp_tt=NULL;
31
32 static void maketmp(const char *user, const char *dirname, int debug, int indexonly);
33 static void maketmp_hour(const char *user, const char *dirname, int indexonly);
34 static void gravatmp_hora(const char *dirname, const struct userinfostruct *uinfo, const char *data, const char *hora, long long int elap, long long int accbytes, int indexonly);
35 static void gravatmpf(const struct userinfostruct *uinfo, const char *oldurl, long long int nacc, long long int nbytes, const char *oldmsg, long long int nelap, int indexonly, long long int incache, long long int oucache);
36 static void gravaporuser(const struct userinfostruct *uinfo, const char *dirname, const char *url, const char *ip, const char *data, const char *hora, long long int tam, long long int elap, int indexonly);
37 static void gravager(FILE *fp_gen, const struct userinfostruct *uinfo, long long int nacc, const char *url, long long int nbytes, const char *ip, const char *hora, const char *dia, long long int nelap, long long int incache, long long int oucache);
38 static void grava_SmartFilter(const char *dirname, const char *user, const char *ip, const char *data, const char *hora, const char *url, const char *smart);
39
40 void gerarel(void)
41 {
42
43 FILE *fp_in;
44 FILE *fp_gen;
45
46 char *buf;
47 char accdia[11], acchora[9], accip[MAXLEN], *accurl;
48 char oldaccdia[11], oldacchora[9], oldaccip[MAXLEN];
49 char wdirname[MAXLEN];
50 char *oldurl=NULL;
51 char oldmsg[50], acccode[MAXLEN/2 - 1], oldacccode[MAXLEN/2 - 1], user[MAX_USER_LEN];
52 char ipantes[MAXLEN], nameantes[MAXLEN];
53 char accsmart[MAXLEN];
54 char crc2[MAXLEN/2 -1];
55 char siteind[MAX_TRUNCATED_URL];
56 char arqtt[256];
57 char *oldurltt=NULL;
58 char oldaccdiatt[11],oldacchoratt[9];
59 char tmp3[MAXLEN];
60 char tmp4[5];
61 char u2[MAX_USER_LEN];
62 long long int nbytes=0;
63 long long int nelap=0;
64 long long int nacc=0;
65 long long int rtotal=0;
66 long long int incache=0;
67 long long int oucache=0;
68 long long int accbytes, accelap;
69 char *str;
70 DIR *dirp;
71 struct dirent *direntp;
72 const char logext[]=".log";
73 int dlen;
74 int url_len;
75 int ourl_size=0;
76 int ourltt_size=0;
77 int same_url;
78 int new_user;
79 struct getwordstruct gwarea;
80 longline line;
81 struct userinfostruct *uinfo,*puinfo;
82
83 ipantes[0]='\0';
84 smartfilter=0;
85
86 if (vrfydir(&period, addr, site, us, email)<0) {
87 debuga(_("Cannot create the output directory name containing the period as part of the name\n"));
88 exit(EXIT_FAILURE);
89 }
90
91 if(debugz){
92 debugaz("outdirname",outdirname);
93 }
94
95 if(UserAgentLog[0] != '\0' && email[0] == '\0') useragent();
96
97 snprintf(wdirname,sizeof(wdirname),"%s/sarg-general",outdirname);
98 if((fp_gen=MY_FOPEN(wdirname,"w"))==NULL){
99 debuga(_("(report) Cannot open file %s\n"),wdirname);
100 exit(EXIT_FAILURE);
101 }
102
103 puinfo=NULL;
104 strncat(tmp,"/sarg",5);
105 fp_tt=NULL;
106
107 if ((dirp = opendir(tmp)) == NULL) {
108 debuga(_("Failed to open directory %s - %s\n"),tmp,strerror(errno));
109 exit(EXIT_FAILURE);
110 }
111 while ((direntp = readdir( dirp )) != NULL ) {
112 dlen=strlen(direntp->d_name)-(sizeof(logext)-1);
113 if (dlen<0) continue;
114 if((strcmp(direntp->d_name+dlen,logext) != 0) ||
115 (strncmp(direntp->d_name,"download.log",12) == 0) ||
116 (strncmp(direntp->d_name,"denied.log",10) == 0) ||
117 (strncmp(direntp->d_name,"authfail.log.unsort",19) == 0))
118 continue;
119 if (snprintf(tmp3,sizeof(tmp3),"%s/%s",tmp,direntp->d_name)>=sizeof(tmp3)) {
120 debuga(_("(report) directory entry too long: %s/%s\n"),tmp,direntp->d_name);
121 exit(EXIT_FAILURE);
122 }
123 if((fp_in=MY_FOPEN(tmp3,"r"))==NULL){
124 debuga(_("(report) Cannot open file %s\n"),tmp);
125 exit(EXIT_FAILURE);
126 }
127
128 if (dlen>0) {
129 if (dlen>=sizeof(user)) continue;
130 strncpy(user,direntp->d_name,dlen);
131 user[dlen]=0;
132 } else {
133 user[0]='\0';
134 }
135
136 uinfo=userinfo_find_from_file(user);
137 if (!uinfo) {
138 debuga(_("Ignoring unknown user file %s\n"),user);
139 continue;
140 }
141 strcpy(u2,uinfo->id);
142 if(Ip2Name && uinfo->id_is_ip) {
143 strcpy(ipantes,u2);
144 ip2name(u2,sizeof(u2));
145 strcpy(nameantes,u2);
146 }
147 user_find(uinfo->label,MAX_USER_LEN, u2);
148
149 maketmp(user,tmp,debug,indexonly);
150 maketmp_hour(user,tmp,indexonly);
151
152 ttopen=0;
153 oldurltt=NULL;
154 ourltt_size=0;
155 memset(oldaccdiatt,0,sizeof(oldaccdiatt));
156 memset(oldacchoratt,0,sizeof(oldacchoratt));
157 new_user=1;
158
159 if ((line=longline_create())==NULL) {
160 debuga(_("Not enough memory to read the downloaded files\n"));
161 exit(EXIT_FAILURE);
162 }
163
164 while((buf=longline_read(fp_in,line))!=NULL) {
165 getword_start(&gwarea,buf);
166 if (getword(accdia,sizeof(accdia),&gwarea,'\t')<0 || getword(acchora,sizeof(acchora),&gwarea,'\t')<0 ||
167 getword(accip,sizeof(accip),&gwarea,'\t')<0 ||
168 getword_ptr(buf,&accurl,&gwarea,'\t')<0 || getword_atoll(&accbytes,&gwarea,'\t')<0 ||
169 getword(acccode,sizeof(acccode),&gwarea,'\t')<0) {
170 debuga(_("There is a broken record or garbage in file %s\n"),tmp3);
171 exit(EXIT_FAILURE);
172 }
173 if(strncmp(acccode,"TCP_DENIED/407",14) == 0) continue;
174 if (getword_atoll(&accelap,&gwarea,'\t')<0) {
175 debuga(_("There is a broken elapsed time in file %s\n"),tmp3);
176 exit(EXIT_FAILURE);
177 }
178 if (getword_skip(20000,&gwarea,'"')<0 || getword(accsmart,sizeof(accsmart),&gwarea,'"')<0) {
179 debuga(_("There is a broken smart info in file %s\n"),tmp3);
180 exit(EXIT_FAILURE);
181 }
182
183 if(accsmart[0] != '\0') {
184 smartfilter++;
185 grava_SmartFilter(outdirname,uinfo->id,accip,accdia,acchora,accurl,accsmart);
186 }
187
188 if(Ip2Name) {
189 if(strcmp(accip,ipantes) != 0) {
190 strcpy(ipantes,accip);
191 ip2name(accip,sizeof(accip));
192 strcpy(nameantes,accip);
193 } else strcpy(accip,nameantes);
194 }
195
196 gravatmp_hora(outdirname,uinfo,accdia,acchora,accelap,accbytes,indexonly);
197
198 if(iprel){
199 gravaporuser(uinfo,outdirname,accurl,accip,accdia,acchora,accbytes,accelap,indexonly);
200 }
201
202 if(!rtotal){
203 url_len=strlen(accurl);
204 if (!oldurl || url_len>=ourl_size) {
205 ourl_size=url_len+1;
206 oldurl=realloc(oldurl,ourl_size);
207 if (!oldurl) {
208 debuga(_("Not enough memory to store the url\n"));
209 exit(EXIT_FAILURE);
210 }
211 }
212 strcpy(oldurl,accurl);
213 strcpy(oldacccode,acccode);
214 puinfo=uinfo;
215 strcpy(oldaccip,accip);
216 strcpy(oldaccdia,accdia);
217 strcpy(oldacchora,acchora);
218 new_user=0;
219 rtotal++;
220 }
221 same_url=(strcmp(oldurl,accurl) == 0);
222
223 if(site[0] != '\0') {
224 if(new_user){
225 strcpy(oldmsg,"OK");
226 if(strstr(oldacccode,"DENIED") != 0)
227 sprintf(oldmsg,"%s",_("DENIED"));
228 gravatmp(puinfo,oldurl,nacc,nbytes,oldmsg,nelap,indexonly,incache,oucache);
229 gravager(fp_gen,puinfo,nacc,oldurl,nbytes,oldaccip,oldacchora,oldaccdia,nelap,incache,oucache);
230 nacc=0;
231 nbytes=0;
232 nelap=0;
233 incache=0;
234 oucache=0;
235 }
236 } else {
237 if(!same_url || new_user){
238 if(strstr(oldacccode,"DENIED") != 0)
239 strcpy(oldmsg,_("DENIED"));
240 else
241 strcpy(oldmsg,"OK");
242 gravatmp(puinfo,oldurl,nacc,nbytes,oldmsg,nelap,indexonly,incache,oucache);
243 gravager(fp_gen,puinfo,nacc,oldurl,nbytes,oldaccip,oldacchora,oldaccdia,nelap,incache,oucache);
244 nacc=0;
245 nbytes=0;
246 nelap=0;
247 incache=0;
248 oucache=0;
249 }
250 }
251 nacc++;
252 nbytes+=accbytes;
253 nelap+=accelap;
254
255 if ((ReportType & REPORT_TYPE_SITE_USER_TIME_DATE) != 0 &&
256 (!oldurltt || strcmp(oldurltt,accurl) || strcmp(oldaccdiatt,accdia) || strcmp(oldacchoratt,acchora))) {
257
258 if(!ttopen) {
259 url_to_file(accurl,siteind,sizeof(siteind));
260 snprintf(arqtt,sizeof(arqtt),"%s/%s",outdirname,uinfo->filename);
261 if(access(arqtt, R_OK) != 0)
262 my_mkdir(arqtt);
263 snprintf(arqtt,sizeof(arqtt),"%s/%s/tt%s-%s.html",outdirname,uinfo->filename,uinfo->filename,siteind);
264 if ((fp_tt = fopen(arqtt, "w")) == 0) {
265 debuga(_("(report) Cannot open file %s\n"),arqtt);
266 exit(EXIT_FAILURE);
267 }
268 ttopen=1;
269
270 /*
271 if(Privacy)
272 sprintf(httplink,"<font size=%s color=%s><href=http://%s>%s", \
273 FontSize,PrivacyStringColor,PrivacyString,PrivacyString);
274 else
275 sprintf(httplink,"<font size=%s><a href=\"http://%s\">%s</a>",FontSize,accurl,accurl);
276 */
277
278 write_html_header(fp_tt,(IndexTree == INDEX_TREE_DATE) ? 4 : 2,_("Site access report"));
279 fprintf(fp_tt,"<tr><td class=\"header_l\">%s:&nbsp;%s</td></tr>\n",_("Period"),period.html);
280 fprintf(fp_tt,"<tr><td class=\"header_l\">%s:&nbsp;%s</td></tr>\n",_("User"),uinfo->label);
281 fprintf(fp_tt,"<tr><td class=\"header_l\">%s:&nbsp;%s, %s</td></tr>\n",_("Sort"),UserSortField,UserSortOrder);
282 fprintf(fp_tt,"<tr><th class=\"header_c\">%s</th></tr>\n",_("User"));
283 close_html_header(fp_tt);
284
285 fputs("<div class=\"report\"><table cellpadding=\"0\" cellspacing=\"2\">\n",fp_tt);
286 fputs("<tr><td></td><td></td></tr>",fp_tt);
287 strncpy(tmp4,_("DATE/TIME"),4);
288 tmp4[4]='\0';
289 fprintf(fp_tt,"<tr><th class=\"header_l\">%s</th><th class=\"header_l\">%s</th><th class=\"header_l\">%s</th></tr>\n",_("ACCESSED SITE"),tmp4,_("DATE/TIME")+5);
290 }
291
292 fputs("<tr><td class=\"data\">",fp_tt);
293 output_html_string(fp_tt,accurl,100);
294 fprintf(fp_tt,"</td><td class=\"data\">%s</td><td class=\"data\">%s</td></tr>\n",accdia,acchora);
295
296 url_len=strlen(accurl);
297 if (!oldurltt || url_len>=ourltt_size) {
298 ourltt_size=url_len+1;
299 oldurltt=realloc(oldurltt,ourltt_size);
300 if (!oldurltt) {
301 debuga(_("Not enough memory to store the url\n"));
302 exit(EXIT_FAILURE);
303 }
304 }
305 strcpy(oldurltt,accurl);
306 strcpy(oldaccdiatt,accdia);
307 strcpy(oldacchoratt,acchora);
308 }
309
310 strcpy(crc2,acccode);
311 str=strchr(crc2,'/');
312 if (str) *str='\0';
313 if(strstr(crc2,"MISS") != 0)
314 oucache+=accbytes;
315 else incache+=accbytes;
316
317 if(new_user) {
318 new_user=0;
319 day_totalize(tmp,puinfo,indexonly);
320 }
321
322 puinfo=uinfo;
323 strcpy(oldacccode,acccode);
324 strcpy(oldaccip,accip);
325 if (!same_url) {
326 url_len=strlen(accurl);
327 if (url_len>=ourl_size) {
328 ourl_size=url_len+1;
329 oldurl=realloc(oldurl,ourl_size);
330 if (!oldurl) {
331 debuga(_("Not enough memory to store the url\n"));
332 exit(EXIT_FAILURE);
333 }
334 }
335 strcpy(oldurl,accurl);
336 }
337 strcpy(oldaccdia,accdia);
338 strcpy(oldacchora,acchora);
339
340 }
341 fclose(fp_in);
342 longline_destroy(&line);
343 if (oldurltt) free(oldurltt);
344 unlink(tmp3);
345 }
346 closedir(dirp);
347
348 if (oldurl) {
349 if(strstr(oldacccode,"DENIED") != 0)
350 strcpy(oldmsg,_("DENIED"));
351 else
352 strcpy(oldmsg,"OK");
353 gravatmpf(puinfo,oldurl,nacc,nbytes,oldmsg,nelap,indexonly,incache,oucache);
354 gravager(fp_gen,puinfo,nacc,oldurl,nbytes,oldaccip,oldacchora,oldaccdia,nelap,incache,oucache);
355 free(oldurl);
356 }
357 fclose(fp_gen);
358 if (puinfo) day_totalize(tmp,puinfo,indexonly);
359
360 tmpsort();
361
362 totalger(outdirname, debug, outdir);
363
364 if(email[0] == '\0') {
365 if((ReportType & REPORT_TYPE_DOWNLOADS) != 0) download_report();
366
367 if(DansGuardianConf[0] != '\0') {
368 dansguardian_log();
369 }
370
371 squidguard_log();
372
373 topuser();
374
375 if((ReportType & REPORT_TYPE_TOPSITES) != 0) topsites();
376
377 if((ReportType & REPORT_TYPE_SITES_USERS) != 0) siteuser();
378 gen_denied_report();
379
380 authfail_report();
381
382 if(smartfilter) smartfilter_report();
383
384 if(DansGuardianConf[0] != '\0') dansguardian_report();
385
386 squidguard_report();
387
388 if((ReportType & REPORT_TYPE_USERS_SITES) != 0) htmlrel();
389
390 make_index();
391
392 if(SuccessfulMsg) debuga(_("Successful report generated on %s\n"),outdirname);
393 } else {
394 geramail(outdirname, debug, outdir, email, TempDir);
395
396 if((strcmp(email,"stdout") != 0) && SuccessfulMsg)
397 debuga(_("Successful report generated and sent to %s\n"),email);
398 }
399
400 if(indexonly) {
401 index_only(outdirname, debug);
402 }
403
404 /*
405 2009-10-13(Frederic) This piece of code is never called so it is commented out for good.
406 if(strlen(email) < 0)
407 removetmp(dirname);
408 */
409
410 return;
411 }
412
413 static void maketmp(const char *user, const char *dirname, int debug, int indexonly)
414 {
415
416 FILE *fp_ou;
417
418 char wdirname[MAXLEN];
419
420 if(indexonly) return;
421 if((ReportType & REPORT_TYPE_USERS_SITES) == 0) return;
422
423 if(debug) debuga(_("Making file: %s/%s\n"),tmp,user);
424 if (snprintf(wdirname,sizeof(wdirname),"%s/%s.utmp",tmp,user)>=sizeof(wdirname)) {
425 debuga(_("Temporary file name too long: %s/%s.utmp\n"),tmp,user);
426 exit(EXIT_FAILURE);
427 }
428
429 if((fp_ou=fopen(wdirname,"w"))==NULL){
430 debuga(_("(report) Cannot open file %s\n"),wdirname);
431 exit(EXIT_FAILURE);
432 }
433
434 fclose(fp_ou);
435 return;
436 }
437
438
439 static void maketmp_hour(const char *user, const char *dirname, int indexonly)
440 {
441
442 FILE *fp_ou;
443
444 char wdirname[MAXLEN];
445
446 if(indexonly) return;
447 if((ReportType & REPORT_TYPE_USERS_SITES) == 0) return;
448
449 if (snprintf(wdirname,sizeof(wdirname),"%s/%s.htmp",tmp,user)>=sizeof(wdirname)) {
450 debuga(_("Temporary file name too long: %s/%s.htmp\n"),tmp,user);
451 exit(EXIT_FAILURE);
452 }
453
454 if((fp_ou=fopen(wdirname,"w"))==NULL){
455 debuga(_("(report-1) Cannot open file %s - %s\n"),wdirname,strerror(errno));
456 exit(EXIT_FAILURE);
457 }
458
459 fclose(fp_ou);
460 return;
461 }
462
463
464 void gravatmp(const struct userinfostruct *uinfo, const char *oldurl, long long int nacc, long long int nbytes, const char *oldmsg, long long int nelap, int indexonly, long long int incache, long long int oucache)
465 {
466 FILE *fp_ou;
467 char wdirname[MAXLEN];
468
469 if(indexonly) return;
470 if((ReportType & REPORT_TYPE_USERS_SITES) == 0) return;
471
472 if (snprintf(wdirname,sizeof(wdirname),"%s/%s.utmp",tmp,uinfo->filename)>=sizeof(wdirname)) {
473 debuga(_("Temporary file name too long: %s/%s.utmp\n"),tmp,uinfo->filename);
474 exit(EXIT_FAILURE);
475 }
476
477 if((fp_ou=MY_FOPEN(wdirname,"a"))==NULL){
478 debuga(_("(report) Cannot open file %s\n"),wdirname);
479 exit(EXIT_FAILURE);
480 }
481
482 fprintf(fp_ou,"%lld\t%lld\t%s\t%s\t%lld\t%lld\t%lld\n",nacc,nbytes,oldurl,oldmsg,nelap,incache,oucache);
483
484 fclose(fp_ou);
485 ttopen=0;
486
487 if(fp_tt) {
488 fputs("</table>\n</div>\n",fp_tt);
489 fputs("</body>\n</html>\n",fp_tt);
490 fclose(fp_tt);
491 fp_tt=NULL;
492 }
493
494 return;
495 }
496
497 static void gravatmpf(const struct userinfostruct *uinfo,const char *oldurl, long long int nacc, long long int nbytes, const char *oldmsg, long long int nelap, int indexonly, long long int incache, long long int oucache)
498 {
499 FILE *fp_ou;
500 char wdirname[MAXLEN];
501
502 if(indexonly || (ReportType & REPORT_TYPE_USERS_SITES) == 0) return;
503
504 if (snprintf(wdirname,sizeof(wdirname),"%s/%s.utmp",tmp,uinfo->filename)>=sizeof(wdirname)) {
505 debuga(_("Path too long %s/%s.utmp\n"),tmp,uinfo->filename);
506 exit(EXIT_FAILURE);
507 }
508
509 if((fp_ou=MY_FOPEN(wdirname,"a"))==NULL){
510 debuga(_("(report) Cannot open file %s\n"),wdirname);
511 exit(EXIT_FAILURE);
512 }
513
514 fprintf(fp_ou,"%lld\t%lld\t%s\t%s\t%lld\t%lld\t%lld\n",nacc,nbytes,oldurl,oldmsg,nelap,incache,oucache);
515
516 fclose(fp_ou);
517 ttopen=0;
518
519 if(fp_tt) {
520 fputs("</table>\n",fp_tt);
521 fputs("</body>\n</html>\n",fp_tt);
522 fclose(fp_tt);
523 fp_tt=NULL;
524 }
525
526 return;
527 }
528
529
530 static void gravatmp_hora(const char *dirname, const struct userinfostruct *uinfo, const char *data, const char *hora, long long int elap, long long int bytes, int indexonly)
531 {
532
533 FILE *fp_ou;
534 char wdirname[MAXLEN];
535
536 if(indexonly || ((ReportType & REPORT_TYPE_USERS_SITES) == 0)) return;
537
538 if (snprintf(wdirname,sizeof(wdirname),"%s/%s.htmp",tmp,uinfo->filename)>=sizeof(wdirname)) {
539 debuga(_("Path too long %s/%s.htmp\n"),tmp,uinfo->filename);
540 exit(EXIT_FAILURE);
541 }
542
543 if((fp_ou=MY_FOPEN(wdirname,"a"))==NULL){
544 debuga(_("(report-2) Cannot open file %s - %s\n"),wdirname,strerror(errno));
545 exit(EXIT_FAILURE);
546 }
547
548 if(strcmp(datetimeby,"bytes") == 0) fprintf(fp_ou,"%s\t%s\t%lld\n",data,hora,bytes);
549 else fprintf(fp_ou,"%s\t%s\t%lld\n",data,hora,elap);
550
551 fclose(fp_ou);
552
553 return;
554 }
555
556
557 static void gravaporuser(const struct userinfostruct *uinfo, const char *dirname, const char *url, const char *ip, const char *data, const char *hora, long long int tam, long long int elap, int indexonly)
558 {
559
560 FILE *fp_ou;
561 char wdirname[MAXLEN];
562
563 if(indexonly || ((ReportType & REPORT_TYPE_USERS_SITES) == 0)) return;
564
565 if (snprintf(wdirname,sizeof(wdirname),"%s/%s.ip",tmp,uinfo->filename)>=sizeof(wdirname)) {
566 debuga(_("Path too long %s/%s.ip\n"),tmp,uinfo->filename);
567 exit(EXIT_FAILURE);
568 }
569
570 if((fp_ou=MY_FOPEN(wdirname,"a"))==NULL){
571 debuga(_("(report) Cannot open file %s\n"),wdirname);
572 exit(EXIT_FAILURE);
573 }
574
575 fprintf(fp_ou,"%s\t%s\t%s\t%s\t%lld\t%lld\n",ip,url,data,hora,tam,elap);
576
577 fclose(fp_ou);
578
579 return;
580
581 }
582
583
584 static void gravager(FILE *fp_gen, const struct userinfostruct *uinfo, long long int nacc, const char *url, long long int nbytes, const char *ip, const char *hora, const char *dia, long long int nelap, long long int incache, long long int oucache)
585 {
586 fprintf(fp_gen,"%s\t%lld\t%lld\t%s\t%s\t%s\t%s\t%lld\t%lld\t%lld\n",uinfo->id,nacc,nbytes,url,ip,hora,dia,nelap,incache,oucache);
587 return;
588 }
589
590 int ger_read(char *buffer,struct generalitemstruct *item,const char *filename)
591 {
592 int i;
593 int sign;
594 long long int number;
595
596 if (strncmp(buffer,"TOTAL\t",6)==0) {
597 item->total=1;
598 buffer+=6;
599
600 sign=+1;
601 if (*buffer == '-') {
602 buffer++;
603 sign=-1;
604 } else if (*buffer == '+') {
605 buffer++;
606 }
607 number=0LL;
608 while (isdigit(*buffer))
609 number=(number * 10) + (*buffer++)-'0';
610 if (*buffer!='\t') {
611 debuga(_("Invalid total number of accesses in %s\n"),filename);
612 exit(EXIT_FAILURE);
613 }
614 buffer++;
615 item->nacc=number*sign;
616
617 sign=+1;
618 if (*buffer == '-') {
619 buffer++;
620 sign=-1;
621 } else if (*buffer == '+') {
622 buffer++;
623 }
624 number=0LL;
625 while (isdigit(*buffer))
626 number=(number * 10) + (*buffer++)-'0';
627 if (*buffer!='\t') {
628 debuga(_("Invalid total size in %s\n"),filename);
629 exit(EXIT_FAILURE);
630 }
631 buffer++;
632 item->nbytes=number*sign;
633
634 sign=+1;
635 if (*buffer == '-') {
636 buffer++;
637 sign=-1;
638 } else if (*buffer == '+') {
639 buffer++;
640 }
641 number=0LL;
642 while (isdigit(*buffer))
643 number=(number * 10) + (*buffer++)-'0';
644 if (*buffer!='\t') {
645 debuga(_("Invalid total elapsed time in %s\n"),filename);
646 exit(EXIT_FAILURE);
647 }
648 buffer++;
649 item->nelap=number*sign;
650
651 sign=+1;
652 if (*buffer == '-') {
653 buffer++;
654 sign=-1;
655 } else if (*buffer == '+') {
656 buffer++;
657 }
658 number=0LL;
659 while (isdigit(*buffer))
660 number=(number * 10) + (*buffer++)-'0';
661 if (*buffer!='\t') {
662 debuga(_("Invalid total cache hit in %s\n"),filename);
663 exit(EXIT_FAILURE);
664 }
665 buffer++;
666 item->incache=number*sign;
667
668 sign=+1;
669 if (*buffer == '-') {
670 buffer++;
671 sign=-1;
672 } else if (*buffer == '+') {
673 buffer++;
674 }
675 number=0LL;
676 while (isdigit(*buffer))
677 number=(number * 10) + (*buffer++)-'0';
678 if (*buffer!='\0') {
679 debuga(_("Invalid total cache miss in %s\n"),filename);
680 exit(EXIT_FAILURE);
681 }
682 item->oucache=number*sign;
683 } else {
684 item->total=0;
685
686 item->user=buffer;
687 for (i=0 ; i<MAX_USER_LEN-1 && (unsigned char)*buffer>=' ' ; i++) buffer++;
688 if (*buffer!='\t') {
689 debuga(_("User name too long or invalid in %s\n"),filename);
690 exit(EXIT_FAILURE);
691 }
692 *buffer++='\0';
693
694 sign=+1;
695 if (*buffer == '-') {
696 buffer++;
697 sign=-1;
698 } else if (*buffer == '+') {
699 buffer++;
700 }
701 number=0LL;
702 while (isdigit(*buffer))
703 number=(number * 10) + (*buffer++)-'0';
704 if (*buffer!='\t') {
705 debuga(_("Invalid number of accesses in %s\n"),filename);
706 exit(EXIT_FAILURE);
707 }
708 buffer++;
709 item->nacc=number*sign;
710
711 sign=+1;
712 if (*buffer == '-') {
713 buffer++;
714 sign=-1;
715 } else if (*buffer == '+') {
716 buffer++;
717 }
718 number=0LL;
719 while (isdigit(*buffer))
720 number=(number * 10) + (*buffer++)-'0';
721 if (*buffer!='\t') {
722 debuga(_("Invalid number of bytes in %s\n"),filename);
723 exit(EXIT_FAILURE);
724 }
725 buffer++;
726 item->nbytes=number*sign;
727
728 item->url=buffer;
729 while ((unsigned char)*buffer>=' ') buffer++;
730 if (*buffer!='\t') {
731 debuga(_("URL too long or invalid in %s\n"),filename);
732 exit(EXIT_FAILURE);
733 }
734 *buffer++='\0';
735
736 item->ip=buffer;
737 for (i=0 ; i<MAX_IP_LEN-1 && (unsigned char)*buffer>=' ' ; i++) buffer++;
738 if (*buffer!='\t') {
739 debuga(_("IP address too long or invalid in %s\n"),filename);
740 exit(EXIT_FAILURE);
741 }
742 *buffer++='\0';
743
744 item->time=buffer;
745 for (i=0 ; i<MAX_DATETIME_LEN-1 && (unsigned char)*buffer>=' ' ; i++) buffer++;
746 if (*buffer!='\t') {
747 debuga(_("Time too long or invalid in %s\n"),filename);
748 exit(EXIT_FAILURE);
749 }
750 *buffer++='\0';
751
752 item->date=buffer;
753 for (i=0 ; i<MAX_DATETIME_LEN-1 && (unsigned char)*buffer>=' ' ; i++) buffer++;
754 if (*buffer!='\t') {
755 debuga(_("Date too long or invalid in %s\n"),filename);
756 exit(EXIT_FAILURE);
757 }
758 *buffer++='\0';
759
760 sign=+1;
761 if (*buffer == '-') {
762 buffer++;
763 sign=-1;
764 } else if (*buffer == '+') {
765 buffer++;
766 }
767 number=0LL;
768 while (isdigit(*buffer))
769 number=(number * 10) + (*buffer++)-'0';
770 if (*buffer!='\t') {
771 debuga(_("Invalid elapsed time in %s\n"),filename);
772 exit(EXIT_FAILURE);
773 }
774 buffer++;
775 item->nelap=number*sign;
776
777 sign=+1;
778 if (*buffer == '-') {
779 buffer++;
780 sign=-1;
781 } else if (*buffer == '+') {
782 buffer++;
783 }
784 number=0LL;
785 while (isdigit(*buffer))
786 number=(number * 10) + (*buffer++)-'0';
787 if (*buffer!='\t') {
788 debuga(_("Invalid cache hit size in %s\n"),filename);
789 exit(EXIT_FAILURE);
790 }
791 buffer++;
792 item->incache=number*sign;
793
794 sign=+1;
795 if (*buffer == '-') {
796 buffer++;
797 sign=-1;
798 } else if (*buffer == '+') {
799 buffer++;
800 }
801 number=0LL;
802 while (isdigit(*buffer))
803 number=(number * 10) + (*buffer++)-'0';
804 if (*buffer!='\0') {
805 debuga(_("Invalid cache miss size in %s\n"),filename);
806 exit(EXIT_FAILURE);
807 }
808 item->oucache=number*sign;
809 }
810 return(0);
811 }
812
813 static void grava_SmartFilter(const char *dirname, const char *user, const char *ip, const char *data, const char *hora, const char *url, const char *smart)
814 {
815
816 FILE *fp_ou;
817 char wdirname[MAXLEN];
818
819 sprintf(wdirname,"%s/smartfilter.unsort",dirname);
820
821 if((fp_ou=MY_FOPEN(wdirname,"a"))==NULL){
822 debuga(_("(report) Cannot open file %s\n"),wdirname);
823 exit(EXIT_FAILURE);
824 }
825
826 fprintf(fp_ou,"%s\t%s\t%s\t%s\t%s\t%s\n",user,data,hora,ip,url,smart);
827 fputs("</body>\n</html>\n",fp_tt);
828
829 fclose(fp_ou);
830
831 return;
832
833 }