Rebuild user manual with typo fix
[privoxy.git] / errlog.c
1 /*********************************************************************
2  *
3  * File        :  $Source: /cvsroot/ijbswa/current/errlog.c,v $
4  *
5  * Purpose     :  Log errors to a designated destination in an elegant,
6  *                printf-like fashion.
7  *
8  * Copyright   :  Written by and Copyright (C) 2001-2014 the
9  *                Privoxy team. https://www.privoxy.org/
10  *
11  *                Based on the Internet Junkbuster originally written
12  *                by and Copyright (C) 1997 Anonymous Coders and
13  *                Junkbusters Corporation.  http://www.junkbusters.com
14  *
15  *                This program is free software; you can redistribute it
16  *                and/or modify it under the terms of the GNU General
17  *                Public License as published by the Free Software
18  *                Foundation; either version 2 of the License, or (at
19  *                your option) any later version.
20  *
21  *                This program is distributed in the hope that it will
22  *                be useful, but WITHOUT ANY WARRANTY; without even the
23  *                implied warranty of MERCHANTABILITY or FITNESS FOR A
24  *                PARTICULAR PURPOSE.  See the GNU General Public
25  *                License for more details.
26  *
27  *                The GNU General Public License should be included with
28  *                this file.  If not, you can view it at
29  *                http://www.gnu.org/copyleft/gpl.html
30  *                or write to the Free Software Foundation, Inc., 59
31  *                Temple Place - Suite 330, Boston, MA  02111-1307, USA.
32  *
33  *********************************************************************/
34
35
36 #include <stdlib.h>
37 #include <stdio.h>
38 #include <stdarg.h>
39 #include <string.h>
40 #include <ctype.h>
41
42 #include "config.h"
43 #include "miscutil.h"
44
45 /* For gettimeofday() */
46 #include <sys/time.h>
47
48 #if !defined(_WIN32)
49 #include <unistd.h>
50 #endif /* !defined(_WIN32) */
51
52 #include <errno.h>
53 #include <assert.h>
54
55 #ifdef _WIN32
56 #ifndef STRICT
57 #define STRICT
58 #endif
59 #include <windows.h>
60 #ifndef _WIN_CONSOLE
61 #include "w32log.h"
62 #endif /* ndef _WIN_CONSOLE */
63 #endif /* def _WIN32 */
64 #ifdef _MSC_VER
65 #define inline __inline
66 #endif /* def _MSC_VER */
67
68 #include "errlog.h"
69 #include "project.h"
70 #include "jcc.h"
71 #ifdef FEATURE_EXTERNAL_FILTERS
72 #include "jbsockets.h"
73 #endif
74
75 /*
76  * LOG_LEVEL_FATAL cannot be turned off.  (There are
77  * some exceptional situations where we need to get a
78  * message to the user).
79  */
80 #define LOG_LEVEL_MINIMUM  LOG_LEVEL_FATAL
81
82 /* where to log (default: stderr) */
83 static FILE *logfp = NULL;
84
85 /* logging detail level. XXX: stupid name. */
86 static int debug = (LOG_LEVEL_FATAL | LOG_LEVEL_ERROR);
87
88 /* static functions */
89 static void fatal_error(const char * error_message);
90 #ifdef _WIN32
91 static char *w32_socket_strerr(int errcode, char *tmp_buf);
92 #endif
93
94 #ifdef MUTEX_LOCKS_AVAILABLE
95 static inline void lock_logfile(void)
96 {
97    privoxy_mutex_lock(&log_mutex);
98 }
99 static inline void unlock_logfile(void)
100 {
101    privoxy_mutex_unlock(&log_mutex);
102 }
103 static inline void lock_loginit(void)
104 {
105    privoxy_mutex_lock(&log_init_mutex);
106 }
107 static inline void unlock_loginit(void)
108 {
109    privoxy_mutex_unlock(&log_init_mutex);
110 }
111 #else /* ! MUTEX_LOCKS_AVAILABLE */
112 /*
113  * FIXME we need a cross-platform locking mechanism.
114  * The locking/unlocking functions below should be
115  * fleshed out for non-pthread implementations.
116  */
117 static inline void lock_logfile() {}
118 static inline void unlock_logfile() {}
119 static inline void lock_loginit() {}
120 static inline void unlock_loginit() {}
121 #endif
122
123 /*********************************************************************
124  *
125  * Function    :  fatal_error
126  *
127  * Description :  Displays a fatal error to standard error (or, on
128  *                a WIN32 GUI, to a dialog box), and exits Privoxy
129  *                with status code 1.
130  *
131  * Parameters  :
132  *          1  :  error_message = The error message to display.
133  *
134  * Returns     :  Does not return.
135  *
136  *********************************************************************/
137 static void fatal_error(const char *error_message)
138 {
139    if (logfp != NULL)
140    {
141       fputs(error_message, logfp);
142    }
143
144 #if defined(_WIN32) && !defined(_WIN_CONSOLE)
145    {
146       /* Skip timestamp and thread id for the message box. */
147       const char *box_message = strstr(error_message, "Fatal error");
148       if (NULL == box_message)
149       {
150          /* Shouldn't happen but ... */
151          box_message = error_message;
152       }
153       MessageBox(g_hwndLogFrame, box_message, "Privoxy Error",
154          MB_OK | MB_ICONERROR | MB_TASKMODAL | MB_SETFOREGROUND | MB_TOPMOST);
155
156       /* Cleanup - remove taskbar icon etc. */
157       TermLogWindow();
158    }
159 #endif /* defined(_WIN32) && !defined(_WIN_CONSOLE) */
160
161 #if defined(unix)
162    if (pidfile)
163    {
164       unlink(pidfile);
165    }
166 #endif /* unix */
167
168    exit(1);
169 }
170
171
172 /*********************************************************************
173  *
174  * Function    :  show_version
175  *
176  * Description :  Logs the Privoxy version and the program name.
177  *
178  * Parameters  :
179  *          1  :  prog_name = The program name.
180  *
181  * Returns     :  Nothing.
182  *
183  *********************************************************************/
184 void show_version(const char *prog_name)
185 {
186    log_error(LOG_LEVEL_INFO, "Privoxy version " VERSION);
187    if (prog_name != NULL)
188    {
189       log_error(LOG_LEVEL_INFO, "Program name: %s", prog_name);
190    }
191 }
192
193
194 /*********************************************************************
195  *
196  * Function    :  init_log_module
197  *
198  * Description :  Initializes the logging module to log to stderr.
199  *                Can only be called while stderr hasn't been closed
200  *                yet and is only supposed to be called once.
201  *
202  * Parameters  :
203  *          1  :  prog_name = The program name.
204  *
205  * Returns     :  Nothing.
206  *
207  *********************************************************************/
208 void init_log_module(void)
209 {
210    lock_logfile();
211    logfp = stderr;
212    unlock_logfile();
213    set_debug_level(debug);
214 }
215
216
217 /*********************************************************************
218  *
219  * Function    :  set_debug_level
220  *
221  * Description :  Sets the debug level to the provided value
222  *                plus LOG_LEVEL_MINIMUM.
223  *
224  *                XXX: we should only use the LOG_LEVEL_MINIMUM
225  *                until the first time the configuration file has
226  *                been parsed.
227  *
228  * Parameters  :  1: debug_level = The debug level to set.
229  *
230  * Returns     :  Nothing.
231  *
232  *********************************************************************/
233 void set_debug_level(int debug_level)
234 {
235 #ifdef FUZZ
236    if (LOG_LEVEL_STFU == debug_level)
237    {
238       debug = LOG_LEVEL_STFU;
239    }
240    if (LOG_LEVEL_STFU == debug)
241    {
242       return;
243    }
244 #endif
245
246    debug = debug_level | LOG_LEVEL_MINIMUM;
247 }
248
249
250 /*********************************************************************
251  *
252  * Function    :  debug_level_is_enabled
253  *
254  * Description :  Checks if a certain debug level is enabled.
255  *
256  * Parameters  :  1: debug_level = The debug level to check.
257  *
258  * Returns     :  Nothing.
259  *
260  *********************************************************************/
261 int debug_level_is_enabled(int debug_level)
262 {
263    return (0 != (debug & debug_level));
264 }
265
266
267 /*********************************************************************
268  *
269  * Function    :  disable_logging
270  *
271  * Description :  Disables logging.
272  *
273  * Parameters  :  None.
274  *
275  * Returns     :  Nothing.
276  *
277  *********************************************************************/
278 void disable_logging(void)
279 {
280    if (logfp != NULL)
281    {
282       log_error(LOG_LEVEL_INFO,
283          "No logfile configured. Please enable it before reporting any problems.");
284       lock_logfile();
285       fclose(logfp);
286       logfp = NULL;
287       unlock_logfile();
288    }
289 }
290
291
292 /*********************************************************************
293  *
294  * Function    :  init_error_log
295  *
296  * Description :  Initializes the logging module to log to a file.
297  *
298  *                XXX: should be renamed.
299  *
300  * Parameters  :
301  *          1  :  prog_name  = The program name.
302  *          2  :  logfname   = The logfile to (re)open.
303  *
304  * Returns     :  N/A
305  *
306  *********************************************************************/
307 void init_error_log(const char *prog_name, const char *logfname)
308 {
309    FILE *fp;
310
311    assert(NULL != logfname);
312
313    lock_loginit();
314
315    if ((logfp != NULL) && (logfp != stderr))
316    {
317       log_error(LOG_LEVEL_INFO, "(Re-)Opening logfile \'%s\'", logfname);
318    }
319
320    /* set the designated log file */
321    fp = fopen(logfname, "a");
322    if ((NULL == fp) && (logfp != NULL))
323    {
324       /*
325        * Some platforms (like OS/2 (XXX: no longer supported)) don't
326        * allow us to open the same file twice, therefore we give it
327        * another shot after closing the old file descriptor first.
328        *
329        * We don't do it right away because it prevents us
330        * from logging the "can't open logfile" message to
331        * the old logfile.
332        *
333        * XXX: this is a lame workaround and once the next
334        * release is out we should stop bothering reopening
335        * the logfile unless we have to.
336        *
337        * Currently we reopen it every time the config file
338        * has been reloaded, but actually we only have to
339        * reopen it if the file name changed or if the
340        * configuration reload was caused by a SIGHUP.
341        */
342       log_error(LOG_LEVEL_INFO, "Failed to reopen logfile: \'%s\'. "
343          "Retrying after closing the old file descriptor first. If that "
344          "doesn't work, Privoxy will exit without being able to log a message.",
345          logfname);
346       lock_logfile();
347       fclose(logfp);
348       logfp = NULL;
349       unlock_logfile();
350       fp = fopen(logfname, "a");
351    }
352
353    if (NULL == fp)
354    {
355       log_error(LOG_LEVEL_FATAL, "init_error_log(): can't open logfile: \'%s\'", logfname);
356    }
357
358 #ifdef FEATURE_EXTERNAL_FILTERS
359    mark_socket_for_close_on_execute(3);
360 #endif
361
362    /* set logging to be completely unbuffered */
363    setbuf(fp, NULL);
364
365    lock_logfile();
366    if (logfp != NULL)
367    {
368       fclose(logfp);
369    }
370 #ifdef unix
371    if (daemon_mode && (logfp == stderr))
372    {
373       if (dup2(1, 2) == -1)
374       {
375          /*
376           * We only use fatal_error() to clear the pid
377           * file and to exit. Given that stderr has just
378           * been closed, the user will not see the error
379           * message.
380           */
381          fatal_error("Failed to reserve fd 2.");
382       }
383    }
384 #endif
385    logfp = fp;
386    unlock_logfile();
387
388    show_version(prog_name);
389
390    unlock_loginit();
391
392 } /* init_error_log */
393
394
395 /*********************************************************************
396  *
397  * Function    :  get_thread_id
398  *
399  * Description :  Returns a number that is different for each thread.
400  *
401  *                XXX: Should be moved elsewhere (miscutil.c?)
402  *
403  * Parameters  :  None
404  *
405  * Returns     :  thread_id
406  *
407  *********************************************************************/
408 static long get_thread_id(void)
409 {
410    long this_thread;
411
412    /* FIXME get current thread id */
413 #ifdef FEATURE_PTHREAD
414    this_thread = (long)pthread_self();
415 #ifdef __MACH__
416    /*
417     * Mac OSX (and perhaps other Mach instances) doesn't have a unique
418     * value at the lowest order 4 bytes of pthread_self()'s return value, a pthread_t,
419     * so trim the three lowest-order bytes from the value (16^3).
420     */
421    this_thread = this_thread / 4096;
422 #endif /* def __MACH__ */
423 #elif defined(_WIN32)
424    this_thread = GetCurrentThreadId();
425 #else
426    /* Forking instead of threading. */
427    this_thread = 1;
428 #endif /* def FEATURE_PTHREAD */
429
430    return this_thread;
431 }
432
433
434 /*********************************************************************
435  *
436  * Function    :  get_log_timestamp
437  *
438  * Description :  Generates the time stamp for the log message prefix.
439  *
440  * Parameters  :
441  *          1  :  buffer = Storage buffer
442  *          2  :  buffer_size = Size of storage buffer
443  *
444  * Returns     :  Number of written characters or 0 for error.
445  *
446  *********************************************************************/
447 static inline size_t get_log_timestamp(char *buffer, size_t buffer_size)
448 {
449    size_t length;
450    time_t now;
451    struct tm tm_now;
452    struct timeval tv_now; /* XXX: stupid name */
453    long msecs;
454    int msecs_length = 0;
455
456    gettimeofday(&tv_now, NULL);
457    msecs = tv_now.tv_usec / 1000;
458    now = tv_now.tv_sec;
459
460 #ifdef HAVE_LOCALTIME_R
461    tm_now = *localtime_r(&now, &tm_now);
462 #elif defined(MUTEX_LOCKS_AVAILABLE)
463    privoxy_mutex_lock(&localtime_mutex);
464    tm_now = *localtime(&now);
465    privoxy_mutex_unlock(&localtime_mutex);
466 #else
467    tm_now = *localtime(&now);
468 #endif
469
470    length = strftime(buffer, buffer_size, "%Y-%m-%d %H:%M:%S", &tm_now);
471    if (length > (size_t)0)
472    {
473       msecs_length = snprintf(buffer+length, buffer_size - length, ".%.3ld", msecs);
474    }
475    if (msecs_length > 0)
476    {
477       length += (size_t)msecs_length;
478    }
479    else
480    {
481       length = 0;
482    }
483
484    return length;
485 }
486
487
488 /*********************************************************************
489  *
490  * Function    :  get_clf_timestamp
491  *
492  * Description :  Generates a Common Log Format time string.
493  *
494  * Parameters  :
495  *          1  :  buffer = Storage buffer
496  *          2  :  buffer_size = Size of storage buffer
497  *
498  * Returns     :  Number of written characters or 0 for error.
499  *
500  *********************************************************************/
501 static inline size_t get_clf_timestamp(char *buffer, size_t buffer_size)
502 {
503    /*
504     * Complex because not all OSs have tm_gmtoff or
505     * the %z field in strftime()
506     */
507    time_t now;
508    struct tm *tm_now;
509    struct tm gmt;
510 #ifdef HAVE_LOCALTIME_R
511    struct tm dummy;
512 #endif
513    int days, hrs, mins;
514    size_t length;
515    int tz_length = 0;
516
517    time (&now);
518    gmt = *privoxy_gmtime_r(&now, &gmt);
519 #ifdef HAVE_LOCALTIME_R
520    tm_now = localtime_r(&now, &dummy);
521 #elif defined(MUTEX_LOCKS_AVAILABLE)
522    privoxy_mutex_lock(&localtime_mutex);
523    tm_now = localtime(&now);
524 #else
525    tm_now = localtime(&now);
526 #endif
527    days = tm_now->tm_yday - gmt.tm_yday;
528    hrs = ((days < -1 ? 24 : 1 < days ? -24 : days * 24) + tm_now->tm_hour - gmt.tm_hour);
529    mins = hrs * 60 + tm_now->tm_min - gmt.tm_min;
530
531    length = strftime(buffer, buffer_size, "%d/%b/%Y:%H:%M:%S ", tm_now);
532 #if !defined(HAVE_LOCALTIME_R) && defined(MUTEX_LOCKS_AVAILABLE)
533    privoxy_mutex_unlock(&localtime_mutex);
534 #endif
535
536    if (length > (size_t)0)
537    {
538       tz_length = snprintf(buffer+length, buffer_size-length,
539                      "%+03d%02d", mins / 60, abs(mins) % 60);
540    }
541    if (tz_length > 0)
542    {
543       length += (size_t)tz_length;
544    }
545    else
546    {
547       length = 0;
548    }
549
550    return length;
551 }
552
553
554 /*********************************************************************
555  *
556  * Function    :  get_log_level_string
557  *
558  * Description :  Translates a numerical loglevel into a string.
559  *
560  * Parameters  :
561  *          1  :  loglevel = LOG_LEVEL_FOO
562  *
563  * Returns     :  Log level string.
564  *
565  *********************************************************************/
566 static inline const char *get_log_level_string(int loglevel)
567 {
568    char *log_level_string = NULL;
569
570    assert(0 < loglevel);
571
572    switch (loglevel)
573    {
574       case LOG_LEVEL_ERROR:
575          log_level_string = "Error";
576          break;
577       case LOG_LEVEL_FATAL:
578          log_level_string = "Fatal error";
579          break;
580       case LOG_LEVEL_REQUEST:
581          log_level_string = "Request";
582          break;
583       case LOG_LEVEL_CONNECT:
584          log_level_string = "Connect";
585          break;
586       case LOG_LEVEL_WRITING:
587          log_level_string = "Writing";
588          break;
589       case LOG_LEVEL_RECEIVED:
590          log_level_string = "Received";
591          break;
592       case LOG_LEVEL_HEADER:
593          log_level_string = "Header";
594          break;
595       case LOG_LEVEL_INFO:
596          log_level_string = "Info";
597          break;
598       case LOG_LEVEL_RE_FILTER:
599          log_level_string = "Re-Filter";
600          break;
601 #ifdef FEATURE_FORCE_LOAD
602       case LOG_LEVEL_FORCE:
603          log_level_string = "Force";
604          break;
605 #endif /* def FEATURE_FORCE_LOAD */
606       case LOG_LEVEL_REDIRECTS:
607          log_level_string = "Redirect";
608          break;
609       case LOG_LEVEL_DEANIMATE:
610          log_level_string = "Gif-Deanimate";
611          break;
612       case LOG_LEVEL_CRUNCH:
613          log_level_string = "Crunch";
614          break;
615       case LOG_LEVEL_CGI:
616          log_level_string = "CGI";
617          break;
618       case LOG_LEVEL_ACTIONS:
619          log_level_string = "Actions";
620          break;
621       default:
622          log_level_string = "Unknown log level";
623          break;
624    }
625    assert(NULL != log_level_string);
626
627    return log_level_string;
628 }
629
630
631 #define LOG_BUFFER_SIZE BUFFER_SIZE
632 /*********************************************************************
633  *
634  * Function    :  log_error
635  *
636  * Description :  This is the error-reporting and logging function.
637  *
638  * Parameters  :
639  *          1  :  loglevel  = the type of message to be logged
640  *          2  :  fmt       = the main string we want logged, printf-like
641  *          3  :  ...       = arguments to be inserted in fmt (printf-like).
642  *
643  * Returns     :  N/A
644  *
645  *********************************************************************/
646 void log_error(int loglevel, const char *fmt, ...)
647 {
648    va_list ap;
649    char outbuf[LOG_BUFFER_SIZE+1];
650    char tempbuf[LOG_BUFFER_SIZE];
651    size_t length = 0;
652    const char * src = fmt;
653    long thread_id;
654    char timestamp[30];
655    const size_t log_buffer_size = LOG_BUFFER_SIZE;
656
657 #if defined(_WIN32) && !defined(_WIN_CONSOLE)
658    /*
659     * Irrespective of debug setting, a GET/POST/CONNECT makes
660     * the taskbar icon animate.  (There is an option to disable
661     * this but checking that is handled inside LogShowActivity()).
662     */
663    if ((loglevel == LOG_LEVEL_REQUEST) || (loglevel == LOG_LEVEL_CRUNCH))
664    {
665       LogShowActivity();
666    }
667 #endif /* defined(_WIN32) && !defined(_WIN_CONSOLE) */
668
669    /*
670     * verify that the loglevel applies to current
671     * settings and that logging is enabled.
672     * Bail out otherwise.
673     */
674    if ((0 == (loglevel & debug))
675 #ifndef _WIN32
676       || (logfp == NULL)
677 #endif
678       )
679    {
680 #ifdef FUZZ
681       if (debug == LOG_LEVEL_STFU)
682       {
683          return;
684       }
685 #endif
686       if (loglevel == LOG_LEVEL_FATAL)
687       {
688          fatal_error("Fatal error. You're not supposed to"
689             "see this message. Please file a bug report.");
690       }
691       return;
692    }
693
694    thread_id = get_thread_id();
695    get_log_timestamp(timestamp, sizeof(timestamp));
696
697    /*
698     * Memsetting the whole buffer to zero (in theory)
699     * makes things easier later on.
700     */
701    memset(outbuf, 0, sizeof(outbuf));
702
703    /* Add prefix for everything but Common Log Format messages */
704    if (loglevel != LOG_LEVEL_CLF)
705    {
706       length = (size_t)snprintf(outbuf, log_buffer_size, "%s %08lx %s: ",
707          timestamp, thread_id, get_log_level_string(loglevel));
708    }
709
710    /* get ready to scan var. args. */
711    va_start(ap, fmt);
712
713    /* build formatted message from fmt and var-args */
714    while ((*src) && (length < log_buffer_size-2))
715    {
716       const char *sval = NULL; /* %N string  */
717       int ival;                /* %N string length or an error code */
718       unsigned uval;           /* %u value */
719       long lval;               /* %l value */
720       unsigned long ulval;     /* %ul value */
721       char ch;
722       const char *format_string = tempbuf;
723
724       ch = *src++;
725       if (ch != '%')
726       {
727          outbuf[length++] = ch;
728          /*
729           * XXX: Only necessary on platforms where multiple threads
730           * can write to the buffer at the same time because we
731           * don't support mutexes.
732           * XXX: Are there any such platforms left now that OS/2 is gone?
733           */
734          outbuf[length] = '\0';
735          continue;
736       }
737       outbuf[length] = '\0';
738       ch = *src++;
739       switch (ch) {
740          case '%':
741             tempbuf[0] = '%';
742             tempbuf[1] = '\0';
743             break;
744          case 'd':
745             ival = va_arg(ap, int);
746             snprintf(tempbuf, sizeof(tempbuf), "%d", ival);
747             break;
748          case 'u':
749             uval = va_arg(ap, unsigned);
750             snprintf(tempbuf, sizeof(tempbuf), "%u", uval);
751             break;
752          case 'l':
753             /* this is a modifier that must be followed by u, lu, or d */
754             ch = *src++;
755             if (ch == 'd')
756             {
757                lval = va_arg(ap, long);
758                snprintf(tempbuf, sizeof(tempbuf), "%ld", lval);
759             }
760             else if (ch == 'u')
761             {
762                ulval = va_arg(ap, unsigned long);
763                snprintf(tempbuf, sizeof(tempbuf), "%lu", ulval);
764             }
765             else if ((ch == 'l') && (*src == 'u'))
766             {
767                unsigned long long lluval = va_arg(ap, unsigned long long);
768                snprintf(tempbuf, sizeof(tempbuf), "%llu", lluval);
769                src++;
770             }
771             else
772             {
773                snprintf(tempbuf, sizeof(tempbuf), "Bad format string: \"%s\"", fmt);
774                loglevel = LOG_LEVEL_FATAL;
775             }
776             break;
777          case 'c':
778             /*
779              * Note that char parameters are converted to int, so we need to
780              * pass "int" to va_arg.  (See K&R, 2nd ed, section A7.3.2, page 202)
781              */
782             tempbuf[0] = (char) va_arg(ap, int);
783             tempbuf[1] = '\0';
784             break;
785          case 's':
786             format_string = va_arg(ap, char *);
787             if (format_string == NULL)
788             {
789                format_string = "[null]";
790             }
791             break;
792          case 'N':
793             /*
794              * Non-standard: Print a counted unterminated string,
795              * replacing unprintable bytes with their hex value.
796              * Takes 2 parameters: int length, const char * string.
797              */
798             ival = va_arg(ap, int);
799             assert(ival >= 0);
800             sval = va_arg(ap, char *);
801             assert(sval != NULL);
802
803             while ((ival-- > 0) && (length < log_buffer_size - 6))
804             {
805                if (isprint((int)*sval) && (*sval != '\\'))
806                {
807                   outbuf[length++] = *sval;
808                   outbuf[length] = '\0';
809                }
810                else
811                {
812                   int ret = snprintf(outbuf + length,
813                      log_buffer_size - length - 2, "\\x%.2x", (unsigned char)*sval);
814                   assert(ret == 4);
815                   length += 4;
816                }
817                sval++;
818             }
819             /*
820              * XXX: In case of printable characters at the end of
821              *      the %N string, we're not using the whole buffer.
822              */
823             format_string = (length < log_buffer_size - 6) ? "" : "[too long]";
824             break;
825          case 'E':
826             /* Non-standard: Print error code from errno */
827 #ifdef _WIN32
828             ival = WSAGetLastError();
829             format_string = w32_socket_strerr(ival, tempbuf);
830 #else /* ifndef _WIN32 */
831             ival = errno;
832 #ifdef HAVE_STRERROR
833             format_string = strerror(ival);
834 #else /* ifndef HAVE_STRERROR */
835             format_string = NULL;
836 #endif /* ndef HAVE_STRERROR */
837             if (sval == NULL)
838             {
839                snprintf(tempbuf, sizeof(tempbuf), "(errno = %d)", ival);
840             }
841 #endif /* ndef _WIN32 */
842             break;
843          case 'T':
844             /* Non-standard: Print a Common Log File timestamp */
845             get_clf_timestamp(tempbuf, sizeof(tempbuf));
846             break;
847          default:
848             snprintf(tempbuf, sizeof(tempbuf), "Bad format string: \"%s\"", fmt);
849             loglevel = LOG_LEVEL_FATAL;
850             break;
851       }
852
853       assert(length < log_buffer_size);
854       length += strlcpy(outbuf + length, format_string, log_buffer_size - length);
855
856       if (length >= log_buffer_size-2)
857       {
858          static const char warning[] = "... [too long, truncated]";
859
860          length = log_buffer_size - sizeof(warning) - 1;
861          length += strlcpy(outbuf + length, warning, log_buffer_size - length);
862          assert(length < log_buffer_size);
863
864          break;
865       }
866    }
867
868    /* done with var. args */
869    va_end(ap);
870
871    assert(length < log_buffer_size);
872    length += strlcpy(outbuf + length, "\n", log_buffer_size - length);
873
874    /* Some sanity checks */
875    if ((length >= log_buffer_size)
876     || (outbuf[log_buffer_size-1] != '\0')
877     || (outbuf[log_buffer_size] != '\0')
878       )
879    {
880       /* Repeat as assertions */
881       assert(length < log_buffer_size);
882       assert(outbuf[log_buffer_size-1] == '\0');
883       /*
884        * outbuf's real size is log_buffer_size+1,
885        * so while this looks like an off-by-one,
886        * we're only checking our paranoia byte.
887        */
888       assert(outbuf[log_buffer_size] == '\0');
889
890       snprintf(outbuf, log_buffer_size,
891          "%s %08lx Fatal error: log_error()'s sanity checks failed."
892          "length: %d. Exiting.",
893          timestamp, thread_id, (int)length);
894       loglevel = LOG_LEVEL_FATAL;
895    }
896
897 #ifndef _WIN32
898    /*
899     * On Windows this is acceptable in case
900     * we are logging to the GUI window only.
901     */
902    assert(NULL != logfp);
903 #endif
904
905    lock_logfile();
906
907    if (loglevel == LOG_LEVEL_FATAL)
908    {
909       fatal_error(outbuf);
910       /* Never get here */
911    }
912    if (logfp != NULL)
913    {
914       fputs(outbuf, logfp);
915    }
916
917 #if defined(_WIN32) && !defined(_WIN_CONSOLE)
918    /* Write to display */
919    LogPutString(outbuf);
920 #endif /* defined(_WIN32) && !defined(_WIN_CONSOLE) */
921
922    unlock_logfile();
923
924 }
925
926
927 /*********************************************************************
928  *
929  * Function    :  jb_err_to_string
930  *
931  * Description :  Translates JB_ERR_FOO codes into strings.
932  *
933  * Parameters  :
934  *          1  :  jb_error = a valid jb_err code
935  *
936  * Returns     :  A string with the jb_err translation
937  *
938  *********************************************************************/
939 const char *jb_err_to_string(jb_err jb_error)
940 {
941    switch (jb_error)
942    {
943       case JB_ERR_OK:
944          return "Success, no error";
945       case JB_ERR_MEMORY:
946          return "Out of memory";
947       case JB_ERR_CGI_PARAMS:
948          return "Missing or corrupt CGI parameters";
949       case JB_ERR_FILE:
950          return "Error opening, reading or writing a file";
951       case JB_ERR_PARSE:
952          return "Parse error";
953       case JB_ERR_MODIFIED:
954          return "File has been modified outside of the CGI actions editor.";
955       case JB_ERR_COMPRESS:
956          return "(De)compression failure";
957    }
958    assert(0);
959    return "Internal error";
960 }
961
962 #ifdef _WIN32
963 /*********************************************************************
964  *
965  * Function    :  w32_socket_strerr
966  *
967  * Description :  Translate the return value from WSAGetLastError()
968  *                into a string.
969  *
970  * Parameters  :
971  *          1  :  errcode = The return value from WSAGetLastError().
972  *          2  :  tmp_buf = A temporary buffer that might be used to
973  *                          store the string.
974  *
975  * Returns     :  String representing the error code.  This may be
976  *                a global string constant or a string stored in
977  *                tmp_buf.
978  *
979  *********************************************************************/
980 static char *w32_socket_strerr(int errcode, char *tmp_buf)
981 {
982 #define TEXT_FOR_ERROR(code,text) \
983    if (errcode == code)           \
984    {                              \
985       return #code " - " text;    \
986    }
987
988    TEXT_FOR_ERROR(WSAEACCES, "Permission denied")
989    TEXT_FOR_ERROR(WSAEADDRINUSE, "Address already in use.")
990    TEXT_FOR_ERROR(WSAEADDRNOTAVAIL, "Cannot assign requested address.");
991    TEXT_FOR_ERROR(WSAEAFNOSUPPORT, "Address family not supported by protocol family.");
992    TEXT_FOR_ERROR(WSAEALREADY, "Operation already in progress.");
993    TEXT_FOR_ERROR(WSAECONNABORTED, "Software caused connection abort.");
994    TEXT_FOR_ERROR(WSAECONNREFUSED, "Connection refused.");
995    TEXT_FOR_ERROR(WSAECONNRESET, "Connection reset by peer.");
996    TEXT_FOR_ERROR(WSAEDESTADDRREQ, "Destination address required.");
997    TEXT_FOR_ERROR(WSAEFAULT, "Bad address.");
998    TEXT_FOR_ERROR(WSAEHOSTDOWN, "Host is down.");
999    TEXT_FOR_ERROR(WSAEHOSTUNREACH, "No route to host.");
1000    TEXT_FOR_ERROR(WSAEINPROGRESS, "Operation now in progress.");
1001    TEXT_FOR_ERROR(WSAEINTR, "Interrupted function call.");
1002    TEXT_FOR_ERROR(WSAEINVAL, "Invalid argument.");
1003    TEXT_FOR_ERROR(WSAEISCONN, "Socket is already connected.");
1004    TEXT_FOR_ERROR(WSAEMFILE, "Too many open sockets.");
1005    TEXT_FOR_ERROR(WSAEMSGSIZE, "Message too long.");
1006    TEXT_FOR_ERROR(WSAENETDOWN, "Network is down.");
1007    TEXT_FOR_ERROR(WSAENETRESET, "Network dropped connection on reset.");
1008    TEXT_FOR_ERROR(WSAENETUNREACH, "Network is unreachable.");
1009    TEXT_FOR_ERROR(WSAENOBUFS, "No buffer space available.");
1010    TEXT_FOR_ERROR(WSAENOPROTOOPT, "Bad protocol option.");
1011    TEXT_FOR_ERROR(WSAENOTCONN, "Socket is not connected.");
1012    TEXT_FOR_ERROR(WSAENOTSOCK, "Socket operation on non-socket.");
1013    TEXT_FOR_ERROR(WSAEOPNOTSUPP, "Operation not supported.");
1014    TEXT_FOR_ERROR(WSAEPFNOSUPPORT, "Protocol family not supported.");
1015    TEXT_FOR_ERROR(WSAEPROCLIM, "Too many processes.");
1016    TEXT_FOR_ERROR(WSAEPROTONOSUPPORT, "Protocol not supported.");
1017    TEXT_FOR_ERROR(WSAEPROTOTYPE, "Protocol wrong type for socket.");
1018    TEXT_FOR_ERROR(WSAESHUTDOWN, "Cannot send after socket shutdown.");
1019    TEXT_FOR_ERROR(WSAESOCKTNOSUPPORT, "Socket type not supported.");
1020    TEXT_FOR_ERROR(WSAETIMEDOUT, "Connection timed out.");
1021    TEXT_FOR_ERROR(WSAEWOULDBLOCK, "Resource temporarily unavailable.");
1022    TEXT_FOR_ERROR(WSAHOST_NOT_FOUND, "Host not found.");
1023    TEXT_FOR_ERROR(WSANOTINITIALISED, "Successful WSAStartup not yet performed.");
1024    TEXT_FOR_ERROR(WSANO_DATA, "Valid name, no data record of requested type.");
1025    TEXT_FOR_ERROR(WSANO_RECOVERY, "This is a non-recoverable error.");
1026    TEXT_FOR_ERROR(WSASYSNOTREADY, "Network subsystem is unavailable.");
1027    TEXT_FOR_ERROR(WSATRY_AGAIN, "Non-authoritative host not found.");
1028    TEXT_FOR_ERROR(WSAVERNOTSUPPORTED, "WINSOCK.DLL version out of range.");
1029    TEXT_FOR_ERROR(WSAEDISCON, "Graceful shutdown in progress.");
1030    /*
1031     * The following error codes are documented in the Microsoft WinSock
1032     * reference guide, but don't actually exist.
1033     *
1034     * TEXT_FOR_ERROR(WSA_INVALID_HANDLE, "Specified event object handle is invalid.");
1035     * TEXT_FOR_ERROR(WSA_INVALID_PARAMETER, "One or more parameters are invalid.");
1036     * TEXT_FOR_ERROR(WSAINVALIDPROCTABLE, "Invalid procedure table from service provider.");
1037     * TEXT_FOR_ERROR(WSAINVALIDPROVIDER, "Invalid service provider version number.");
1038     * TEXT_FOR_ERROR(WSA_IO_PENDING, "Overlapped operations will complete later.");
1039     * TEXT_FOR_ERROR(WSA_IO_INCOMPLETE, "Overlapped I/O event object not in signaled state.");
1040     * TEXT_FOR_ERROR(WSA_NOT_ENOUGH_MEMORY, "Insufficient memory available.");
1041     * TEXT_FOR_ERROR(WSAPROVIDERFAILEDINIT, "Unable to initialize a service provider.");
1042     * TEXT_FOR_ERROR(WSASYSCALLFAILURE, "System call failure.");
1043     * TEXT_FOR_ERROR(WSA_OPERATION_ABORTED, "Overlapped operation aborted.");
1044     */
1045
1046    sprintf(tmp_buf, "(error number %d)", errcode);
1047    return tmp_buf;
1048 }
1049 #endif /* def _WIN32 */
1050
1051
1052 /*
1053   Local Variables:
1054   tab-width: 3
1055   end:
1056 */