LCOV - code coverage report
Current view: top level - src - log.c (source / functions) Hit Total Coverage
Test: burp-coverage-clean.info Lines: 64 141 45.4 %
Date: 2019-02-24 03:08:19 Functions: 10 18 55.6 %

          Line data    Source code
       1             : #include "burp.h"
       2             : #include "alloc.h"
       3             : #include "asfd.h"
       4             : #include "async.h"
       5             : #include "cmd.h"
       6             : #include "cntr.h"
       7             : #include "iobuf.h"
       8             : #include "log.h"
       9             : #include "strlist.h"
      10             : #include "times.h"
      11             : 
      12             : const char *prog="unknown";
      13             : const char *prog_long="unknown";
      14             : 
      15             : static struct fzp *logfzp=NULL;
      16             : // Start with all logging on, so that something is said when initial startup
      17             : // goes wrong - for example, reading the conf file.
      18             : static int do_syslog=1;
      19             : static int do_stdout=1;
      20             : static int do_progress_counter=1;
      21             : static int syslog_opened=0;
      22             : static int json=0;
      23             : 
      24           0 : void log_init(char *progname)
      25             : {
      26           0 :         prog_long=progname;
      27           0 :         if((prog=strrchr(progname, '/'))) prog++;
      28           0 :         else prog=progname;
      29           0 : }
      30             : 
      31        1398 : void logp(const char *fmt, ...)
      32             : {
      33             : #ifndef UTEST
      34             :         int pid;
      35             :         char buf[512]="";
      36             :         va_list ap;
      37             :         va_start(ap, fmt);
      38             :         vsnprintf(buf, sizeof(buf), fmt, ap);
      39             :         pid=(int)getpid();
      40             :         if(logfzp)
      41             :                 fzp_printf(logfzp, "%s: %s[%d] %s",
      42             :                         gettimenow(), prog, pid, buf);
      43             :         else
      44             :         {
      45             :                 if(do_syslog)
      46             :                         syslog(LOG_INFO, "%s", buf);
      47             :                 if(do_stdout)
      48             :                 {
      49             :                         if(json)
      50             :                         {
      51             :                                 char *cp;
      52             :                                 // To help programs parsing the monitor output,
      53             :                                 // log things with simple JSON.
      54             :                                 // So do simple character substitution to have
      55             :                                 // a better chance of valid JSON.
      56             :                                 for(cp=buf; *cp; cp++)
      57             :                                 {
      58             :                                         if(*cp=='"')
      59             :                                                 *cp='\'';
      60             :                                         else if(!isprint(*cp))
      61             :                                                 *cp='.';
      62             :                                 }
      63             :                                 fprintf(stdout, "{ \"logline\": \"%s\" }\n", buf);
      64             :                         }
      65             :                         else
      66             :                                 fprintf(stdout, "%s: %s[%d] %s",
      67             :                                         gettimenow(), prog, pid, buf);
      68             :                 }
      69             :         }
      70             :         va_end(ap);
      71             : #endif
      72        1398 : }
      73             : 
      74           0 : void logp_ssl_err(const char *fmt, ...)
      75             : {
      76           0 :         char buf[512]="";
      77             :         va_list ap;
      78           0 :         va_start(ap, fmt);
      79           0 :         vsnprintf(buf, sizeof(buf), fmt, ap);
      80           0 :         va_end(ap);
      81           0 :         logp("%s", buf);
      82           0 :         if(logfzp) fzp_ERR_print_errors_fp(logfzp);
      83             :         else
      84             :         {
      85           0 :                 if(do_syslog)
      86             :                 {
      87             :                         // FIX THIS: How to send to syslog?
      88             :                         static BIO *bio_err=NULL;
      89           0 :                         if(!bio_err) bio_err=BIO_new_fp(stderr, BIO_NOCLOSE);
      90           0 :                         ERR_print_errors(bio_err);
      91             :                 }
      92           0 :                 if(do_stdout)
      93             :                 {
      94           0 :                         if(!json)
      95             :                         {
      96             :                                 static BIO *bio_err=NULL;
      97           0 :                                 if(!bio_err) bio_err=BIO_new_fp(stdout,
      98             :                                         BIO_NOCLOSE);
      99           0 :                                 ERR_print_errors(bio_err);
     100             :                         }
     101             :                 }
     102             :         }
     103           0 : }
     104             : 
     105             : // For the counters.
     106           0 : void logc(const char *fmt, ...)
     107             : {
     108           0 :         char buf[512]="";
     109             :         va_list ap;
     110           0 :         va_start(ap, fmt);
     111           0 :         vsnprintf(buf, sizeof(buf), fmt, ap);
     112           0 :         if(logfzp)
     113           0 :                 fzp_printf(logfzp, "%s", buf); // for the server side
     114             :         else
     115             :         {
     116           0 :                 if(do_progress_counter
     117           0 :                   && do_stdout)
     118           0 :                         fprintf(stdout, "%s", buf);
     119             :         }
     120           0 :         va_end(ap);
     121           0 : }
     122             : 
     123          96 : void logfmt(const char *fmt, ...)
     124             : {
     125             : #ifndef UTEST
     126             :         if(do_stdout)
     127             :         {
     128             :                 char buf[512]="";
     129             :                 va_list ap;
     130             :                 va_start(ap, fmt);
     131             :                 vsnprintf(buf, sizeof(buf), fmt, ap);
     132             :                 fprintf(stdout, "%s", buf);
     133             :         }
     134             : #endif
     135          96 : }
     136             : 
     137         100 : const char *progname(void)
     138             : {
     139         100 :         return prog;
     140             : }
     141             : 
     142          20 : int log_fzp_set(const char *path, struct conf **confs)
     143             : {
     144          20 :         fzp_close(&logfzp);
     145          20 :         if(path)
     146             :         {
     147          10 :                 logp("Logging to %s\n", path);
     148          10 :                 if(!(logfzp=fzp_open(path, "ab"))) return -1;
     149             :         }
     150          20 :         if(logfzp) fzp_setlinebuf(logfzp);
     151          20 :         do_syslog=get_int(confs[OPT_SYSLOG]);
     152          20 :         do_stdout=get_int(confs[OPT_STDOUT]);
     153          20 :         do_progress_counter=get_int(confs[OPT_PROGRESS_COUNTER]);
     154             : 
     155          20 :         if(syslog_opened)
     156             :         {
     157           0 :                 closelog();
     158           0 :                 syslog_opened=0;
     159             :         }
     160          20 :         if(do_syslog)
     161             :         {
     162           0 :                 openlog(prog, LOG_PID, LOG_USER);
     163           0 :                 syslog_opened++;
     164             :         }
     165             :         return 0;
     166             : }
     167             : 
     168           0 : void log_fzp_set_direct(struct fzp *fzp)
     169             : {
     170           0 :         fzp_close(&logfzp);
     171           0 :         logfzp=fzp;
     172           0 : }
     173             : 
     174           1 : void log_out_of_memory(const char *function)
     175             : {
     176             :         if(function) logp("out of memory in %s()\n", function);
     177             :         else logp("out of memory in unknown function\n");
     178           1 : }
     179             : 
     180           9 : void log_restore_settings(struct conf **cconfs, int srestore)
     181             : {
     182             :         struct strlist *l;
     183           9 :         logp("Restore settings:\n");
     184           9 :         if(get_string(cconfs[OPT_ORIG_CLIENT]))
     185           1 :                 logp("orig_client = '%s'\n",
     186             :                         get_string(cconfs[OPT_ORIG_CLIENT]));
     187           9 :         if(get_string(cconfs[OPT_BACKUP]))
     188           9 :                 logp("backup = '%s'\n",
     189             :                         get_string(cconfs[OPT_BACKUP]));
     190           9 :         if(srestore)
     191             :         {
     192             :                 // This are unknown unless doing a server initiated restore.
     193           2 :                 logp("overwrite = %d\n", get_int(cconfs[OPT_OVERWRITE]));
     194           2 :                 logp("strip = %d\n", get_int(cconfs[OPT_STRIP]));
     195             :         }
     196           9 :         if(get_string(cconfs[OPT_RESTOREPREFIX]))
     197           2 :                 logp("restoreprefix = '%s'\n",
     198             :                         get_string(cconfs[OPT_RESTOREPREFIX]));
     199           9 :         if(get_string(cconfs[OPT_STRIP_FROM_PATH]))
     200           0 :                 logp("stripfrompath = '%s'\n",
     201             :                         get_string(cconfs[OPT_STRIP_FROM_PATH]));
     202           9 :         if(get_string(cconfs[OPT_REGEX]))
     203           0 :                 logp("regex = '%s'\n", get_string(cconfs[OPT_REGEX]));
     204          12 :         for(l=get_strlist(cconfs[OPT_INCLUDE]); l; l=l->next)
     205           3 :                 logp("include = '%s'\n", l->path);
     206           9 : }
     207             : 
     208           0 : int logm(struct asfd *asfd, struct conf **confs, const char *fmt, ...)
     209             : {
     210           0 :         int r=0;
     211           0 :         char buf[512]="";
     212             :         va_list ap;
     213           0 :         va_start(ap, fmt);
     214           0 :         vsnprintf(buf, sizeof(buf), fmt, ap);
     215           0 :         if(asfd && asfd->as->doing_estimate) printf("\nMESSAGE: %s", buf);
     216             :         else
     217             :         {
     218           0 :                 if(asfd
     219           0 :                   && get_int(confs[OPT_MESSAGE])) // Backwards compatibility
     220           0 :                         r=asfd->write_str(asfd, CMD_MESSAGE, buf);
     221             :                 logp("MESSAGE: %s", buf);
     222             :         }
     223           0 :         va_end(ap);
     224           0 :         if(confs) cntr_add(get_cntr(confs), CMD_MESSAGE, 1);
     225           0 :         return r;
     226             : }
     227             : 
     228          14 : int logw(struct asfd *asfd, struct cntr *cntr, const char *fmt, ...)
     229             : {
     230          14 :         int r=0;
     231          14 :         char buf[512]="";
     232             :         va_list ap;
     233          14 :         va_start(ap, fmt);
     234          14 :         vsnprintf(buf, sizeof(buf), fmt, ap);
     235          14 :         if(asfd
     236          10 :           && asfd->as
     237           3 :           && asfd->as->doing_estimate)
     238           0 :                 printf("\nWARNING: %s", buf);
     239             :         else
     240             :         {
     241          14 :                 if(asfd)
     242          10 :                         r=asfd->write_str(asfd, CMD_WARNING, buf);
     243             :                 logp("WARNING: %s", buf);
     244             :         }
     245          14 :         va_end(ap);
     246          14 :         cntr_add(cntr, CMD_WARNING, 1);
     247          14 :         return r;
     248             : }
     249             : 
     250          10 : void log_and_send(struct asfd *asfd, const char *msg)
     251             : {
     252          10 :         logp("%s\n", msg);
     253          10 :         if(asfd)
     254          10 :                 asfd->write_str(asfd, CMD_ERROR, msg);
     255          10 : }
     256             : 
     257           0 : void log_and_send_oom(struct asfd *asfd)
     258             : {
     259           0 :         char m[256]="";
     260           0 :         snprintf(m, sizeof(m), "out of memory in %s()\n", __func__);
     261           0 :         logp("%s", m);
     262           0 :         if(asfd)
     263           0 :                 asfd->write_str(asfd, CMD_ERROR, m);
     264           0 : }
     265             : 
     266           0 : void log_set_json(int value)
     267             : {
     268           0 :         json=value;
     269           0 : }
     270             : 
     271          10 : void log_oom_w(const char *func, const char *orig_func)
     272             : {
     273          10 :         logp("out of memory in %s, called from %s\n", func, orig_func);
     274          10 : }
     275             : 
     276           0 : int log_incexcs_buf(const char *incexc)
     277             : {
     278           0 :         char *tok=NULL;
     279           0 :         char *copy=NULL;
     280           0 :         if(!incexc || !*incexc) return 0;
     281           0 :         if(!(copy=strdup_w(incexc, __func__)))
     282             :                 return -1;
     283           0 :         if(!(tok=strtok(copy, "\n")))
     284             :         {
     285           0 :                 logp("unable to parse server incexc\n");
     286           0 :                 free_w(&copy);
     287           0 :                 return -1;
     288             :         }
     289             :         do
     290             :         {
     291           0 :                 logp("%s\n", tok);
     292           0 :         } while((tok=strtok(NULL, "\n")));
     293           0 :         free_w(&copy);
     294           0 :         return 0;
     295             : }
     296             : 
     297           8 : void log_recvd(struct iobuf *iobuf, struct cntr *cntr, int print)
     298             : {
     299             :         int l;
     300           8 :         const char *prefix="unset";
     301             :         switch(iobuf->cmd)
     302             :         {
     303             :                 case CMD_MESSAGE: prefix="MESSAGE"; break;
     304             :                 case CMD_WARNING: prefix="WARNING"; break;
     305             :                 default: break;
     306             :         }
     307             :         // Strip any trailing newlines.
     308           9 :         for(l=iobuf->len-1; l>=0; l--)
     309             :         {
     310           9 :                 if(iobuf->buf[l]!='\n')
     311             :                         break;
     312           1 :                 iobuf->buf[l]='\0';
     313             :         }
     314           8 :         logp("%s: %s\n", prefix, iobuf->buf);
     315           8 :         cntr_add(cntr, iobuf->cmd, print);
     316           8 : }

Generated by: LCOV version 1.13