]> git.ipfire.org Git - thirdparty/sarg.git/blame - util.c
Use internal user list instead of scanning the directory for users
[thirdparty/sarg.git] / util.c
CommitLineData
25697a35 1/*
94ff9470 2 * SARG Squid Analysis Report Generator http://sarg.sourceforge.net
1164c474 3 * 1998, 2010
25697a35
GS
4 *
5 * SARG donations:
6 * please look at http://sarg.sourceforge.net/donations.php
1164c474
FM
7 * Support:
8 * http://sourceforge.net/projects/sarg/forums/forum/363374
25697a35
GS
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// #define LEGACY_MY_ATOLL
28// #define LEGACY_TESTVALIDUSERCHAR
29
30#include "include/conf.h"
5f3cfd1d 31#include "include/defs.h"
25697a35 32
e6414a9d 33#if defined(HAVE_BACKTRACE)
ac422f9b 34#define USE_GETWORD_BACKTRACE 1
e6414a9d
FM
35#else
36#define USE_GETWORD_BACKTRACE 0
37#endif
38
25697a35 39static char mtab1[12][4]={"Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"};
48864d28
FM
40
41//! The list of the HTTP codes to exclude from the report.
42static char *excludecode=NULL;
25697a35 43
e6414a9d
FM
44#if USE_GETWORD_BACKTRACE
45static void getword_backtrace(void)
46{
9bd92830
FM
47 void *buffer[5];
48 int i, n;
49 char **calls;
50
51 n=backtrace(buffer,sizeof(buffer)/sizeof(buffer[0]));
52 if (n<=0) return;
53 calls=backtrace_symbols(buffer,n);
54 if (calls) {
55 debuga(_("getword backtrace:\n"));
56 for (i=0 ; i<n ; i++) {
57 fprintf(stderr,"SARG: %d:%s\n",i+1,calls[i]);
58 }
59 free(calls);
60 }
e6414a9d
FM
61}
62#endif //USE_GETWORD_BACKTRACE
63
9c7c6346 64void getword_start(struct getwordstruct *gwarea, const char *line)
25697a35 65{
9bd92830
FM
66 gwarea->beginning=line;
67 gwarea->current=line;
68 gwarea->modified=0;
9c7c6346 69}
25697a35 70
9c7c6346 71void getword_restart(struct getwordstruct *gwarea)
25697a35 72{
9bd92830
FM
73 if (gwarea->modified) {
74 debuga(_("Cannot parse again the line as it was modified\n"));
75 exit(EXIT_FAILURE);
76 }
77 gwarea->current=gwarea->beginning;
9c7c6346 78}
25697a35 79
06b39c87 80int getword(char *word, int limit, struct getwordstruct *gwarea, char stop)
9c7c6346 81{
9bd92830 82 int x;
25697a35 83
9bd92830
FM
84 for(x=0;((gwarea->current[x]) && (gwarea->current[x] != stop ));x++) {
85 if(x>=limit) {
86 printf("SARG: getword loop detected after %d bytes.\n",x);
87 printf("SARG: Line=\"%s\"\n",gwarea->beginning);
88 printf("SARG: Record=\"%s\"\n",gwarea->current);
89 printf("SARG: searching for \'x%x\'\n",stop);
90 //printf("SARG: Maybe you have a broken record or garbage in your access.log file.\n");
91 word[(limit>0) ? limit-1 : 0]='\0';
e6414a9d 92#if USE_GETWORD_BACKTRACE
007905af 93 getword_backtrace();
e6414a9d 94#endif
9bd92830
FM
95 return(-1);
96 }
97 word[x] = gwarea->current[x];
98 }
25697a35 99
9bd92830
FM
100 word[x] = '\0';
101 if (gwarea->current[x]) ++x;
102 gwarea->current+=x;
103 return(0);
25697a35
GS
104}
105
06b39c87 106int getword_limit(char *word, int limit, struct getwordstruct *gwarea, char stop)
e5b2c6f0 107{
9bd92830 108 int x;
e5b2c6f0 109
9bd92830
FM
110 limit--;
111 for(x=0; x<limit && gwarea->current[x] && gwarea->current[x] != stop ;x++) {
112 word[x] = gwarea->current[x];
113 }
114 word[x] = '\0';
115 gwarea->current+=x;
116 while (*gwarea->current && *gwarea->current != stop) gwarea->current++;
117 if (*gwarea->current) ++gwarea->current;
118 return(0);
e5b2c6f0
FM
119}
120
06b39c87 121int getword_multisep(char *word, int limit, struct getwordstruct *gwarea, char stop)
4bcb77cf 122{
9bd92830 123 int x;
4bcb77cf 124
9bd92830
FM
125 for(x=0;((gwarea->current[x]) && (gwarea->current[x] != stop ));x++) {
126 if(x>=limit) {
127 printf("SARG: getword_multisep loop detected.\n");
128 printf("SARG: Line=\"%s\"\n",gwarea->beginning);
129 printf("SARG: Record=\"%s\"\n",gwarea->current);
130 printf("SARG: searching for \'x%x\'\n",stop);
131 //printf("SARG: Maybe you have a broken record or garbage in your access.log file.\n");
132 if (limit>0) word[limit-1]='\0';
e6414a9d 133#if USE_GETWORD_BACKTRACE
9bd92830 134 getword_backtrace();
e6414a9d 135#endif
9bd92830
FM
136 //exit(EXIT_FAILURE);
137 return(-1);
138 }
139 word[x] = gwarea->current[x];
140 }
4bcb77cf 141
9bd92830
FM
142 word[x] = '\0';
143 while (gwarea->current[x] && gwarea->current[x]==stop) ++x;
144 gwarea->current+=x;
145 return(0);
4bcb77cf
FM
146}
147
06b39c87 148int getword_skip(int limit, struct getwordstruct *gwarea, char stop)
076cbab8 149{
9bd92830 150 int x;
076cbab8 151
9bd92830
FM
152 for(x=0;(gwarea->current[x] && (gwarea->current[x] != stop ));x++) {
153 if(x>=limit) {
154 printf("SARG: getword_skip loop detected after %d bytes.\n",x);
155 printf("SARG: Line=\"%s\"\n",gwarea->beginning);
156 printf("SARG: Record=\"%s\"\n",gwarea->current);
157 printf("SARG: searching for \'x%x\'\n",stop);
158 //printf("SARG: Maybe you have a broken record or garbage in your access.log file.\n");
e6414a9d 159#if USE_GETWORD_BACKTRACE
9bd92830 160 getword_backtrace();
e6414a9d 161#endif
9bd92830
FM
162 return(-1);
163 }
164 }
076cbab8 165
9bd92830
FM
166 if (gwarea->current[x]) ++x;
167 gwarea->current+=x;
168 return(0);
076cbab8
FM
169}
170
06b39c87 171int getword_atoll(long long int *number, struct getwordstruct *gwarea, char stop)
25697a35 172{
9bd92830
FM
173 int x;
174 int sign=+1;
175
176 if (gwarea->current[0] == '-') {
177 gwarea->current++;
178 sign=-1;
179 } else if (gwarea->current[0] == '+') {
180 gwarea->current++;
181 }
182 *number=0LL;
183 for(x=0;isdigit(gwarea->current[x]);x++) {
184 *number=(*number * 10) + gwarea->current[x]-'0';
185 }
186 if(gwarea->current[x] && gwarea->current[x]!=stop) {
187 printf("SARG: getword_atoll loop detected after %d bytes.\n",x);
188 printf("SARG: Line=\"%s\"\n",gwarea->beginning);
189 printf("SARG: Record=\"%s\"\n",gwarea->current);
190 printf("SARG: searching for \'x%x\'\n",stop);
191 //printf("SARG: Maybe you have a broken record or garbage in your access.log file.\n");
e6414a9d 192#if USE_GETWORD_BACKTRACE
9bd92830 193 getword_backtrace();
e6414a9d 194#endif
9bd92830
FM
195 return(-1);
196 }
197 *number*=sign;
25697a35 198
9bd92830
FM
199 if (gwarea->current[x]) ++x;
200 gwarea->current+=x;
201 return(0);
0a4e18e1 202}
25697a35 203
25697a35 204
06b39c87 205int getword_ptr(char *orig_line,char **word, struct getwordstruct *gwarea, char stop)
e5b2c6f0 206{
9bd92830
FM
207 /*!
208 \note Why pass the original buffer to the function ? Because we must modify it to
209 insert the terminating ASCII zero for the word we return and that's not compatible
210 with getword_restart(). Moreover, getword_start() sometime works on constant strings
211 so this function require the original buffer to detect any missuse.
212 */
213 int x;
214 int sep;
215 int start;
216
217 if (orig_line && orig_line!=gwarea->beginning) {
218 debuga(_("Invalid buffer passed to getword_ptr\n"));
219 return(-1);
220 }
221
222 start=(gwarea->current-gwarea->beginning);
223 if (word && orig_line) *word=orig_line+start;
224 for(x=0;((gwarea->current[x]) && (gwarea->current[x] != stop ));x++);
225 sep=(gwarea->current[x]!='\0');
226 if (word && orig_line) orig_line[start+x] = '\0';
227 if (sep) ++x;
228 gwarea->current+=x;
229 gwarea->modified=1;
230 return(0);
e5b2c6f0
FM
231}
232
48864d28 233#define MAXLLL 30 //!< Maximum number of digits in long long (a guess).
25697a35
GS
234long long int my_atoll (const char *nptr)
235{
9bd92830
FM
236 long long int returnval=0LL;
237 int max_digits = MAXLLL ;
25697a35 238
9bd92830
FM
239 // Soak up all the white space
240 while (isspace( *nptr )) {
241 nptr++;
242 }
25697a35 243
9bd92830
FM
244 //For each character left to right
245 //change the character to a single digit
246 //multiply what we had before by 10 and add the new digit
25697a35 247
9bd92830
FM
248 while (--max_digits && isdigit( *nptr ))
249 {
250 returnval = ( returnval * 10 ) + ( *nptr++ - '0' ) ;
251 }
25697a35 252
9bd92830 253 return returnval;
0a4e18e1 254}
25697a35 255
e6414a9d 256int is_absolute(const char *path)
6798f0a7 257{
9bd92830 258 if (*path=='/') return(1);
6798f0a7 259#ifdef WINDOWS
9bd92830 260 if (isalpha(path[0]) && path[1]==':') return(1);
6798f0a7 261#endif
9bd92830 262 return(0);
6798f0a7 263}
25697a35 264
32e71fa4 265void my_mkdir(const char *name)
25697a35 266{
9bd92830
FM
267 char w0[MAXLEN];
268 int i;
269 int chars;
270
271 if(!is_absolute(name)) {
272 debuga(_("Invalid path (%s). Please, use absolute paths only.\n"),name);
273 debuga(_("process aborted.\n"));
274 exit(EXIT_FAILURE);
275 }
276
277 chars=0;
278 for (i=0 ; name[i] ; i++) {
279 if (i>=sizeof(w0)) {
280 debuga(_("directory name too long: %s\n"),name);
281 exit(EXIT_FAILURE);
282 }
283 if (chars>0 && name[i] == '/') {
284 w0[i] = '\0';
285 if(access(w0, R_OK) != 0) {
286 if(mkdir(w0,0755)) {
287 debuga(_("mkdir %s %s\n"),w0,strerror(errno));
288 debuga(_("process aborted.\n"));
289 exit(EXIT_FAILURE);
290 }
291 }
292 }
293 if (name[i] != '/') chars++;
294 w0[i] = name[i];
295 }
296
297 if(access(name, R_OK) != 0) {
298 if(mkdir(name,0755)) {
299 debuga(_("mkdir %s %s\n"),name,strerror(errno));
300 debuga(_("process aborted.\n"));
301 exit(EXIT_FAILURE);
302 }
303 }
25697a35
GS
304}
305
306
e5b2c6f0 307void my_lltoa(unsigned long long int n, char *s, int ssize, int len)
25697a35 308{
9bd92830
FM
309 int i;
310 int slen = 0;
311 int j;
312 char c;
313
314 ssize--;
315 if (len>ssize) {
316 debuga(_("The requested number of digits passed to my_lltoa (%d) is bigger than the output buffer size (%d)\n"),len,ssize);
317 abort();
318 }
319
320 do {
321 s[slen++] = (n % 10) + '0';
322 } while ((n /= 10) > 0 && slen<ssize);
323 s[slen] = '\0';
324
325 for (i = 0, j = slen-1; i<j; i++, j--) {
326 c = s[i];
327 s[i] = s[j];
328 s[j] = c;
329 }
330
331 if(len>slen) {
332 i=len-slen;
333 for(j=slen; j>=0; j--)
334 s[j+i]=s[j];
335 for(j=0 ; j<i ; j++)
336 s[j]='0';
337 }
25697a35
GS
338}
339
fa6552b0 340int month2num(const char *month)
25697a35 341{
9bd92830 342 int m;
25697a35 343
9bd92830
FM
344 for(m=0 ; m<12 && strcmp(mtab1[m],month) != 0; m++);
345 return(m);
fa6552b0 346}
25697a35 347
fa6552b0
FM
348int builddia(int day, int month, int year)
349{
9bd92830 350 return(year*10000+month*100+day);
25697a35
GS
351}
352
353
32e71fa4 354void buildymd(const char *dia, const char *mes, const char *ano, char *wdata)
25697a35 355{
9bd92830 356 int nmes;
25697a35 357
9bd92830
FM
358 nmes=month2num(mes);
359 sprintf(wdata,"%04d%02d%02d",atoi(ano),nmes+1,atoi(dia));
25697a35
GS
360}
361
362
fa6552b0 363int conv_month(const char *month)
25697a35 364{
9bd92830 365 int x;
25697a35 366
9bd92830
FM
367 for(x=0; x<12 && strncmp(mtab1[x],month,3)!=0; x++);
368 return(x+1);
25697a35
GS
369}
370
371
fa6552b0 372const char *conv_month_name(int month)
25697a35 373{
9bd92830 374 static char str[4];
25697a35 375
9bd92830
FM
376 if (month<1 || month>12) {
377 snprintf(str,sizeof(str),"%03d",month);
378 return(str);
379 }
380 return(mtab1[month-1]);
25697a35
GS
381}
382
383
4bcb77cf 384void name_month(char *month,int month_len)
491b862f 385{
9bd92830
FM
386 int x, z=atoi(month)-1;
387 char m[255];
388 char w[20];
389 struct getwordstruct gwarea;
491b862f 390
9bd92830
FM
391 strcpy(m,_("January,February,March,April,May,June,July,August,September,October,November,December"));
392 getword_start(&gwarea,m);
491b862f 393
9bd92830
FM
394 for(x=0; x<z; x++)
395 if (getword_multisep(w,sizeof(w),&gwarea,',')<0) {
396 printf("SARG: Maybe you have a broken record or garbage in the names of the months.\n");
397 exit(EXIT_FAILURE);
398 }
399 if (getword_multisep(month,month_len,&gwarea,',')<0) {
400 printf("SARG: Maybe you have a broken record or garbage in the name of the months.\n");
401 exit(EXIT_FAILURE);
402 }
491b862f
GS
403}
404
405
d2fe0c32 406void debuga(const char *msg,...)
25697a35 407{
9bd92830 408 va_list ap;
25697a35 409
9bd92830
FM
410 fputs(_("SARG: "),stderr);
411 va_start(ap,msg);
412 vfprintf(stderr,msg,ap);
413 va_end(ap);
25697a35
GS
414}
415
416
32e71fa4 417void debugaz(const char *head, const char *msg)
25697a35 418{
9bd92830 419 fprintf(stderr, "SARG: (util) %s=%s\n",head, msg);
25697a35
GS
420}
421
422
25697a35 423char *fixnum(long long int value, int n)
25697a35 424{
1b81f396 425#define MAXLEN_FIXNUM 256
9bd92830
FM
426 char num[MAXLEN_FIXNUM]="";
427 char buf[MAXLEN_FIXNUM * 2];
428 char *pbuf;
429 static char ret[MAXLEN_FIXNUM * 2];
430 char *pret;
431 register int i, j, k;
432 int numlen;
433 static char abbrev[30];
434
435 my_lltoa(value, num, sizeof(num), 0);
436
437 if(DisplayedValues==DISPLAY_ABBREV) {
438 numlen = strlen(num);
439 if(numlen <= 3)
440 sprintf(abbrev,"%s",num);
441 if(numlen == 4 || numlen == 7 || numlen == 10 || numlen == 13) {
442 snprintf(abbrev,2,"%s",num);
443 strncat(abbrev,".",1);
444 strncat(abbrev,num+1,2);
445 if(!n) return(abbrev);
446 if(numlen == 4)
447 strncat(abbrev,"K",1);
448 else if(numlen == 7)
449 strncat(abbrev,"M",1);
450 else if(numlen == 10)
451 strncat(abbrev,"G",1);
452 else if(numlen == 13)
453 strncat(abbrev,"T",1);
454 }
455 if(numlen == 5 || numlen == 8 || numlen == 11 || numlen == 14) {
456 snprintf(abbrev,3,"%s",num);
457 strncat(abbrev,".",1);
458 strncat(abbrev,num+2,2);
459 if(!n) return(abbrev);
460 if(numlen == 5)
461 strncat(abbrev,"K",1);
462 else if(numlen == 8)
463 strncat(abbrev,"M",1);
464 else if(numlen == 11)
465 strncat(abbrev,"G",1);
466 else if(numlen == 14)
467 strncat(abbrev,"T",1);
468 }
469 if(numlen == 6 || numlen == 9 || numlen == 12 || numlen == 15) {
470 snprintf(abbrev,4,"%s",num);
471 strncat(abbrev,".",1);
472 strncat(abbrev,num+3,2);
473 if(!n) return(abbrev);
474 if(numlen == 6)
475 strncat(abbrev,"K",1);
476 else if(numlen == 9)
477 strncat(abbrev,"M",1);
478 else if(numlen == 12)
479 strncat(abbrev,"G",1);
480 else if(numlen == 15)
481 strncat(abbrev,"T",1);
482 }
483
484 return(abbrev);
485 }
486
487 bzero(buf, MAXLEN_FIXNUM*2);
488
489 pbuf = buf;
490 pret = ret;
491 k = 0;
492
493 for ( i = strlen(num) - 1, j = 0 ; i > -1; i--) {
494 if ( k == 2 && i != 0 ) {
495 k = 0;
496 pbuf[j++] = num[i];
497 pbuf[j++] = (UseComma) ? ',' : '.';
498 continue;
499 }
500 pbuf[j] = num[i];
501 j++;
502 k++;
503 }
504
505 pret[0]='\0';
506
507 for ( i = strlen(pbuf) - 1, j = 0 ; i > -1; i--, j++)
508 pret[j] = pbuf[i];
509
510 pret[j] = '\0';
511
512 return pret;
25697a35
GS
513}
514
515
d6e703cc 516char *fixnum2(long long int value, int n)
d6e703cc 517{
32e71fa4 518#define MAXLEN_FIXNUM2 1024
9bd92830
FM
519 char num[MAXLEN_FIXNUM2];
520 char buf[MAXLEN_FIXNUM2 * 2];
521 char *pbuf;
522 static char ret[MAXLEN_FIXNUM2 * 2];
523 char *pret;
524 register int i, j, k;
2357ef77 525
9bd92830
FM
526 my_lltoa(value, num, sizeof(num), 0);
527 bzero(buf, MAXLEN_FIXNUM2*2);
d6e703cc 528
9bd92830
FM
529 pbuf = buf;
530 pret = ret;
531 k = 0;
d6e703cc 532
9bd92830
FM
533 for ( i = strlen(num) - 1, j = 0 ; i > -1; i--) {
534 if ( k == 2 && i != 0 ) {
535 k = 0;
536 pbuf[j++] = num[i];
537 pbuf[j++] = (UseComma) ? ',' : '.';
538 continue;
539 }
540 pbuf[j] = num[i];
541 j++;
542 k++;
543 }
d6e703cc 544
9bd92830 545 pret[0]='\0';
d6e703cc 546
9bd92830
FM
547 for ( i = strlen(pbuf) - 1, j = 0 ; i > -1; i--, j++)
548 pret[j] = pbuf[i];
d6e703cc 549
9bd92830 550 pret[j] = '\0';
d6e703cc 551
9bd92830 552 return pret;
d6e703cc
FM
553}
554
555
25697a35
GS
556char *buildtime(long long int elap)
557{
9bd92830
FM
558 int num = elap / 1000;
559 int hor = 0;
560 int min = 0;
561 int sec = 0;
562 static char buf[12];
25697a35 563
9bd92830 564 buf[0]='\0';
25697a35 565
9bd92830
FM
566 hor=num / 3600;
567 min=(num % 3600) / 60;
568 sec=num % 60;
569 sprintf(buf,"%02d:%02d:%02d",hor,min,sec);
25697a35 570
9bd92830 571 return(buf);
25697a35
GS
572}
573
574
32e71fa4 575void obtdate(const char *dirname, const char *name, char *data)
25697a35 576{
9bd92830
FM
577 FILE *fp_in;
578 char wdir[MAXLEN];
25697a35 579
9bd92830
FM
580 sprintf(wdir,"%s%s/sarg-date",dirname,name);
581 if ((fp_in = fopen(wdir, "rt")) == 0) {
582 sprintf(wdir,"%s%s/date",dirname,name);
583 if ((fp_in = fopen(wdir, "rt")) == 0) {
584 data[0]='\0';
585 return;
586 }
587 }
25697a35 588
9bd92830
FM
589 if (!fgets(data,80,fp_in)) {
590 debuga(_("Failed to read the date in %s\n"),wdir);
591 exit(EXIT_FAILURE);
592 }
593 fclose(fp_in);
594 fixendofline(data);
25697a35 595
9bd92830 596 return;
25697a35
GS
597}
598
599
a1de61fe 600void formatdate(char *date,int date_size,int year,int month,int day,int hour,int minute,int second,int dst)
9e41ca7e 601{
9bd92830
FM
602 struct tm ltm;
603 time_t unixtime;
604 struct tm *fulltm;
9e41ca7e 605
9bd92830
FM
606 memset(&ltm,0,sizeof(ltm));
607 if (year>=1900) ltm.tm_year=year-1900;
608 if (month>=1 && month<=12) ltm.tm_mon=month-1;
609 if (day>=1 && day<=31) ltm.tm_mday=day;
610 if (hour>=0 && hour<24) ltm.tm_hour=hour;
611 if (minute>=0 && minute<60) ltm.tm_min=minute;
612 if (second>=0 && second<60) ltm.tm_sec=second;
613 ltm.tm_isdst=dst;
614 unixtime=mktime(&ltm); //fill the missing entries
615 fulltm=localtime(&unixtime);
616 //strftime(date,date_size,"%a %b %d %H:%M:%S %Z %Y",fulltm);
617 strftime(date,date_size,"%c",fulltm);
9e41ca7e
FM
618}
619
620
fa6552b0 621void computedate(int year,int month,int day,struct tm *t)
9426efec 622{
9bd92830
FM
623 memset(t,0,sizeof(*t));
624 t->tm_year=year-1900;
625 t->tm_mon=month-1;
626 t->tm_mday=day;
9426efec
FM
627}
628
629
d25d4e6a 630int obtuser(const char *dirname, const char *name)
25697a35 631{
9bd92830
FM
632 FILE *fp_in;
633 char wdir[MAXLEN];
634 char tuser[20];
635 int nuser;
25697a35 636
9bd92830
FM
637 sprintf(wdir,"%s%s/sarg-users",dirname,name);
638 if((fp_in=fopen(wdir,"r"))==NULL) {
639 sprintf(wdir,"%s%s/users",dirname,name);
640 if((fp_in=fopen(wdir,"r"))==NULL) {
641 return(0);
642 }
643 }
25697a35 644
9bd92830
FM
645 if (!fgets(tuser,sizeof(tuser),fp_in)) {
646 debuga(_("Failed to read the number of users in %s\n"),wdir);
647 exit(EXIT_FAILURE);
648 }
649 fclose(fp_in);
650 nuser=atoi(tuser);
25697a35 651
9bd92830 652 return(nuser);
25697a35
GS
653}
654
655
ea275279 656void obttotal(const char *dirname, const char *name, int nuser, long long int *tbytes, long long int *media)
25697a35 657{
9bd92830
FM
658 FILE *fp_in;
659 char *buf;
660 char wdir[MAXLEN];
661 char user[MAX_USER_LEN];
662 char sep;
663 struct getwordstruct gwarea;
664 longline line;
665
666 *tbytes=0;
667 *media=0;
668
669 sprintf(wdir,"%s%s/sarg-general",dirname,name);
670 if ((fp_in = fopen(wdir, "r")) == 0) {
671 sprintf(wdir,"%s%s/general",dirname,name);
672 if ((fp_in = fopen(wdir, "r")) == 0) {
673 return;
674 }
675 }
676
677 if ((line=longline_create())==NULL) {
678 debuga(_("Not enough memory to read the file %s\n"),wdir);
679 exit(EXIT_FAILURE);
680 }
681
682 while((buf=longline_read(fp_in,line))!=NULL) {
683 if (strncmp(buf,"TOTAL\t",6) == 0)
684 sep='\t'; //new file
685 else if (strncmp(buf,"TOTAL ",6) == 0)
686 sep=' '; //old file
687 else
688 continue;
689 getword_start(&gwarea,buf);
690 if (getword(user,sizeof(user),&gwarea,sep)<0) {
691 debuga(_("There is a invalid user in file %s\n"),wdir);
692 exit(EXIT_FAILURE);
693 }
694 if(strcmp(user,"TOTAL") != 0)
695 continue;
696 if (getword_skip(MAXLEN,&gwarea,sep)<0) {
697 debuga(_("There a broken total number of access in file %s\n"),wdir);
698 exit(EXIT_FAILURE);
699 }
700 if (getword_atoll(tbytes,&gwarea,sep)<0) {
701 debuga(_("There is a broken number of bytes in file %s\n"),wdir);
702 exit(EXIT_FAILURE);
703 }
704 break;
705 }
706 fclose(fp_in);
707 longline_destroy(&line);
708
709 if (nuser <= 0)
710 return;
711
712 *media=*tbytes / nuser;
713 return;
25697a35
GS
714}
715
fa6552b0 716int getperiod_fromsarglog(const char *arqtt,struct periodstruct *period)
25697a35 717{
9bd92830
FM
718 const char *str;
719 int day0, month0, year0, hour0, minute0;
720 int day1, month1, year1, hour1, minute1;
721 char month[4];
722 int i;
723
724 memset(period,0,sizeof(*period));
725
726 str=arqtt;
727 while((str=strstr(str,"sarg-"))!=NULL) {
728 str+=5;
729 if (!isdigit(str[0]) || !isdigit(str[1])) continue;
730 day0=(str[0]-'0')*10+(str[1]-'0');
731 str+=2;
732 strncpy(month,str,3);
733 month[3]=0;
734 month0=month2num(month);
735 if (month0>=12) continue;
736 str+=3;
737 year0=0;
738 for (i=0 ; isdigit(str[i]) && i<4 ; i++) year0=year0*10+(str[i]-'0');
739 if (i!=4) continue;
740 str+=4;
741 if (str[0]!='_') continue;
742 str++;
743
744 if (!isdigit(str[0]) || !isdigit(str[1])) continue;
745 hour0=(str[0]-'0')*10+(str[1]-'0');
746 str+=2;
747 if (!isdigit(str[0]) || !isdigit(str[1])) continue;
748 minute0=(str[0]-'0')*10+(str[1]-'0');
749 str+=2;
750
751 if (*str != '-') continue;
752 str++;
753
754 if (!isdigit(str[0]) || !isdigit(str[1])) continue;
755 day1=(str[0]-'0')*10+(str[1]-'0');
756 str+=2;
757 strncpy(month,str,3);
758 month[3]=0;
759 month1=month2num(month);
760 if (month1>=12) continue;
761 str+=3;
762 year1=0;
763 for (i=0 ; isdigit(str[i]) && i<4 ; i++) year1=year1*10+(str[i]-'0');
764 if (i!=4) continue;
765 str+=4;
766
767 if (str[0]!='_') continue;
768 str++;
769
770 if (!isdigit(str[0]) || !isdigit(str[1])) continue;
771 hour1=(str[0]-'0')*10+(str[1]-'0');
772 str+=2;
773 if (!isdigit(str[0]) || !isdigit(str[1])) continue;
774 minute1=(str[0]-'0')*10+(str[1]-'0');
775 str+=2;
776
777 period->start.tm_mday=day0;
778 period->start.tm_mon=month0;
779 period->start.tm_year=year0-1900;
780 period->start.tm_hour=hour0;
781 period->start.tm_min=minute0;
782 period->end.tm_mday=day1;
783 period->end.tm_mon=month1;
784 period->end.tm_year=year1-1900;
785 period->end.tm_hour=hour1;
786 period->end.tm_min=minute1;
787 return(0);
788 }
789 return(-1);
fa6552b0 790}
48864d28 791
42b117e3
FM
792void getperiod_fromrange(struct periodstruct *period,int dfrom,int duntil)
793{
9bd92830
FM
794 memset(&period->start,0,sizeof(period->start));
795 period->start.tm_mday=dfrom%100;
796 period->start.tm_mon=(dfrom/100)%100-1;
797 period->start.tm_year=(dfrom/10000)-1900;
42b117e3 798
9bd92830
FM
799 memset(&period->end,0,sizeof(period->end));
800 period->end.tm_mday=duntil%100;
801 period->end.tm_mon=(duntil/100)%100-1;
802 period->end.tm_year=(duntil/10000)-1900;
42b117e3
FM
803}
804
fa6552b0
FM
805int getperiod_buildtext(struct periodstruct *period)
806{
9bd92830
FM
807 int i;
808 int range;
809 char text1[40], text2[40];
810
811 if(df[0]=='u') {
812 i=strftime(text1, sizeof(text1), "%Y %b %d", &period->start);
813 }else if(df[0]=='e') {
814 i=strftime(text1, sizeof(text1), "%d %b %Y", &period->start);
815 } else /*if(df[0]=='w')*/ {
816 IndexTree=INDEX_TREE_FILE;
817 i=strftime(text1, sizeof(text1), "%Y.%U", &period->start);
818 }
819 if (i == 0) return(-1);
820
821 range=(period->start.tm_year!=period->end.tm_year ||
007905af
FM
822 period->start.tm_mon!=period->end.tm_mon ||
823 period->start.tm_mday!=period->end.tm_mday);
9bd92830
FM
824 if (range) {
825 if(df[0]=='u') {
826 i=strftime(text2, sizeof(text2)-i, "%Y %b %d", &period->end);
827 } else if(df[0]=='e') {
828 i=strftime(text2, sizeof(text2)-i, "%d %b %Y", &period->end);
829 } else {
830 i=strftime(text2, sizeof(text2)-i, "%Y.%U", &period->end);
831 }
832 if (i == 0) return(-1);
833 }
834
835 if (range) {
836 snprintf(period->text,sizeof(period->text),"%s-%s",text1,text2);
837 snprintf(period->html,sizeof(period->html),"%s&mdash;%s",text1,text2);
838 } else {
839 strncpy(period->text,text1,sizeof(period->text)-1);
840 period->text[sizeof(period->text)-1]='\0';
841 strncpy(period->html,text1,sizeof(period->html)-1);
842 period->html[sizeof(period->html)-1]='\0';
843 }
844 return(0);
25697a35
GS
845}
846
06ced858 847static void copy_images(void)
25697a35 848{
9bd92830
FM
849 FILE *img_in, *img_ou;
850 char images[512];
851 char imgdir[MAXLEN];
852 char srcfile[MAXLEN];
853 char dstfile[MAXLEN];
854 DIR *dirp;
855 struct dirent *direntp;
856 char buffer[MAXLEN];
857 size_t nread;
858 struct stat info;
859
860 if (snprintf(images,sizeof(images),"%simages",outdir)>=sizeof(images)) {
861 debuga(_("Cannot copy images to target directory %simages\n"),outdir);
862 exit(EXIT_FAILURE);
863 }
864 if (access(images,R_OK)!=0) {
865 mkdir(images,0755);
866 }
867
868 strcpy(imgdir,IMAGEDIR);
869 dirp = opendir(imgdir);
870 if(dirp==NULL) {
871 debuga(_("(util) Can't open directory %s: %s\n"),imgdir,strerror(errno));
872 return;
873 }
874 while ((direntp = readdir( dirp )) != NULL ){
875 if(direntp->d_name[0]=='.')
876 continue;
877 sprintf(srcfile,"%s/%s",imgdir,direntp->d_name);
878 if (stat(srcfile,&info)) {
879 debuga(_("Cannot stat \"%s\" - %s\n"),srcfile,strerror(errno));
880 continue;
881 }
882 if (S_ISREG(info.st_mode)) {
883 sprintf(dstfile,"%s/%s",images,direntp->d_name);
884 img_in = fopen(srcfile, "rb");
885 if(img_in!=NULL) {
886 img_ou = fopen(dstfile, "wb");
887 if(img_ou!=NULL) {
888 while ((nread = fread(buffer,1,sizeof(buffer),img_in))>0) {
889 if (fwrite(buffer,1,nread,img_ou)!=nread) {
890 debuga(_("Failed to copy image %s to %s\n"),srcfile,dstfile);
891 break;
892 }
893 }
894 fclose(img_ou);
895 } else
896 fprintf(stderr,"SARG: (util): %s %s: %s\n", _("Cannot open file")?_("Cannot open file"):"Can't open/create file", dstfile, strerror(errno));
897 fclose(img_in);
898 } else
899 fprintf(stderr,"SARG: (util): %s %s: %s\n", _("Cannot open file")?_("Cannot open file"):"Can't open file", srcfile, strerror(errno));
900 }
901 }
902 (void) closedir(dirp);
903
904 return;
06ced858
FM
905}
906
fa6552b0 907int vrfydir(const struct periodstruct *per1, const char *addr, const char *site, const char *us, const char *form)
06ced858 908{
9bd92830
FM
909 FILE *fp_ou;
910 int num=1, count=0;
911 char wdir[MAXLEN];
912 char dirname2[MAXLEN];
913 int y1, y2;
914 int m1, m2;
915 int d1, d2;
916 int wlen, wlen2;
917 time_t curtime;
918 struct tm *loctm;
919
920 strcpy(wdir,outdir);
921 wlen=strlen(wdir);
922 y1=per1->start.tm_year+1900;
923 y2=per1->end.tm_year+1900;
924 m1=per1->start.tm_mon+1;
925 m2=per1->end.tm_mon+1;
926 d1=per1->start.tm_mday;
927 d2=per1->end.tm_mday;
928 if(IndexTree == INDEX_TREE_DATE) {
929 wlen+=sprintf(wdir+wlen,"%04d",y1);
930 if(y1!=y2) wlen+=sprintf(wdir+wlen,"-%04d",y2);
931 if(access(wdir, R_OK) != 0)
932 my_mkdir(wdir);
933
934 wlen+=sprintf(wdir+wlen,"/%02d",m1);
935 if(m1 != m2) wlen+=sprintf(wdir+wlen,"-%02d",m2);
936 if(access(wdir, R_OK) != 0)
937 my_mkdir(wdir);
938
939 wlen+=sprintf(wdir+wlen,"/%02d",d1);
940 if(d1!=d2) wlen+=sprintf(wdir+wlen,"-%02d",d2);
941 } else {
942 if(df[0] == 'u') {
943 wlen=snprintf(wdir+wlen,sizeof(wdir)-wlen,"%04d%s%02d-%04d%s%02d",y1,
007905af 944 conv_month_name(m1),d1,y2,conv_month_name(m2),d2);
9bd92830
FM
945 } else if(df[0] == 'e') {
946 wlen=snprintf(wdir+wlen,sizeof(wdir)-wlen,"%02d%s%04d-%02d%s%04d",d1,
007905af 947 conv_month_name(m1),y1,d2,conv_month_name(m2),y2);
9bd92830
FM
948 } else if(df[0] == 'w') {
949 wlen2=strftime(wdir+wlen, sizeof(wdir)-wlen, "%Y.%U", &per1->start);
950 if (wlen2==0) return(-1);
951 wlen+=wlen2;
952 }
953 }
954
955 if(us[0] != '\0') {
956 struct userinfostruct *uinfo=userinfo_find_from_id(us);
957 if (uinfo) {
958 strcat(wdir,"-");
959 strcat(wdir,uinfo->filename);
960 }
961 }
962 if(addr[0] != '\0') {
963 strcat(wdir,"-");
964 strcat(wdir,addr);
965 }
966 if(site[0] != '\0') {
967 strcat(wdir,"-");
968 strcat(wdir,site);
969 }
970
971 strcpy(outdirname,wdir);
972
973 if(IndexTree != INDEX_TREE_DATE) {
974 if(!OverwriteReport) {
975 while(num) {
976 if(access(wdir,R_OK) == 0) {
977 sprintf(wdir,"%s.%d",outdirname,num);
978 num++;
979 count++;
980 } else
981 break;
982 }
983
984 if(count > 0) {
985 if(debug)
986 debuga(_("File %s already exists, moved to %s\n"),outdirname,wdir);
987 rename(outdirname,wdir);
988 }
989 } else {
990 if(access(outdirname,R_OK) == 0) {
991 unlinkdir(outdirname,1);
992 }
993 }
994 my_mkdir(outdirname);
995 } else {
996 strcpy(dirname2,wdir);
997 if(!OverwriteReport) {
998 while(num) {
999 if(access(wdir,R_OK) == 0) {
1000 sprintf(wdir,"%s.%d",dirname2,num);
1001 num++;
1002 count++;
1003 } else
1004 break;
1005 }
1006
1007 if(count > 0) {
1008 if(debug)
1009 debuga(_("File %s already exists, moved to %s\n"),dirname2,wdir);
1010 rename(dirname2,wdir);
1011 strcpy(dirname2,wdir);
1012 }
1013 } else {
1014 if(access(wdir,R_OK) == 0) {
1015 unlinkdir(wdir,1);
1016 }
1017 }
1018
1019 if(access(wdir, R_OK) != 0)
1020 my_mkdir(wdir);
1021 }
1022
1023 strcpy(dirname2,wdir);
1024
1025 sprintf(wdir,"%s/sarg-date",outdirname);
1026 if ((fp_ou = fopen(wdir, "wt")) == 0) {
1027 debuga(_("cannot open %s for writing\n"),wdir);
1028 perror("SARG:");
1029 exit(EXIT_FAILURE);
1030 }
1031 time(&curtime);
1032 //strftime(wdir,sizeof(wdir),"%a %b %d %H:%M:%S %Z %Y",localtime(&curtime));
1033 loctm=localtime(&curtime);
1034 strftime(wdir,sizeof(wdir),"%Y-%m-%d %H:%M:%S",loctm);
1035 if (fprintf(fp_ou,"%s %d\n",wdir,loctm->tm_isdst)<0) {
1036 debuga(_("Failed to write the date in %s\n"),wdir);
1037 perror("SARG:");
1038 exit(EXIT_FAILURE);
1039 }
1040 if (fclose(fp_ou)==EOF) {
1041 debuga(_("Failed to write the date in %s\n"),wdir);
1042 perror("SARG:");
1043 exit(EXIT_FAILURE);
1044 }
1045
1046 copy_images();
1047 return(0);
25697a35
GS
1048}
1049
25697a35
GS
1050void strip_latin(char *line)
1051{
9bd92830
FM
1052 int i,j;
1053 int skip;
1054
1055 j=0;
1056 skip=0;
1057 for (i=0;line[i];i++){
1058 if (skip){
1059 if (line[i]==';') skip=0;
1060 } else {
1061 if (line[i]=='&')
1062 skip=1;
1063 else
1064 line[j++]=line[i];
1065 }
1066 }
1067 line[j]='\0';
1068 return;
25697a35
GS
1069}
1070
120d768c 1071void zdate(char *ftime,int ftimesize, const char *DateFormat)
25697a35 1072{
9bd92830
FM
1073 time_t t;
1074 struct tm *local;
25697a35 1075
9bd92830
FM
1076 t = time(NULL);
1077 local = localtime(&t);
1078 if(strcmp(DateFormat,"u") == 0)
1079 strftime(ftime, ftimesize, "%b/%d/%Y %H:%M", local);
1080 if(strcmp(DateFormat,"e") == 0)
1081 strftime(ftime, ftimesize, "%d/%b/%Y-%H:%M", local);
1082 if(strcmp(DateFormat,"w") == 0)
1083 strftime(ftime, ftimesize, "%W-%H-%M", local);
1084 return;
25697a35
GS
1085}
1086
1087
324ba7f3 1088char *fixtime(long long int elap)
25697a35 1089{
9bd92830
FM
1090 int num = elap / 1000;
1091 int hor = 0;
1092 int min = 0;
1093 int sec = 0;
1094 static char buf[12];
25697a35 1095
9bd92830
FM
1096 hor=num / 3600;
1097 min=(num % 3600) / 60;
1098 sec=num % 60;
25697a35 1099
9bd92830
FM
1100 if(hor==0 && min==0 && sec==0)
1101 strcpy(buf,"0");
1102 else
1103 sprintf(buf,"%d:%02d:%02d",hor,min,sec);
25697a35 1104
9bd92830 1105 return buf;
25697a35
GS
1106}
1107
1108
42b117e3 1109void date_from(char *date, int *dfrom, int *duntil)
25697a35 1110{
9bd92830
FM
1111 int d0=0;
1112 int m0=0;
1113 int y0=0;
1114 int d1=0;
1115 int m1=0;
1116 int y1=0;
1117
1118 if (isdigit(date[0])) {
1119 int next=-1;
1120
1121 if (sscanf(date,"%d/%d/%d%n",&d0,&m0,&y0,&next)!=3 || y0<100 || m0<1 || m0>12 || d0<1 || d0>31 || next<0) {
1122 debuga(_("The date passed as argument is not formated as dd/mm/yyyy or dd/mm/yyyy-dd/mm/yyyy\n"));
1123 exit(EXIT_FAILURE);
1124 }
1125 if (date[next]=='-') {
1126 if (sscanf(date+next+1,"%d/%d/%d",&d1,&m1,&y1)!=3 || y1<100 || m1<1 || m1>12 || d1<1 || d1>31) {
1127 debuga(_("The date range passed as argument is not formated as dd/mm/yyyy or dd/mm/yyyy-dd/mm/yyyy\n"));
1128 exit(EXIT_FAILURE);
1129 }
1130 } else if (date[next]!='\0') {
1131 debuga(_("The date range passed as argument is not formated as dd/mm/yyyy or dd/mm/yyyy-dd/mm/yyyy\n"));
1132 exit(EXIT_FAILURE);
1133 } else {
1134 d1=d0;
1135 m1=m0;
1136 y1=y0;
1137 }
1138 } else {
1139 int i;
1140 time_t Today,t1;
1141 struct tm *Date0,Date1;
1142
1143 if (time(&Today)==(time_t)-1) {
1144 debuga(_("Failed to get the current time\n"));
1145 exit(EXIT_FAILURE);
1146 }
1147 if (sscanf(date,"day-%d",&i)==1) {
1148 if (i<0) {
1149 debuga(_("Invalid number of days in -d parameter\n"));
1150 exit(EXIT_FAILURE);
1151 }
1152 Today-=i*24*60*60;
1153 Date0=localtime(&Today);
1154 if (Date0==NULL) {
1155 debuga(_("Cannot convert local time: %s\n"),strerror(errno));
1156 exit(EXIT_FAILURE);
1157 }
1158 y0=y1=Date0->tm_year+1900;
1159 m0=m1=Date0->tm_mon+1;
1160 d0=d1=Date0->tm_mday;
1161 } else if (sscanf(date,"week-%d",&i)==1) {
1162 /*
1163 There is no portable way to find the first day of the week even though the
1164 information is available in the locale. nl_langinfo has the unofficial
1165 parameters _NL_TIME_FIRST_WEEKDAY and _NL_TIME_WEEK_1STDAY but they are
1166 undocumented as is their return value and it is discouraged to use them.
1167 Beside, nl_langinfo isn't available on windows and the first day of the
1168 week isn't available at all on that system.
1169 */
1170 const int FirstWeekDay=1;
1171 time_t WeekBegin;
1172
1173 if (i<0) {
1174 debuga(_("Invalid number of weeks in -d parameter\n"));
1175 exit(EXIT_FAILURE);
1176 }
1177 Date0=localtime(&Today);
1178 if (Date0==NULL) {
1179 debuga(_("Cannot convert local time: %s\n"),strerror(errno));
1180 exit(EXIT_FAILURE);
1181 }
1182 WeekBegin=Today-((Date0->tm_wday-FirstWeekDay+7)%7)*24*60*60;
1183 WeekBegin-=i*7*24*60*60;
1184 Date0=localtime(&WeekBegin);
1185 if (Date0==NULL) {
1186 debuga(_("Cannot convert local time: %s\n"),strerror(errno));
1187 exit(EXIT_FAILURE);
1188 }
1189 y0=Date0->tm_year+1900;
1190 m0=Date0->tm_mon+1;
1191 d0=Date0->tm_mday;
1192 WeekBegin+=6*24*60*60;
1193 Date0=localtime(&WeekBegin);
1194 if (Date0==NULL) {
1195 debuga(_("Cannot convert local time: %s\n"),strerror(errno));
1196 exit(EXIT_FAILURE);
1197 }
1198 y1=Date0->tm_year+1900;
1199 m1=Date0->tm_mon+1;
1200 d1=Date0->tm_mday;
1201 } else if (sscanf(date,"month-%d",&i)==1) {
1202 if (i<0) {
1203 debuga(_("Invalid number of months in -d parameter\n"));
1204 exit(EXIT_FAILURE);
1205 }
1206 Date0=localtime(&Today);
1207 if (Date0==NULL) {
1208 debuga(_("Cannot convert local time: %s\n"),strerror(errno));
1209 exit(EXIT_FAILURE);
1210 }
1211 if (Date0->tm_mon<i%12) {
1212 y0=Date0->tm_year+1900-i/12-1;
1213 m0=(Date0->tm_mon+12-i%12)%12+1;
1214 d0=1;
1215 } else {
1216 y0=Date0->tm_year+1900-i/12;
1217 m0=Date0->tm_mon-i%12+1;
1218 d0=1;
1219 }
1220 memcpy(&Date1,Date0,sizeof(struct tm));
1221 Date1.tm_isdst=-1;
1222 Date1.tm_mday=1;
1223 if (m0<12) {
1224 Date1.tm_mon=m0;
1225 Date1.tm_year=y0-1900;
1226 } else {
1227 Date1.tm_mon=0;
1228 Date1.tm_year=y0-1900+1;
1229 }
1230 t1=mktime(&Date1);
1231 t1-=24*60*60;
1232 Date0=localtime(&t1);
1233 y1=Date0->tm_year+1900;
1234 m1=Date0->tm_mon+1;
1235 d1=Date0->tm_mday;
1236 } else {
1237 debuga(_("Invalid date range passed on command line\n"));
1238 exit(EXIT_FAILURE);
1239 }
1240 }
1241
1242 *dfrom=y0*10000+m0*100+d0;
1243 *duntil=y1*10000+m1*100+d1;
1244 sprintf(date,"%02d/%02d/%04d-%02d/%02d/%04d",d0,m0,y0,d1,m1,y1);
1245 return;
25697a35
GS
1246}
1247
1248
1249char *strlow(char *string)
1250{
9bd92830 1251 char *s;
25697a35 1252
9bd92830
FM
1253 if (string)
1254 {
1255 for (s = string; *s; ++s)
1256 *s = tolower(*s);
1257 }
25697a35 1258
9bd92830 1259 return string;
25697a35
GS
1260}
1261
1262
1263
1264
1265char *strup(char *string)
1266{
9bd92830 1267 char *s;
25697a35 1268
9bd92830
FM
1269 if (string)
1270 {
1271 for (s = string; *s; ++s)
1272 *s = toupper(*s);
1273 }
25697a35 1274
9bd92830 1275 return string;
25697a35
GS
1276}
1277
1278
32e71fa4 1279void removetmp(const char *outdir)
25697a35 1280{
9bd92830
FM
1281 FILE *fp_in;
1282 char warea[256];
1283 char buf[MAXLEN];
1284 long pos;
1285
1286 if(!RemoveTempFiles)
1287 return;
1288
1289 if(debug) {
1290 debuga(_("Purging temporary file sarg-general\n"));
1291 }
1292 if (snprintf(warea,sizeof(warea),"%s/sarg-general",outdir)>=sizeof(warea)) {
1293 debuga(_("(removetmp) directory too long to remove %s/sarg-period\n"),outdir);
1294 exit(EXIT_FAILURE);
1295 }
1296 if((fp_in=fopen(warea,"r+"))==NULL){
1297 debuga(_("(removetmp) Cannot open file %s\n"),warea);
1298 exit(EXIT_FAILURE);
1299 }
1300 while(fgets(buf,sizeof(buf),fp_in)!=NULL) {
1301 if(strncmp(buf,"TOTAL",5) == 0 && (buf[6]=='\t' || buf[6]==' '))
1302 break;
1303 }
1304 if (fseek(fp_in,0,SEEK_SET)==-1) {
1305 debuga(_("Failed to rewind to the beginning of the file %s: %s\n"),warea,strerror(errno));
1306 exit(EXIT_FAILURE);
1307 }
1308
1309 if (fputs(buf,fp_in)==EOF) {
1310 debuga(_("Failed to write the total line in %s - %s\n"),warea,strerror(errno));
1311 exit(EXIT_FAILURE);
1312 }
1313 pos=ftell(fp_in);
1314 if (pos>0 && ftruncate(fileno(fp_in),pos)==-1) {
1315 debuga(_("Failed to truncate %s: %s\n"),warea,strerror(errno));
1316 exit(EXIT_FAILURE);
1317 }
1318 if (fclose(fp_in)==EOF) {
1319 debuga(_("Failed to close %s after writing the total line - %s\n"),warea,strerror(errno));
1320 exit(EXIT_FAILURE);
1321 }
1322
1323 return;
25697a35
GS
1324}
1325
48864d28 1326void load_excludecodes(const char *ExcludeCodes)
25697a35 1327{
9bd92830
FM
1328 FILE *fp_in;
1329 char data[80];
1330 int i;
1331 int Stored;
1332 long int MemSize;
1333
1334 if(ExcludeCodes[0] == '\0')
1335 return;
1336
1337 if((fp_in=fopen(ExcludeCodes,"r"))==NULL) {
1338 debuga(_("(util) Cannot open file %s (exclude_codes)\n"),ExcludeCodes);
1339 exit(EXIT_FAILURE);
1340 }
1341
1342 if (fseek(fp_in, 0, SEEK_END)==-1) {
1343 debuga(_("Failed to move till the end of the excluded codes file %s: %s\n"),ExcludeCodes,strerror(errno));
1344 exit(EXIT_FAILURE);
1345 }
1346 MemSize = ftell(fp_in);
1347 if (MemSize<0) {
1348 debuga(_("Cannot get the size of file %s\n"),ExcludeCodes);
1349 exit(EXIT_FAILURE);
1350 }
1351 if (fseek(fp_in, 0, SEEK_SET)==-1) {
1352 debuga(_("Failed to rewind the excluded codes file %s: %s\n"),ExcludeCodes,strerror(errno));
1353 exit(EXIT_FAILURE);
1354 }
1355
1356 MemSize+=1;
1357 if((excludecode=(char *) malloc(MemSize))==NULL) {
1358 debuga(_("malloc error (%ld)\n"),MemSize);
1359 exit(EXIT_FAILURE);
1360 }
1361 memset(excludecode,0,MemSize);
1362
1363 Stored=0;
1364 while(fgets(data,sizeof(data),fp_in)!=NULL) {
1365 if (data[0]=='#') continue;
1366 for (i=strlen(data)-1 ; i>=0 && (unsigned char)data[i]<=' ' ; i--) data[i]='\0';
1367 if (i<0) continue;
1368 if (Stored+i+2>=MemSize) {
1369 debuga(_("Too many codes to exclude in file %s\n"),ExcludeCodes);
1370 break;
1371 }
1372 strcat(excludecode,data);
1373 strcat(excludecode,";");
1374 Stored+=i+1;
1375 }
1376
1377 fclose(fp_in);
1378 return;
25697a35
GS
1379}
1380
48864d28
FM
1381void free_excludecodes(void)
1382{
9bd92830
FM
1383 if (excludecode) {
1384 free(excludecode);
1385 excludecode=NULL;
1386 }
48864d28
FM
1387}
1388
32e71fa4 1389int vercode(const char *code)
25697a35 1390{
9bd92830
FM
1391 char *cod;
1392 int clen;
48864d28 1393
9bd92830
FM
1394 if (excludecode && excludecode[0]!='\0') {
1395 clen=strlen(code);
1396 cod=excludecode;
1397 while (cod) {
1398 if (strncmp(code,cod,clen)==0 && cod[clen]==';')
1399 return 1;
1400 cod=strchr(cod,';');
1401 if (cod) cod++;
1402 }
1403 }
1404 return 0;
25697a35
GS
1405}
1406
1407void fixnone(char *str)
1408{
9bd92830 1409 int i;
32e71fa4 1410
9bd92830
FM
1411 for (i=strlen(str)-1 ; i>=0 && (unsigned char)str[i]<=' ' ; i--);
1412 if(i==3 && strncmp(str,"none",4) == 0)
1413 str[0]='\0';
25697a35 1414
9bd92830 1415 return;
25697a35
GS
1416}
1417
2357ef77
FM
1418void fixendofline(char *str)
1419{
9bd92830 1420 int i;
2357ef77 1421
9bd92830 1422 for (i=strlen(str)-1 ; i>=0 && (unsigned char)str[i]<=' ' ; i--) str[i]=0;
2357ef77
FM
1423}
1424
25697a35 1425#ifdef LEGACY_TESTVALIDUSERCHAR
32e71fa4 1426int testvaliduserchar(const char *user)
25697a35 1427{
9bd92830
FM
1428 int x=0;
1429 int y=0;
25697a35 1430
9bd92830
FM
1431 for (y=0; y<strlen(UserInvalidChar); y++) {
1432 for (x=0; x<strlen(user); x++) {
1433 if(user[x] == UserInvalidChar[y])
1434 return 1;
1435 }
1436 }
1437 return 0;
25697a35
GS
1438}
1439#else
32e71fa4 1440int testvaliduserchar(const char *user)
25697a35 1441{
9bd92830
FM
1442 char * p_UserInvalidChar = UserInvalidChar ;
1443 const char * p_user ;
25697a35 1444
9bd92830
FM
1445 while( *p_UserInvalidChar ) {
1446 p_user = user ;
1447 while ( *p_user ) {
1448 if( *p_UserInvalidChar == *p_user )
1449 return 1;
1450 p_user++ ;
1451 }
1452 p_UserInvalidChar++ ;
1453 }
1454 return 0;
25697a35
GS
1455}
1456#endif
1457
1458int compar( const void *a, const void *b )
9bd92830
FM
1459{
1460 if( *(int *)a > *(int *)b ) return 1;
1461 if( *(int *)a < *(int *)b ) return -1;
1462 return 0;
25697a35
GS
1463}
1464
1465int getnumlist( char *buf, numlist *list, const int len, const int maxvalue )
48864d28 1466{
9bd92830
FM
1467 int i, j, d, flag, r1, r2;
1468 char *pbuf, **bp, *strbufs[ 24 ];
1469
1470 bp = strbufs;
1471 strtok( buf, " \t" );
1472 for( *bp = strtok( NULL, "," ), list->len = 0; *bp; *bp = strtok( NULL, "," ) ) {
1473 if( ++bp >= &strbufs[ 24 ] )
1474 break;
1475 list->len++;
1476 }
1477 if( ! list->len )
1478 return -1;
1479 d = 0;
1480 for( i = 0; i < list->len; i++ ) {
1481 if( strchr( strbufs[ i ], '-' ) != 0 ) {
1482 pbuf = strbufs[ i ];
1483 strtok( pbuf, "-" );
1484 pbuf = strtok( NULL, "\0" );
1485 r1 = atoi( strbufs[ i ] );
1486 if( ( r2 = atoi( pbuf ) ) >= maxvalue || r1 >= r2 )
1487 return -1;
1488 if( i + d + ( r2 - r1 ) + 1 <= len ) {
1489 for( j = r1; j <= r2; j++ )
1490 list->list[ i + d++ ] = j;
1491 d--;
1492 }
1493 }
1494 else
1495 if( ( list->list[ i + d ] = atoi( strbufs[ i ] ) ) >= maxvalue )
1496 return 1;
1497 }
1498 list->len += d;
1499 qsort( list->list, list->len, sizeof( int ), compar );
1500 do {
1501 flag = 0;
1502 for( i = 0; i < list->len - 1; i++ )
1503 if( list->list[ i ] == list->list[ i + 1 ] ) {
1504 for( j = i + 1; j < list->len; j++ )
1505 list->list[ j - 1 ] = list->list[ j ];
1506 list->len--;
1507 flag = 1;
1508 break;
1509 }
1510 } while( flag );
1511 return 0;
25697a35
GS
1512}
1513
1514
32e71fa4 1515char *get_size(const char *path, const char *file)
491b862f 1516{
9bd92830
FM
1517 FILE *fp;
1518 static char response[255];
1519 char cmd[255];
1520 char *ptr;
1521
1522 if (snprintf(cmd,sizeof(cmd),"du -skh %s%s",path,file)>=sizeof(cmd)) {
1523 debuga(_("Cannot get disk space because the path %s%s is too long\n"),path,file);
1524 exit(EXIT_FAILURE);
1525 }
1526 if ((fp = popen(cmd, "r")) == NULL) {
1527 debuga(_("Cannot get disk space with command %s\n"),cmd);
1528 exit(EXIT_FAILURE);
1529 }
1530 if (!fgets(response, sizeof(response), fp)) {
1531 debuga(_("Cannot get disk size with command %s\n"),cmd);
1532 exit(EXIT_FAILURE);
1533 }
1534 ptr=strchr(response,'\t');
1535 if (ptr==NULL) {
1536 debuga(_("The command %s failed\n"),cmd);
1537 exit(EXIT_FAILURE);
1538 }
1539 pclose(fp);
1540 *ptr='\0';
1541
1542 return (response);
491b862f
GS
1543}
1544
dfb337be
FM
1545void show_info(FILE *fp_ou)
1546{
9bd92830 1547 char ftime[127];
dfb337be 1548
9bd92830
FM
1549 if(!ShowSargInfo) return;
1550 zdate(ftime, sizeof(ftime), DateFormat);
1551 fprintf(fp_ou,"<div class=\"info\">%s <a href='%s'>%s-%s</a> %s %s</div>\n",_("Generated by"),URL,PGM,VERSION,_("on"),ftime);
dfb337be
FM
1552}
1553
c0ec9cc7 1554void show_sarg(FILE *fp_ou, int depth)
dfb337be 1555{
9bd92830 1556 int i;
c0ec9cc7 1557
9bd92830
FM
1558 if(!ShowSargLogo) return;
1559 fputs("<div class=\"logo\"><a href=\"http://sarg.sourceforge.net\"><img src=\"",fp_ou);
1560 for (i=0 ; i<depth ; i++)
1561 fputs("../",fp_ou);
1562 fputs("images/sarg.png\" title=\"SARG, Squid Analysis Report Generator. Logo by Osamu Matsuzaki\" alt=\"Sarg\"></a>&nbsp;Squid Analysis Report Generator</div>\n",fp_ou);
dfb337be
FM
1563}
1564
1565void write_logo_image(FILE *fp_ou)
1566{
9bd92830
FM
1567 if(LogoImage[0]!='\0')
1568 fprintf(fp_ou, "<div class=\"logo\"><img src=\"%s\" width=\"%s\" height=\"%s\" alt=\"Logo\">&nbsp;%s</div>\n",LogoImage,Width,Height,LogoText);
dfb337be 1569}
491b862f 1570
2e96438d 1571void write_html_head(FILE *fp_ou, int depth, const char *page_title,int javascript)
491b862f 1572{
9bd92830 1573 int i;
2e96438d 1574
9bd92830
FM
1575 fputs("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/html4/strict.dtd\">\n<html>\n",fp_ou);
1576 fprintf(fp_ou, "<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=%s\">\n",CharSet);
1577 if (page_title) fprintf(fp_ou,"<title>%s</title>\n",page_title);
1578 css(fp_ou);
1579 if ((javascript & HTML_JS_SORTTABLE)!=0 && SortTableJs[0]) {
1580 fputs("<script type=\"text/javascript\" src=\"",fp_ou);
1581 if (strncmp(SortTableJs,"../",3)==0) {
1582 for (i=0 ; i<depth ; i++) fputs("../",fp_ou);
1583 }
1584 fputs(SortTableJs,fp_ou);
1585 fputs("\"></script>\n",fp_ou);
1586 }
1587 fputs("</head>\n<body>\n",fp_ou);
7f2382f6
FM
1588}
1589
2e96438d 1590void write_html_header(FILE *fp_ou, int depth, const char *page_title,int javascript)
7f2382f6 1591{
9bd92830
FM
1592 write_html_head(fp_ou,depth,page_title,javascript);
1593 write_logo_image(fp_ou);
1594 show_sarg(fp_ou, depth);
1595 fprintf(fp_ou,"<div class=\"title\"><table cellpadding=\"0\" cellspacing=\"0\">\n<tr><th class=\"title_c\">%s</th></tr>\n",Title);
c0ec9cc7
FM
1596}
1597
1598void close_html_header(FILE *fp_ou)
1599{
9bd92830 1600 fputs("</table></div>\n",fp_ou);
c0ec9cc7
FM
1601}
1602
fa6552b0 1603int write_html_trailer(FILE *fp_ou)
c0ec9cc7 1604{
9bd92830
FM
1605 show_info(fp_ou);
1606 if (fputs("</body>\n</html>\n",fp_ou)==EOF) return(-1);
1607 return(0);
dfb337be
FM
1608}
1609
ac422f9b 1610void output_html_string(FILE *fp_ou,const char *str,int maxlen)
dfb337be 1611{
9bd92830
FM
1612 int i=0;
1613
1614 while (*str && (maxlen<=0 || i<maxlen)) {
1615 switch (*str) {
1616 case '&':
1617 fputs("&amp;",fp_ou);
1618 break;
1619 case '<':
1620 fputs("&lt;",fp_ou);
1621 break;
1622 case '>':
1623 fputs("&gt;",fp_ou);
1624 break;
1625 case '"':
1626 fputs("&quot;",fp_ou);
1627 break;
1628 case '\'':
1629 fputs("&#39;",fp_ou);
1630 break;
1631 default:
1632 fputc(*str,fp_ou);
1633 }
1634 str++;
1635 i++;
1636 }
1637 if (maxlen>0 && i>=maxlen)
1638 fputs("&hellip;",fp_ou);
ac422f9b
FM
1639}
1640
1641void output_html_url(FILE *fp_ou,const char *url)
1642{
9bd92830
FM
1643 while (*url) {
1644 if (*url=='&')
1645 fputs("&amp;",fp_ou);
1646 else
1647 fputc(*url,fp_ou);
1648 url++;
1649 }
491b862f
GS
1650}
1651
f84a35a3
FM
1652void url_hostname(const char *url,char *hostname,int hostsize)
1653{
9bd92830 1654 int i;
f84a35a3 1655
9bd92830
FM
1656 hostsize--;
1657 for (i=0 ; i<hostsize && url[i] && url[i]!='/' ; i++)
1658 hostname[i]=url[i];
1659 hostname[i]='\0';
f84a35a3 1660}
491b862f 1661
48864d28 1662void url_module(const char *url, char *w2)
25697a35 1663{
9bd92830
FM
1664 int x, y;
1665 char w[255];
25697a35 1666
9bd92830
FM
1667 y=0;
1668 for(x=strlen(url)-1; x>=0; x--) {
1669 if(url[x] == '/' || y>=sizeof(w)-1) break;
1670 w[y++]=url[x];
1671 }
1672 if (x<0) {
1673 w2[0]='\0';
1674 return;
1675 }
25697a35 1676
9bd92830
FM
1677 x=0;
1678 for(y=y-1; y>=0; y--) {
1679 w2[x++]=w[y];
1680 }
1681 w2[x]='\0';
25697a35
GS
1682}
1683
e5b2c6f0
FM
1684void url_to_file(const char *url,char *file,int filesize)
1685{
9bd92830 1686 int i,skip;
e5b2c6f0 1687
9bd92830
FM
1688 filesize--;
1689 skip=0;
1690 for(i=0; i<filesize && *url; url++) {
1691 if(isalnum(*url) || *url=='-' || *url=='_' || *url=='.' || *url=='%') {
1692 file[i++]=*url;
1693 skip=0;
1694 } else {
1695 if (!skip) file[i++]='_';
1696 skip=1;
1697 }
1698 }
1699 file[i]='\0';
e5b2c6f0 1700}
d6e703cc 1701
32e71fa4 1702void version(void)
25697a35 1703{
9bd92830
FM
1704 printf(_("SARG Version: %s\n"),VERSION);
1705 exit(EXIT_SUCCESS);
25697a35 1706}
5f3cfd1d
FM
1707
1708char *get_param_value(const char *param,char *line)
1709{
9bd92830 1710 int plen;
2357ef77 1711
9bd92830
FM
1712 while (*line==' ' || *line=='\t') line++;
1713 plen=strlen(param);
1714 if (strncasecmp(line,param,plen)) return(NULL);
1715 if (line[plen]!=' ' && line[plen]!='\t') return(NULL);
1716 line+=plen;
1717 while (*line==' ' || *line=='\t') line++;
1718 return(line);
5f3cfd1d 1719}
936c9905 1720
51465d08 1721void unlinkdir(const char *dir,int contentonly)
304a739d 1722{
9bd92830
FM
1723 struct stat st;
1724 DIR *dirp;
1725 struct dirent *direntp;
1726 char dname[MAXLEN];
1727 int err;
1728
1729 dirp=opendir(dir);
1730 if (!dirp) return;
1731 while ((direntp = readdir(dirp)) != NULL) {
1732 if (direntp->d_name[0] == '.' && (direntp->d_name[1] == '\0' ||
007905af 1733 (direntp->d_name[1] == '.' && direntp->d_name[2] == '\0')))
9bd92830
FM
1734 continue;
1735 if (snprintf(dname,sizeof(dname),"%s/%s",dir,direntp->d_name)>=sizeof(dname)) {
1736 debuga(_("directory name to delete too long: %s/%s\n"),dir,direntp->d_name);
1737 exit(EXIT_FAILURE);
1738 }
463f8e09 1739#ifdef HAVE_LSTAT
9bd92830 1740 err=lstat(dname,&st);
463f8e09 1741#else
9bd92830 1742 err=stat(dname,&st);
463f8e09 1743#endif
9bd92830
FM
1744 if (err) {
1745 debuga(_("cannot stat %s\n"),dname);
1746 exit(EXIT_FAILURE);
1747 }
1748 if (S_ISREG(st.st_mode)) {
1749 if (unlink(dname)) {
1750 debuga(_("cannot delete %s - %s\n"),dname,strerror(errno));
1751 exit(EXIT_FAILURE);
1752 }
1753 } else if (S_ISDIR(st.st_mode)) {
1754 unlinkdir(dname,0);
1755 } else {
1756 debuga(_("unknown path type %s\n"),dname);
1757 }
1758 }
1759 closedir(dirp);
1760
1761 if (!contentonly) {
1762 if (rmdir(dir)) {
1763 debuga(_("cannot delete %s - %s\n"),dir,strerror(errno));
1764 exit(EXIT_FAILURE);
1765 }
1766 }
51465d08 1767}
ac422f9b 1768