]> git.ipfire.org Git - thirdparty/sarg.git/blobdiff - smartfilter.c
Add support to decompress xz files
[thirdparty/sarg.git] / smartfilter.c
index e39ec6bc9e6920d503dc57f7eb5ae3b1ceeb759b..33ce33d9c81a1c744e8f713246dca24216659d6c 100644 (file)
@@ -1,10 +1,11 @@
 /*
- * AUTHOR: Pedro Lineu Orso                         pedro.orso@gmail.com
- *                                                            1998, 2008
  * SARG Squid Analysis Report Generator      http://sarg.sourceforge.net
+ *                                                            1998, 2015
  *
  * SARG donations:
  *      please look at http://sarg.sourceforge.net/donations.php
+ * Support:
+ *     http://sourceforge.net/projects/sarg/forums/forum/363374
  * ---------------------------------------------------------------------
  *
  *  This program is free software; you can redistribute it and/or modify
 
 void smartfilter_report(void)
 {
-
-   FILE *fp_in = NULL, *fp_ou = NULL, *fp_user = NULL;
-      
-   char url[MAXLEN];
-   char csort[255];
-   char smart_in[MAXLEN];
-   char smart_ou[MAXLEN];
-   char per[MAXLEN];
-   char sites[MAXLEN];
-   char report[MAXLEN];
-   char period[100];
-   char ip[MAXLEN];
-   char user[MAXLEN];
-   char ouser[MAXLEN];
-   char data[15];
-   char hora[15];
-   char smartcat[256];
-   char smartheader[15];
-   char ftime[128];
-   char smartuser[MAXLEN];
-   char *str;
-   int  fuser=0;
-   int cstatus;
-
-   ouser[0]='\0';
-
-   sprintf(smartheader,"%s",text[116]);
-   strup(smartheader);
-
-   sprintf(smart_in,"%s/smartfilter.unsort",dirname);
-   sprintf(sites,"%s/sarg-sites",dirname);
-   sprintf(smart_ou,"%s/smartfilter.log",dirname);
-   sprintf(per,"%s/sarg-period",dirname);
-   sprintf(report,"%s/smartfilter.html",dirname);
-
-   if ((fp_in = fopen(per, "r")) == 0) {
-      fprintf(stderr, "SARG: (smartfilter) %s: %s\n",text[45],per);
-      exit(1);
-   }
-
-   if (!fgets(period,sizeof(period),fp_in)) {
-      fprintf(stderr,"SARG: (smartfilter) read error in %s\n",per);
-      exit(1);
-   }
-   fclose(fp_in);
-
-   if (snprintf(csort,sizeof(csort),"sort -n -k 1,1 -k 2,2 -k 3,3 -o \"%s\" \"%s\"",smart_ou,smart_in)>=sizeof(csort)) {
-      fprintf(stderr,"SARG: cannot sort file %s\n",smart_in);
-      exit(1);
-   }
-   cstatus=system(csort);
-   if (!WIFEXITED(cstatus) || WEXITSTATUS(cstatus)) {
-      fprintf(stderr, "SARG: sort command return status %d\n",WEXITSTATUS(cstatus));
-      fprintf(stderr, "SARG: sort command: %s\n",csort);
-      exit(1);
-   }
-   if((fp_in=fopen(smart_ou,"r"))==NULL) {
-      fprintf(stderr, "SARG: (smartfilter) %s: %s\n",text[8],smart_ou);
-      fprintf(stderr, "SARG: sort command: %s\n",csort);
-      exit(1);
-   }
-   unlink(smart_in);
-
-   if((fp_ou=fopen(report,"w"))==NULL) {
-     fprintf(stderr, "SARG: (smartfilter) %s: %s\n",text[8],report);
-     exit(1);
-   }
-
-   fprintf(fp_ou, "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<html>\n<head>\n  <meta http-equiv=\"Content-Type\" content=\"text/html; charset=%s\">\n",CharSet);
-   fputs("</head>\n",fp_ou);
-   if(strlen(FontFace) > 0) fprintf(fp_ou,"<font face=%s>\n",FontFace);
-   fprintf(fp_ou,"<body bgcolor=\"%s\" text=\"%s\" background=\"%s\">\n",BgColor,TxColor,BgImage);
-   fputs("<div align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\">\n",fp_ou);
-   write_logo_image(fp_ou);
-
-   fprintf(fp_ou,"<tr><th align=\"center\"><b><font color=\"%s\" size=\"+1\">%s</font></b></th></tr>\n",TiColor,Title);
-   fprintf(fp_ou,"<tr><td align=\"center\" bgcolor=\"%s\"><font size=\"%s\">%s: %s</font></td></tr>\n",HeaderBgColor,FontSize,text[89],period);
-   fprintf(fp_ou,"<tr><th bgcolor=\"%s\" align=\"center\"><font size=\"%s\">%s</font></th></tr>\n",HeaderBgColor,FontSize,text[116]);
-   fputs("</table></div>\n",fp_ou);
-
-   fputs("<div align=\"center\"><table cellpadding=\"0\" cellspacing=\"2\">\n",fp_ou);
-   fputs("<tr><td></td></tr>\n",fp_ou);
-   fputs("<tr><td></td></tr>\n",fp_ou);
-   fputs("<tr><td></td></tr>\n",fp_ou);
-   fprintf(fp_ou,"<tr><th bgcolor=%s><font size=\"%s\">%s</font></th><th bgcolor=\"%s\"><font size=\"%s\">%s</font></th><th bgcolor=\"%s\"><font size=\"%s\">%s</font></th><th bgcolor=\"%s\"><font size=\"%s\">%s</font></th><th bgcolor=\"%s\"><font size=\"%s\">%s</font></th></tr>\n",HeaderBgColor,FontSize,text[98],HeaderBgColor,FontSize,text[111],HeaderBgColor,FontSize,text[110],HeaderBgColor,FontSize,text[91],HeaderBgColor,FontSize,smartheader);
-
-   while(fgets(buf,sizeof(buf),fp_in)!=NULL) {
-      if (getword(user,sizeof(user),buf,' ')<0 || getword(data,sizeof(data),buf,' ')<0 ||
-          getword(hora,sizeof(hora),buf,' ')<0 || getword(ip,sizeof(ip),buf,' ')<0 ||
-          getword(url,sizeof(url),buf,' ')<0 || getword(smartcat,sizeof(smartcat),buf,'\n')<0) {
-         printf("SARG: Maybe you have a broken record or garbage in your %s file.\n",smart_ou);
-         exit(1);
-      }
-
-      if((str=(char *) strstr(user, "_")) != (char *) NULL ) {
-         if((str=(char *) strstr(str+1, "_")) != (char *) NULL )
-            fixip(user);
-      }
-
-      if(strcmp(ouser,user) != 0) {
-         strcpy(ouser,user);
-         sprintf(smartuser,"%s/denied_%s.html",dirname,user);
-         if(fuser) {
-            fuser=0;
-            fputs("</table>\n",fp_user);
-            if(strcmp(ShowSargInfo,"yes") == 0) {
-               zdate(ftime, DateFormat);
-               fprintf(fp_user,"<br><br><div align=\"center\"><font size=\"-2\">%s <a href=\"%s\">%s-%s</a> %s %s</font></div>\n",text[108],URL,PGM,VERSION,text[109],ftime);
-            }
-            fputs("</body>\n</html>\n",fp_user);
-            fclose(fp_user);
-         }
-         if ((fp_user = fopen(smartuser, "a")) == 0) {
-            fprintf(stderr, "SARG: (smartfilter) %s: %s\n",text[45],smartuser);
-            exit(1);
-         }
-         fuser=1;
-
-         fputs("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"",fp_ou);
-         fputs(" \"http://www.w3.org/TR/html4/loose.dtd\">\n",fp_ou);
-         fputs("<html>\n",fp_user);
-         fputs("<head>\n",fp_user);
-         fprintf(fp_user,"  <meta http-equiv=\"Content-Type\" content=\"text/html; charset=%s\">\n",CharSet);
-         fputs("</head>\n",fp_user);
-
-         if(strlen(FontFace) > 0) {
-            /*
-            Before merging the sprintf and the fputs, the code looked like this:
-            sprintf(html2,"<font face=%s>\n",FontFace);
-            fputs(url,fp_user);
-            The two lines don't use the same buffer so the string formated by sprintf is not the string
-            written to fp_user. I (fmarchal) assumed it was a typo and replaced it by a fprintf but
-            that font tag is not valid outside of the body. So, the generated html was likely
-            containing garbage not rendered by the browser.
-            */
-            fprintf(fp_user,"<font face=%s>\n",FontFace);
-         }
-         fprintf(fp_user,"<body bgcolor=\"%s\" text=\"%s\" background=\"%s\">\n",BgColor,TxColor,BgImage);
-         fputs("<div align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\">\n",fp_user);
-         if(LogoImage[0]!='\0') fprintf(fp_user,"<tr><th align=left><img src=\"%s\" border=\"0\" align=\"absmiddle\" width=\"%s\" height=\"%s\"><font color=\"%s\">%s</font>\n",LogoImage,Width,Height,LogoTextColor,LogoText);
-         fprintf(fp_user,"<tr><th align=\"center\"><b><font color=\"%s\" size=\"+1\">%s</font></b></th></tr>\n",TiColor,Title);
-         fprintf(fp_user,"<tr><td align=center bgcolor=%s><font size=%s>%s: %s</font></td></tr>\n",HeaderBgColor,FontSize,text[89],period);
-         fprintf(fp_user,"<tr><td align=center bgcolor=%s><font size=%s>%s:</font><font size=%s> %s</font></td></tr>\n",HeaderBgColor,FontSize,text[90],FontSize,user);
-         fputs("</table></div>\n",fp_user);
-         fputs("<div align=\"center\"><table cellpadding=0 cellspacing=2>\n",fp_user);
-         fputs("<tr><td></td></tr>\n",fp_user);
-         fputs("<tr><td></td></tr>\n",fp_user);
-         fputs("<tr><td></td></tr>\n",fp_user);
-         fprintf(fp_user,"<tr><th bgcolor=%s><font size=%s>%s</font></th><th bgcolor=%s><font size=%s>%s</font></th><th bgcolor=%s><font size=%s>%s</font></th><th bgcolor=%s><font size=%s>%s</font></th><th bgcolor=%s><font size=%s>%s</font></th></tr>\n",HeaderBgColor,FontSize,text[98],HeaderBgColor,FontSize,text[111],HeaderBgColor,FontSize,text[110],HeaderBgColor,FontSize,text[91],HeaderBgColor,FontSize,smartheader);
-      }
-      fprintf(fp_user,"<tr><td bgcolor=%s align=center><font size=%s>%s</font></td><td bgcolor=%s align=center><font size=%s>%s</font></td><td bgcolor=%s align=center><font size=%s>%s-%s</font></td><td bgcolor=%s><font size=%s>%s</font></td><td bgcolor=%s><font size=%s>%s</font></td></th>\n",TxBgColor,FontSize,user,TxBgColor,FontSize,ip,TxBgColor,FontSize,data,hora,TxBgColor,FontSize,url,TxBgColor,FontSize,smartcat);
-
-      fprintf(fp_ou,"<tr><td bgcolor=%s align=center><font size=%s>%s</font></td><td bgcolor=%s align=center><font size=%s>%s</font></td><td bgcolor=%s align=center><font size=%s>%s-%s</font></td><td bgcolor=%s><font size=%s>%s</font></td><td bgcolor=%s><font size=%s>%s</font></td></th>\n",TxBgColor,FontSize,user,TxBgColor,FontSize,ip,TxBgColor,FontSize,data,hora,TxBgColor,FontSize,url,TxBgColor,FontSize,smartcat);
-   }
-
-   fputs("</table>\n",fp_ou);
-
-   if(strcmp(ShowSargInfo,"yes") == 0) {
-      zdate(ftime, DateFormat);
-      fprintf(fp_ou,"<br><br><div align=\"center\"><font size=\"-2\">%s <a href=\"%s\">%s-%s</a> %s %s</font></div>\n",text[108],URL,PGM,VERSION,text[109],ftime);
-   }
-
-   fputs("</body>\n</html>\n",fp_user);
-
-   fclose(fp_ou);
-   if(fp_user) {
-      fputs("</table>\n",fp_user);
-      if(strcmp(ShowSargInfo,"yes") == 0) {
-         zdate(ftime, DateFormat);
-         fprintf(fp_user,"<br><br><div align=\"center\"><font size=\"-2\">%s <a href=\"%s\">%s-%s</a> %s %s</font></div>\n",text[108],URL,PGM,VERSION,text[109],ftime);
-      }
-      fputs("</body>\n</html>\n",fp_user);
-      fclose(fp_user);
-   }
-
-   return;
+       FILE *fp_in = NULL, *fp_ou = NULL, *fp_user = NULL;
+
+       char buf[MAXLEN];
+       char url[MAXLEN];
+       char csort[255];
+       char smart_in[MAXLEN];
+       char smart_ou[MAXLEN];
+       char sites[MAXLEN];
+       char report[MAXLEN];
+       char ip[MAXLEN];
+       char user[MAXLEN];
+       char ouser[MAXLEN];
+       char data[15];
+       char hora[15];
+       char smartcat[256];
+       char ftime[128];
+       char smartuser[MAXLEN];
+       int cstatus;
+       struct getwordstruct gwarea;
+       const struct userinfostruct *uinfo;
+
+       ouser[0]='\0';
+
+       if (snprintf(smart_in,sizeof(smart_in),"%s/smartfilter.int_unsort",tmp)>=sizeof(smart_in)) {
+               debuga(__FILE__,__LINE__,_("Path too long: "));
+               debuga_more("%s/smartfilter.int_unsort\n",tmp);
+               exit(EXIT_FAILURE);
+       }
+       if (snprintf(sites,sizeof(sites),"%s/sarg-sites",outdirname)>=sizeof(sites)) {
+               debuga(__FILE__,__LINE__,_("Path too long: "));
+               debuga_more("%s/sarg-sites\n",outdirname);
+               exit(EXIT_FAILURE);
+       }
+       if (snprintf(smart_ou,sizeof(smart_ou),"%s/smartfilter.int_log",tmp)>=sizeof(smart_ou)) {
+               debuga(__FILE__,__LINE__,_("Path too long: "));
+               debuga_more("%s/smartfilter.int_log\n",tmp);
+               exit(EXIT_FAILURE);
+       }
+       if (snprintf(report,sizeof(report),"%s/smartfilter.html",outdirname)>=sizeof(report)) {
+               debuga(__FILE__,__LINE__,_("Path too long: "));
+               debuga_more("%s/smartfilter.html\n",outdirname);
+               exit(EXIT_FAILURE);
+       }
+
+       if (snprintf(csort,sizeof(csort),"sort -n -t \"\t\" -k 1,1 -k 2,2 -k 3,3 -o \"%s\" \"%s\"",smart_ou,smart_in)>=sizeof(csort)) {
+               debuga(__FILE__,__LINE__,_("Cannot build the sort command to sort file \"%s\"\n"),smart_in);
+               exit(EXIT_FAILURE);
+       }
+       cstatus=system(csort);
+       if (!WIFEXITED(cstatus) || WEXITSTATUS(cstatus)) {
+               debuga(__FILE__,__LINE__,_("sort command return status %d\n"),WEXITSTATUS(cstatus));
+               debuga(__FILE__,__LINE__,_("sort command: %s\n"),csort);
+               exit(EXIT_FAILURE);
+       }
+       if((fp_in=fopen(smart_ou,"r"))==NULL) {
+               debuga(__FILE__,__LINE__,_("Cannot open file \"%s\": %s\n"),smart_ou,strerror(errno));
+               debuga(__FILE__,__LINE__,_("sort command: %s\n"),csort);
+               exit(EXIT_FAILURE);
+       }
+       if (!KeepTempLog && unlink(smart_in)) {
+               debuga(__FILE__,__LINE__,_("Cannot delete \"%s\": %s\n"),smart_in,strerror(errno));
+               exit(EXIT_FAILURE);
+       }
+
+       if((fp_ou=fopen(report,"w"))==NULL) {
+               debuga(__FILE__,__LINE__,_("Cannot open file \"%s\": %s\n"),report,strerror(errno));
+               exit(EXIT_FAILURE);
+       }
+
+       fprintf(fp_ou, "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<html>\n<head>\n  <meta http-equiv=\"Content-Type\" content=\"text/html; charset=%s\">\n",CharSet);
+       fputs("</head>\n",fp_ou);
+       if(strlen(FontFace) > 0) fprintf(fp_ou,"<font face=%s>\n",FontFace);
+       fprintf(fp_ou,"<body bgcolor=\"%s\" text=\"%s\" background=\"%s\">\n",BgColor,TxColor,BgImage);
+       fputs("<div align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\">\n",fp_ou);
+       write_logo_image(fp_ou);
+
+       fprintf(fp_ou,"<tr><th align=\"center\"><b><font color=\"%s\" size=\"+1\">%s</font></b></th></tr>\n",TiColor,Title);
+       fprintf(fp_ou,"<tr><td align=\"center\" bgcolor=\"%s\"><font size=\"%s\">",HeaderBgColor,FontSize);
+       fprintf(fp_ou,_("Period: %s"),period.html);
+       fputs("</font></td></tr>\n",fp_ou);
+       fprintf(fp_ou,"<tr><th bgcolor=\"%s\" align=\"center\"><font size=\"%s\">%s</font></th></tr>\n",HeaderBgColor,FontSize,_("SmartFilter"));
+       fputs("</table></div>\n",fp_ou);
+
+       fputs("<div align=\"center\"><table cellpadding=\"0\" cellspacing=\"2\">\n",fp_ou);
+       fputs("<tr><td></td></tr>\n",fp_ou);
+       fputs("<tr><td></td></tr>\n",fp_ou);
+       fputs("<tr><td></td></tr>\n",fp_ou);
+       fprintf(fp_ou,"<tr><th bgcolor=%s><font size=\"%s\">%s</font></th><th bgcolor=\"%s\"><font size=\"%s\">%s</font></th><th bgcolor=\"%s\"><font size=\"%s\">%s</font></th><th bgcolor=\"%s\"><font size=\"%s\">%s</font></th><th bgcolor=\"%s\"><font size=\"%s\">%s</font></th></tr>\n",HeaderBgColor,FontSize,_("USERID"),HeaderBgColor,FontSize,_("IP/NAME"),HeaderBgColor,FontSize,_("DATE/TIME"),HeaderBgColor,FontSize,_("ACCESSED SITE"),HeaderBgColor,FontSize,_("SMARTFILTER"));
+
+       while(fgets(buf,sizeof(buf),fp_in)!=NULL) {
+               getword_start(&gwarea,buf);
+               if (getword(user,sizeof(user),&gwarea,'\t')<0 || getword(data,sizeof(data),&gwarea,'\t')<0 ||
+                   getword(hora,sizeof(hora),&gwarea,'\t')<0 || getword(ip,sizeof(ip),&gwarea,'\t')<0 ||
+                   getword(url,sizeof(url),&gwarea,'\t')<0 || getword(smartcat,sizeof(smartcat),&gwarea,'\n')<0) {
+                       debuga(__FILE__,__LINE__,_("Invalid record in file \"%s\"\n"),smart_ou);
+                       exit(EXIT_FAILURE);
+               }
+
+               uinfo=userinfo_find_from_id(user);
+               if (!uinfo) {
+                       debuga(__FILE__,__LINE__,_("Unknown user ID %s in file \"%s\"\n"),user,smart_ou);
+                       exit(EXIT_FAILURE);
+               }
+               if(strcmp(ouser,user) != 0) {
+                       strcpy(ouser,user);
+                       sprintf(smartuser,"%s/denied_%s.html",outdirname,uinfo->filename);
+                       if (fp_user) {
+                               fputs("</table>\n",fp_user);
+                               if(ShowSargInfo) {
+                                       zdate(ftime, sizeof(ftime), df);
+                                       fputs("<br><br><div align=\"center\"><font size=\"-2\">",fp_user);
+                                       fprintf(fp_user,_("Generated by <a href=\"%s\">%s-%s</a> on %s"),URL,PGM,VERSION,ftime);
+                                       fputs("</font></div>\n",fp_user);
+                               }
+                               fputs("</body>\n</html>\n",fp_user);
+                               if (fclose(fp_user)==EOF) {
+                                       debuga(__FILE__,__LINE__,_("Write error in \"%s\": %s\n"),smartuser,strerror(errno));
+                                       exit(EXIT_FAILURE);
+                               }
+                               fp_user=NULL;
+                       }
+                       if ((fp_user = fopen(smartuser, "a")) == 0) {
+                               debuga(__FILE__,__LINE__,_("Cannot open file \"%s\": %s\n"),smartuser,strerror(errno));
+                               exit(EXIT_FAILURE);
+                       }
+
+                       fputs("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"",fp_ou);
+                       fputs(" \"http://www.w3.org/TR/html4/loose.dtd\">\n",fp_ou);
+                       fputs("<html>\n",fp_user);
+                       fputs("<head>\n",fp_user);
+                       fprintf(fp_user,"  <meta http-equiv=\"Content-Type\" content=\"text/html; charset=%s\">\n",CharSet);
+                       fputs("</head>\n",fp_user);
+
+                       if(FontFace[0] != 0) {
+                               /*
+                               Before merging the sprintf and the fputs, the code looked like this:
+                               sprintf(html2,"<font face=%s>\n",FontFace);
+                               fputs(url,fp_user);
+                               The two lines don't use the same buffer so the string formated by sprintf is not the string
+                               written to fp_user. I (fmarchal) assumed it was a typo and replaced it by a fprintf but
+                               that font tag is not valid outside of the body. So, the generated html was likely
+                               containing garbage not rendered by the browser.
+                               */
+                               fprintf(fp_user,"<font face=%s>\n",FontFace);
+                       }
+                       fprintf(fp_user,"<body bgcolor=\"%s\" text=\"%s\" background=\"%s\">\n",BgColor,TxColor,BgImage);
+                       fputs("<div align=\"center\"><table cellpadding=\"0\" cellspacing=\"0\">\n",fp_user);
+                       if(LogoImage[0]!='\0') fprintf(fp_user,"<tr><th align=left><img src=\"%s\" border=\"0\" align=\"absmiddle\" width=\"%s\" height=\"%s\"><font color=\"%s\">%s</font>\n",LogoImage,Width,Height,LogoTextColor,LogoText);
+                       fprintf(fp_user,"<tr><th align=\"center\"><b><font color=\"%s\" size=\"+1\">%s</font></b></th></tr>\n",TiColor,Title);
+                       fputs("<tr><td align=center bgcolor=\"%s\"><font size=\"%s\">",fp_user);
+                       fprintf(fp_user,_("Period: %s"),period.html);
+                       fputs("</font></td></tr>\n",fp_user);
+                       fprintf(fp_user,"<tr><td align=\"center\" bgcolor=\"%s\"><font size=\"%s\">%s:</font><font size=\"%s\"> %s</font></td></tr>\n",HeaderBgColor,FontSize,_("User"),FontSize,uinfo->label);
+                       fputs("</table></div>\n",fp_user);
+                       fputs("<div align=\"center\"><table cellpadding=0 cellspacing=2>\n",fp_user);
+                       fputs("<tr><td></td></tr>\n",fp_user);
+                       fputs("<tr><td></td></tr>\n",fp_user);
+                       fputs("<tr><td></td></tr>\n",fp_user);
+                       fprintf(fp_user,"<tr><th bgcolor=%s><font size=%s>%s</font></th><th bgcolor=%s><font size=%s>%s</font></th><th bgcolor=%s><font size=%s>%s</font></th><th bgcolor=%s><font size=%s>%s</font></th><th bgcolor=%s><font size=%s>%s</font></th></tr>\n",HeaderBgColor,FontSize,_("USERID"),HeaderBgColor,FontSize,_("IP/NAME"),HeaderBgColor,FontSize,_("DATE/TIME"),HeaderBgColor,FontSize,_("ACCESSED SITE"),HeaderBgColor,FontSize,_("SMARTFILTER"));
+               }
+               fprintf(fp_user,"<tr><td bgcolor=%s align=center><font size=%s>%s</font></td><td bgcolor=%s align=center><font size=%s>%s</font></td><td bgcolor=%s align=center><font size=%s>%s-%s</font></td><td bgcolor=%s><font size=%s>%s</font></td><td bgcolor=%s><font size=%s>%s</font></td></th>\n",TxBgColor,FontSize,uinfo->label,TxBgColor,FontSize,ip,TxBgColor,FontSize,data,hora,TxBgColor,FontSize,url,TxBgColor,FontSize,smartcat);
+
+               fprintf(fp_ou,"<tr><td bgcolor=%s align=center><font size=%s>%s</font></td><td bgcolor=%s align=center><font size=%s>%s</font></td><td bgcolor=%s align=center><font size=%s>%s-%s</font></td><td bgcolor=%s><font size=%s>%s</font></td><td bgcolor=%s><font size=%s>%s</font></td></th>\n",TxBgColor,FontSize,uinfo->label,TxBgColor,FontSize,ip,TxBgColor,FontSize,data,hora,TxBgColor,FontSize,url,TxBgColor,FontSize,smartcat);
+       }
+
+       fputs("</table>\n",fp_ou);
+
+       if(ShowSargInfo) {
+               zdate(ftime, sizeof(ftime), df);
+               fputs("<br><br><div align=\"center\"><font size=\"-2\">",fp_ou);
+               fprintf(fp_ou,_("Generated by <a href=\"%s\">%s-%s</a> on %s"),URL,PGM,VERSION,ftime);
+               fputs("</font></div>\n",fp_ou);
+       }
+
+       fputs("</body>\n</html>\n",fp_user);
+
+       if (fclose(fp_ou)==EOF) {
+               debuga(__FILE__,__LINE__,_("Write error in \"%s\": %s\n"),report,strerror(errno));
+               exit(EXIT_FAILURE);
+       }
+       if(fp_user) {
+               fputs("</table>\n",fp_user);
+               if(ShowSargInfo) {
+                       zdate(ftime, sizeof(ftime), df);
+                       fputs("<br><br><div align=\"center\"><font size=\"-2\">",fp_user);
+                       fprintf(fp_user,_("Generated by <a href=\"%s\">%s-%s</a> on %s"),URL,PGM,VERSION,ftime);
+                       fputs("</font></div>\n",fp_user);
+               }
+               fputs("</body>\n</html>\n",fp_user);
+               if (fclose(fp_user)==EOF) {
+                       debuga(__FILE__,__LINE__,_("Write error in \"%s\": %s\n"),smartuser,strerror(errno));
+                       exit(EXIT_FAILURE);
+               }
+       }
+
+       if (!KeepTempLog && unlink(smart_ou)) {
+               debuga(__FILE__,__LINE__,_("Cannot delete \"%s\": %s\n"),smart_ou,strerror(errno));
+               exit(EXIT_FAILURE);
+       }
+
+       return;
 }