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