1 const char errlog_rcs[] = "$Id: errlog.c,v 1.92 2009/03/20 03:39:31 ler762 Exp $";
2 /*********************************************************************
4 * File : $Source: /cvsroot/ijbswa/current/errlog.c,v $
6 * Purpose : Log errors to a designated destination in an elegant,
9 * Copyright : Written by and Copyright (C) 2001-2009 the SourceForge
10 * Privoxy team. http://www.privoxy.org/
12 * Based on the Internet Junkbuster originally written
13 * by and Copyright (C) 1997 Anonymous Coders and
14 * Junkbusters Corporation. http://www.junkbusters.com
16 * This program is free software; you can redistribute it
17 * and/or modify it under the terms of the GNU General
18 * Public License as published by the Free Software
19 * Foundation; either version 2 of the License, or (at
20 * your option) any later version.
22 * This program is distributed in the hope that it will
23 * be useful, but WITHOUT ANY WARRANTY; without even the
24 * implied warranty of MERCHANTABILITY or FITNESS FOR A
25 * PARTICULAR PURPOSE. See the GNU General Public
26 * License for more details.
28 * The GNU General Public License should be included with
29 * this file. If not, you can view it at
30 * http://www.gnu.org/copyleft/gpl.html
31 * or write to the Free Software Foundation, Inc., 59
32 * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
34 *********************************************************************/
45 /* For gettimeofday() */
48 #if !defined(_WIN32) && !defined(__OS2__)
50 #endif /* !defined(_WIN32) && !defined(__OS2__) */
62 #endif /* ndef _WIN_CONSOLE */
63 #endif /* def _WIN32 */
65 #define inline __inline
66 #endif /* def _MSC_VER */
69 #include <sys/socket.h> /* For sock_errno */
78 const char errlog_h_rcs[] = ERRLOG_H_VERSION;
82 * LOG_LEVEL_FATAL cannot be turned off. (There are
83 * some exceptional situations where we need to get a
84 * message to the user).
86 #define LOG_LEVEL_MINIMUM LOG_LEVEL_FATAL
88 /* where to log (default: stderr) */
89 static FILE *logfp = NULL;
91 /* logging detail level. XXX: stupid name. */
92 static int debug = (LOG_LEVEL_FATAL | LOG_LEVEL_ERROR);
94 /* static functions */
95 static void fatal_error(const char * error_message);
97 static char *w32_socket_strerr(int errcode, char *tmp_buf);
100 static char *os2_socket_strerr(int errcode, char *tmp_buf);
103 #ifdef MUTEX_LOCKS_AVAILABLE
104 static inline void lock_logfile(void)
106 privoxy_mutex_lock(&log_mutex);
108 static inline void unlock_logfile(void)
110 privoxy_mutex_unlock(&log_mutex);
112 static inline void lock_loginit(void)
114 privoxy_mutex_lock(&log_init_mutex);
116 static inline void unlock_loginit(void)
118 privoxy_mutex_unlock(&log_init_mutex);
120 #else /* ! MUTEX_LOCKS_AVAILABLE */
122 * FIXME we need a cross-platform locking mechanism.
123 * The locking/unlocking functions below should be
124 * fleshed out for non-pthread implementations.
126 static inline void lock_logfile() {}
127 static inline void unlock_logfile() {}
128 static inline void lock_loginit() {}
129 static inline void unlock_loginit() {}
132 /*********************************************************************
134 * Function : fatal_error
136 * Description : Displays a fatal error to standard error (or, on
137 * a WIN32 GUI, to a dialog box), and exits Privoxy
138 * with status code 1.
141 * 1 : error_message = The error message to display.
143 * Returns : Does not return.
145 *********************************************************************/
146 static void fatal_error(const char *error_message)
148 #if defined(_WIN32) && !defined(_WIN_CONSOLE)
149 /* Skip timestamp and thread id for the message box. */
150 const char *box_message = strstr(error_message, "Fatal error");
151 if (NULL == box_message)
153 /* Shouldn't happen but ... */
154 box_message = error_message;
156 MessageBox(g_hwndLogFrame, box_message, "Privoxy Error",
157 MB_OK | MB_ICONERROR | MB_TASKMODAL | MB_SETFOREGROUND | MB_TOPMOST);
159 /* Cleanup - remove taskbar icon etc. */
161 #endif /* defined(_WIN32) && !defined(_WIN_CONSOLE) */
165 fputs(error_message, logfp);
179 /*********************************************************************
181 * Function : show_version
183 * Description : Logs the Privoxy version and the program name.
186 * 1 : prog_name = The program name.
190 *********************************************************************/
191 void show_version(const char *prog_name)
193 log_error(LOG_LEVEL_INFO, "Privoxy version " VERSION);
194 if (prog_name != NULL)
196 log_error(LOG_LEVEL_INFO, "Program name: %s", prog_name);
201 /*********************************************************************
203 * Function : init_log_module
205 * Description : Initializes the logging module to log to stderr.
206 * Can only be called while stderr hasn't been closed
207 * yet and is only supposed to be called once.
210 * 1 : prog_name = The program name.
214 *********************************************************************/
215 void init_log_module(void)
220 set_debug_level(debug);
224 /*********************************************************************
226 * Function : set_debug_level
228 * Description : Sets the debug level to the provided value
229 * plus LOG_LEVEL_MINIMUM.
231 * XXX: we should only use the LOG_LEVEL_MINIMUM
232 * until the first time the configuration file has
235 * Parameters : 1: debug_level = The debug level to set.
239 *********************************************************************/
240 void set_debug_level(int debug_level)
242 debug = debug_level | LOG_LEVEL_MINIMUM;
246 /*********************************************************************
248 * Function : disable_logging
250 * Description : Disables logging.
256 *********************************************************************/
257 void disable_logging(void)
261 log_error(LOG_LEVEL_INFO,
262 "No logfile configured. Please enable it before reporting any problems.");
271 /*********************************************************************
273 * Function : init_error_log
275 * Description : Initializes the logging module to log to a file.
277 * XXX: should be renamed.
280 * 1 : prog_name = The program name.
281 * 2 : logfname = The logfile to (re)open.
285 *********************************************************************/
286 void init_error_log(const char *prog_name, const char *logfname)
290 assert(NULL != logfname);
294 if ((logfp != NULL) && (logfp != stderr))
296 log_error(LOG_LEVEL_INFO, "(Re-)Opening logfile \'%s\'", logfname);
299 /* set the designated log file */
300 fp = fopen(logfname, "a");
301 if ((NULL == fp) && (logfp != NULL))
304 * Some platforms (like OS/2) don't allow us to open
305 * the same file twice, therefore we give it another
306 * shot after closing the old file descriptor first.
308 * We don't do it right away because it prevents us
309 * from logging the "can't open logfile" message to
312 * XXX: this is a lame workaround and once the next
313 * release is out we should stop bothering reopening
314 * the logfile unless we have to.
316 * Currently we reopen it every time the config file
317 * has been reloaded, but actually we only have to
318 * reopen it if the file name changed or if the
319 * configuration reloas was caused by a SIGHUP.
321 log_error(LOG_LEVEL_INFO, "Failed to reopen logfile: \'%s\'. "
322 "Retrying after closing the old file descriptor first. If that "
323 "doesn't work, Privoxy will exit without being able to log a message.",
329 fp = fopen(logfname, "a");
334 log_error(LOG_LEVEL_FATAL, "init_error_log(): can't open logfile: \'%s\'", logfname);
337 /* set logging to be completely unbuffered */
348 show_version(prog_name);
352 } /* init_error_log */
355 /*********************************************************************
357 * Function : get_thread_id
359 * Description : Returns a number that is different for each thread.
361 * XXX: Should be moved elsewhere (miscutil.c?)
365 * Returns : thread_id
367 *********************************************************************/
368 static long get_thread_id(void)
370 long this_thread = 1; /* was: pthread_t this_thread;*/
374 APIRET ulrc; /* XXX: I have no clue what this does */
377 /* FIXME get current thread id */
378 #ifdef FEATURE_PTHREAD
379 this_thread = (long)pthread_self();
382 * Mac OSX (and perhaps other Mach instances) doesn't have a debuggable
383 * value at the first 4 bytes of pthread_self()'s return value, a pthread_t.
384 * pthread_t is supposed to be opaque... but it's fairly random, though, so
385 * we make it mostly presentable.
387 this_thread = abs(this_thread % 1000);
388 #endif /* def __MACH__ */
389 #elif defined(_WIN32)
390 this_thread = GetCurrentThreadId();
391 #elif defined(__OS2__)
392 ulrc = DosGetInfoBlocks(&ptib, NULL);
394 this_thread = ptib -> tib_ptib2 -> tib2_ultid;
395 #endif /* def FEATURE_PTHREAD */
401 /*********************************************************************
403 * Function : get_log_timestamp
405 * Description : Generates the time stamp for the log message prefix.
408 * 1 : buffer = Storage buffer
409 * 2 : buffer_size = Size of storage buffer
411 * Returns : Number of written characters or 0 for error.
413 *********************************************************************/
414 static inline size_t get_log_timestamp(char *buffer, size_t buffer_size)
419 struct timeval tv_now; /* XXX: stupid name */
421 int msecs_length = 0;
423 gettimeofday(&tv_now, NULL);
424 msecs = tv_now.tv_usec / 1000;
428 #ifdef HAVE_LOCALTIME_R
429 tm_now = *localtime_r(&now, &tm_now);
430 #elif FEATURE_PTHREAD
431 privoxy_mutex_lock(&localtime_mutex);
432 tm_now = *localtime(&now);
433 privoxy_mutex_unlock(&localtime_mutex);
435 tm_now = *localtime(&now);
438 length = strftime(buffer, buffer_size, "%b %d %H:%M:%S", &tm_now);
439 if (length > (size_t)0)
441 msecs_length = snprintf(buffer+length, buffer_size - length, ".%.3ld", msecs);
443 if (msecs_length > 0)
445 length += (size_t)msecs_length;
456 /*********************************************************************
458 * Function : get_clf_timestamp
460 * Description : Generates a Common Log Format time string.
463 * 1 : buffer = Storage buffer
464 * 2 : buffer_size = Size of storage buffer
466 * Returns : Number of written characters or 0 for error.
468 *********************************************************************/
469 static inline size_t get_clf_timestamp(char *buffer, size_t buffer_size)
472 * Complex because not all OSs have tm_gmtoff or
473 * the %z field in strftime()
478 #ifdef HAVE_LOCALTIME_R
487 gmt = *gmtime_r(&now, &gmt);
488 #elif FEATURE_PTHREAD
489 privoxy_mutex_lock(&gmtime_mutex);
491 privoxy_mutex_unlock(&gmtime_mutex);
495 #ifdef HAVE_LOCALTIME_R
496 tm_now = localtime_r(&now, &dummy);
497 #elif FEATURE_PTHREAD
498 privoxy_mutex_lock(&localtime_mutex);
499 tm_now = localtime(&now);
500 privoxy_mutex_unlock(&localtime_mutex);
502 tm_now = localtime(&now);
504 days = tm_now->tm_yday - gmt.tm_yday;
505 hrs = ((days < -1 ? 24 : 1 < days ? -24 : days * 24) + tm_now->tm_hour - gmt.tm_hour);
506 mins = hrs * 60 + tm_now->tm_min - gmt.tm_min;
508 length = strftime(buffer, buffer_size, "%d/%b/%Y:%H:%M:%S ", tm_now);
510 if (length > (size_t)0)
512 tz_length = snprintf(buffer+length, buffer_size-length,
513 "%+03d%02d", mins / 60, abs(mins) % 60);
517 length += (size_t)tz_length;
528 /*********************************************************************
530 * Function : get_log_level_string
532 * Description : Translates a numerical loglevel into a string.
535 * 1 : loglevel = LOG_LEVEL_FOO
537 * Returns : Log level string.
539 *********************************************************************/
540 static inline const char *get_log_level_string(int loglevel)
542 char *log_level_string = NULL;
544 assert(0 < loglevel);
548 case LOG_LEVEL_ERROR:
549 log_level_string = "Error";
551 case LOG_LEVEL_FATAL:
552 log_level_string = "Fatal error";
555 log_level_string = "Request";
557 case LOG_LEVEL_CONNECT:
558 log_level_string = "Connect";
561 log_level_string = "Writing";
563 case LOG_LEVEL_HEADER:
564 log_level_string = "Header";
567 log_level_string = "Info";
569 case LOG_LEVEL_RE_FILTER:
570 log_level_string = "Re-Filter";
572 #ifdef FEATURE_FORCE_LOAD
573 case LOG_LEVEL_FORCE:
574 log_level_string = "Force";
576 #endif /* def FEATURE_FORCE_LOAD */
577 #ifdef FEATURE_FAST_REDIRECTS
578 case LOG_LEVEL_REDIRECTS:
579 log_level_string = "Redirect";
581 #endif /* def FEATURE_FAST_REDIRECTS */
582 case LOG_LEVEL_DEANIMATE:
583 log_level_string = "Gif-Deanimate";
585 case LOG_LEVEL_CRUNCH:
586 log_level_string = "Crunch";
589 log_level_string = "CGI";
592 log_level_string = "Unknown log level";
595 assert(NULL != log_level_string);
597 return log_level_string;
601 /*********************************************************************
603 * Function : log_error
605 * Description : This is the error-reporting and logging function.
608 * 1 : loglevel = the type of message to be logged
609 * 2 : fmt = the main string we want logged, printf-like
610 * 3 : ... = arguments to be inserted in fmt (printf-like).
614 *********************************************************************/
615 void log_error(int loglevel, const char *fmt, ...)
619 static char *outbuf_save = NULL;
620 char tempbuf[BUFFER_SIZE];
622 const char * src = fmt;
626 * XXX: Make this a config option,
627 * why else do we allocate instead of using
630 size_t log_buffer_size = BUFFER_SIZE;
632 #if defined(_WIN32) && !defined(_WIN_CONSOLE)
634 * Irrespective of debug setting, a GET/POST/CONNECT makes
635 * the taskbar icon animate. (There is an option to disable
636 * this but checking that is handled inside LogShowActivity()).
638 if ((loglevel == LOG_LEVEL_GPC) || (loglevel == LOG_LEVEL_CRUNCH))
642 #endif /* defined(_WIN32) && !defined(_WIN_CONSOLE) */
645 * verify that the loglevel applies to current
646 * settings and that logging is enabled.
647 * Bail out otherwise.
649 if ((0 == (loglevel & debug))
655 if (loglevel == LOG_LEVEL_FATAL)
657 fatal_error("Fatal error. You're not supposed to"
658 "see this message. Please file a bug report.");
663 thread_id = get_thread_id();
664 get_log_timestamp(timestamp, sizeof(timestamp));
666 /* protect the whole function because of the static buffer (outbuf) */
669 if (NULL == outbuf_save)
671 outbuf_save = (char*)zalloc(log_buffer_size + 1); /* +1 for paranoia */
672 if (NULL == outbuf_save)
674 snprintf(tempbuf, sizeof(tempbuf),
675 "%s %08lx Fatal error: Out of memory in log_error().",
676 timestamp, thread_id);
677 fatal_error(tempbuf); /* Exit */
681 outbuf = outbuf_save;
684 * Memsetting the whole buffer to zero (in theory)
685 * makes things easier later on.
687 memset(outbuf, 0, log_buffer_size);
689 /* Add prefix for everything but Common Log Format messages */
690 if (loglevel != LOG_LEVEL_CLF)
692 length = (size_t)snprintf(outbuf, log_buffer_size, "%s %08lx %s: ",
693 timestamp, thread_id, get_log_level_string(loglevel));
696 /* get ready to scan var. args. */
699 /* build formatted message from fmt and var-args */
700 while ((*src) && (length < log_buffer_size-2))
702 const char *sval = NULL; /* %N string */
703 int ival; /* %N string length or an error code */
704 unsigned uval; /* %u value */
705 long lval; /* %l value */
706 unsigned long ulval; /* %ul value */
708 const char *format_string = tempbuf;
713 outbuf[length++] = ch;
715 * XXX: Only necessary on platforms where multiple threads
716 * can write to the buffer at the same time because we
717 * don't support mutexes (OS/2 for example).
719 outbuf[length] = '\0';
722 outbuf[length] = '\0';
730 ival = va_arg( ap, int );
731 snprintf(tempbuf, sizeof(tempbuf), "%d", ival);
734 uval = va_arg( ap, unsigned );
735 snprintf(tempbuf, sizeof(tempbuf), "%u", uval);
738 /* this is a modifier that must be followed by u, lu, or d */
742 lval = va_arg( ap, long );
743 snprintf(tempbuf, sizeof(tempbuf), "%ld", lval);
747 ulval = va_arg( ap, unsigned long );
748 snprintf(tempbuf, sizeof(tempbuf), "%lu", ulval);
750 else if ((ch == 'l') && (*src == 'u'))
752 unsigned long long lluval = va_arg(ap, unsigned long long);
753 snprintf(tempbuf, sizeof(tempbuf), "%llu", lluval);
758 snprintf(tempbuf, sizeof(tempbuf), "Bad format string: \"%s\"", fmt);
759 loglevel = LOG_LEVEL_FATAL;
764 * Note that char paramaters are converted to int, so we need to
765 * pass "int" to va_arg. (See K&R, 2nd ed, section A7.3.2, page 202)
767 tempbuf[0] = (char) va_arg(ap, int);
771 format_string = va_arg(ap, char *);
772 if (format_string == NULL)
774 format_string = "[null]";
779 * Non-standard: Print a counted unterminated string.
780 * Takes 2 parameters: int length, const char * string.
782 ival = va_arg(ap, int);
783 sval = va_arg(ap, char *);
786 format_string = "[null]";
792 /* That's ok (but stupid) */
798 * That's not ok (and even more stupid)
801 format_string = "[counted string lenght < 0]";
804 else if ((size_t)ival >= sizeof(tempbuf))
807 * String is too long, copy as much as possible.
808 * It will be further truncated later.
810 memcpy(tempbuf, sval, sizeof(tempbuf)-1);
811 tempbuf[sizeof(tempbuf)-1] = '\0';
815 memcpy(tempbuf, sval, (size_t) ival);
816 tempbuf[ival] = '\0';
820 /* Non-standard: Print error code from errno */
822 ival = WSAGetLastError();
823 format_string = w32_socket_strerr(ival, tempbuf);
828 format_string = os2_socket_strerr(ival, tempbuf);
833 format_string = strerror(ival);
835 #else /* ifndef _WIN32 */
838 format_string = strerror(ival);
839 #else /* ifndef HAVE_STRERROR */
840 format_string = NULL;
841 #endif /* ndef HAVE_STRERROR */
844 snprintf(tempbuf, sizeof(tempbuf), "(errno = %d)", ival);
846 #endif /* ndef _WIN32 */
849 /* Non-standard: Print a Common Log File timestamp */
850 get_clf_timestamp(tempbuf, sizeof(tempbuf));
853 snprintf(tempbuf, sizeof(tempbuf), "Bad format string: \"%s\"", fmt);
854 loglevel = LOG_LEVEL_FATAL;
858 assert(length < log_buffer_size);
859 length += strlcpy(outbuf + length, format_string, log_buffer_size - length);
861 if (length >= log_buffer_size-2)
863 static char warning[] = "... [too long, truncated]";
865 length = log_buffer_size - sizeof(warning) - 1;
866 length += strlcpy(outbuf + length, warning, log_buffer_size - length);
867 assert(length < log_buffer_size);
873 /* done with var. args */
876 assert(length < log_buffer_size);
877 length += strlcpy(outbuf + length, "\n", log_buffer_size - length);
879 /* Some sanity checks */
880 if ((length >= log_buffer_size)
881 || (outbuf[log_buffer_size-1] != '\0')
882 || (outbuf[log_buffer_size] != '\0')
885 /* Repeat as assertions */
886 assert(length < log_buffer_size);
887 assert(outbuf[log_buffer_size-1] == '\0');
889 * outbuf's real size is log_buffer_size+1,
890 * so while this looks like an off-by-one,
891 * we're only checking our paranoia byte.
893 assert(outbuf[log_buffer_size] == '\0');
895 snprintf(outbuf, log_buffer_size,
896 "%s %08lx Fatal error: log_error()'s sanity checks failed."
897 "length: %d. Exiting.",
898 timestamp, thread_id, (int)length);
899 loglevel = LOG_LEVEL_FATAL;
904 * On Windows this is acceptable in case
905 * we are logging to the GUI window only.
907 assert(NULL != logfp);
910 if (loglevel == LOG_LEVEL_FATAL)
912 fatal_error(outbuf_save);
917 fputs(outbuf_save, logfp);
920 #if defined(_WIN32) && !defined(_WIN_CONSOLE)
921 /* Write to display */
922 LogPutString(outbuf_save);
923 #endif /* defined(_WIN32) && !defined(_WIN_CONSOLE) */
930 /*********************************************************************
932 * Function : jb_err_to_string
934 * Description : Translates JB_ERR_FOO codes into strings.
936 * XXX: the type of error codes is jb_err
937 * but the typedef'inition is currently not
938 * visible to all files that include errlog.h.
941 * 1 : error = a valid jb_err code
943 * Returns : A string with the jb_err translation
945 *********************************************************************/
946 const char *jb_err_to_string(int error)
951 return "Success, no error";
953 return "Out of memory";
954 case JB_ERR_CGI_PARAMS:
955 return "Missing or corrupt CGI parameters";
957 return "Error opening, reading or writing a file";
959 return "Parse error";
960 case JB_ERR_MODIFIED:
961 return "File has been modified outside of the CGI actions editor.";
962 case JB_ERR_COMPRESS:
963 return "(De)compression failure";
966 return "Unknown error";
969 return "Internal error";
973 /*********************************************************************
975 * Function : w32_socket_strerr
977 * Description : Translate the return value from WSAGetLastError()
981 * 1 : errcode = The return value from WSAGetLastError().
982 * 2 : tmp_buf = A temporary buffer that might be used to
985 * Returns : String representing the error code. This may be
986 * a global string constant or a string stored in
989 *********************************************************************/
990 static char *w32_socket_strerr(int errcode, char *tmp_buf)
992 #define TEXT_FOR_ERROR(code,text) \
993 if (errcode == code) \
995 return #code " - " text; \
998 TEXT_FOR_ERROR(WSAEACCES, "Permission denied")
999 TEXT_FOR_ERROR(WSAEADDRINUSE, "Address already in use.")
1000 TEXT_FOR_ERROR(WSAEADDRNOTAVAIL, "Cannot assign requested address.");
1001 TEXT_FOR_ERROR(WSAEAFNOSUPPORT, "Address family not supported by protocol family.");
1002 TEXT_FOR_ERROR(WSAEALREADY, "Operation already in progress.");
1003 TEXT_FOR_ERROR(WSAECONNABORTED, "Software caused connection abort.");
1004 TEXT_FOR_ERROR(WSAECONNREFUSED, "Connection refused.");
1005 TEXT_FOR_ERROR(WSAECONNRESET, "Connection reset by peer.");
1006 TEXT_FOR_ERROR(WSAEDESTADDRREQ, "Destination address required.");
1007 TEXT_FOR_ERROR(WSAEFAULT, "Bad address.");
1008 TEXT_FOR_ERROR(WSAEHOSTDOWN, "Host is down.");
1009 TEXT_FOR_ERROR(WSAEHOSTUNREACH, "No route to host.");
1010 TEXT_FOR_ERROR(WSAEINPROGRESS, "Operation now in progress.");
1011 TEXT_FOR_ERROR(WSAEINTR, "Interrupted function call.");
1012 TEXT_FOR_ERROR(WSAEINVAL, "Invalid argument.");
1013 TEXT_FOR_ERROR(WSAEISCONN, "Socket is already connected.");
1014 TEXT_FOR_ERROR(WSAEMFILE, "Too many open sockets.");
1015 TEXT_FOR_ERROR(WSAEMSGSIZE, "Message too long.");
1016 TEXT_FOR_ERROR(WSAENETDOWN, "Network is down.");
1017 TEXT_FOR_ERROR(WSAENETRESET, "Network dropped connection on reset.");
1018 TEXT_FOR_ERROR(WSAENETUNREACH, "Network is unreachable.");
1019 TEXT_FOR_ERROR(WSAENOBUFS, "No buffer space available.");
1020 TEXT_FOR_ERROR(WSAENOPROTOOPT, "Bad protocol option.");
1021 TEXT_FOR_ERROR(WSAENOTCONN, "Socket is not connected.");
1022 TEXT_FOR_ERROR(WSAENOTSOCK, "Socket operation on non-socket.");
1023 TEXT_FOR_ERROR(WSAEOPNOTSUPP, "Operation not supported.");
1024 TEXT_FOR_ERROR(WSAEPFNOSUPPORT, "Protocol family not supported.");
1025 TEXT_FOR_ERROR(WSAEPROCLIM, "Too many processes.");
1026 TEXT_FOR_ERROR(WSAEPROTONOSUPPORT, "Protocol not supported.");
1027 TEXT_FOR_ERROR(WSAEPROTOTYPE, "Protocol wrong type for socket.");
1028 TEXT_FOR_ERROR(WSAESHUTDOWN, "Cannot send after socket shutdown.");
1029 TEXT_FOR_ERROR(WSAESOCKTNOSUPPORT, "Socket type not supported.");
1030 TEXT_FOR_ERROR(WSAETIMEDOUT, "Connection timed out.");
1031 TEXT_FOR_ERROR(WSAEWOULDBLOCK, "Resource temporarily unavailable.");
1032 TEXT_FOR_ERROR(WSAHOST_NOT_FOUND, "Host not found.");
1033 TEXT_FOR_ERROR(WSANOTINITIALISED, "Successful WSAStartup not yet performed.");
1034 TEXT_FOR_ERROR(WSANO_DATA, "Valid name, no data record of requested type.");
1035 TEXT_FOR_ERROR(WSANO_RECOVERY, "This is a non-recoverable error.");
1036 TEXT_FOR_ERROR(WSASYSNOTREADY, "Network subsystem is unavailable.");
1037 TEXT_FOR_ERROR(WSATRY_AGAIN, "Non-authoritative host not found.");
1038 TEXT_FOR_ERROR(WSAVERNOTSUPPORTED, "WINSOCK.DLL version out of range.");
1039 TEXT_FOR_ERROR(WSAEDISCON, "Graceful shutdown in progress.");
1041 * The following error codes are documented in the Microsoft WinSock
1042 * reference guide, but don't actually exist.
1044 * TEXT_FOR_ERROR(WSA_INVALID_HANDLE, "Specified event object handle is invalid.");
1045 * TEXT_FOR_ERROR(WSA_INVALID_PARAMETER, "One or more parameters are invalid.");
1046 * TEXT_FOR_ERROR(WSAINVALIDPROCTABLE, "Invalid procedure table from service provider.");
1047 * TEXT_FOR_ERROR(WSAINVALIDPROVIDER, "Invalid service provider version number.");
1048 * TEXT_FOR_ERROR(WSA_IO_PENDING, "Overlapped operations will complete later.");
1049 * TEXT_FOR_ERROR(WSA_IO_INCOMPLETE, "Overlapped I/O event object not in signaled state.");
1050 * TEXT_FOR_ERROR(WSA_NOT_ENOUGH_MEMORY, "Insufficient memory available.");
1051 * TEXT_FOR_ERROR(WSAPROVIDERFAILEDINIT, "Unable to initialize a service provider.");
1052 * TEXT_FOR_ERROR(WSASYSCALLFAILURE, "System call failure.");
1053 * TEXT_FOR_ERROR(WSA_OPERATION_ABORTED, "Overlapped operation aborted.");
1056 sprintf(tmp_buf, "(error number %d)", errcode);
1059 #endif /* def _WIN32 */
1063 /*********************************************************************
1065 * Function : os2_socket_strerr
1067 * Description : Translate the return value from sock_errno()
1071 * 1 : errcode = The return value from sock_errno().
1072 * 2 : tmp_buf = A temporary buffer that might be used to
1075 * Returns : String representing the error code. This may be
1076 * a global string constant or a string stored in
1079 *********************************************************************/
1080 static char *os2_socket_strerr(int errcode, char *tmp_buf)
1082 #define TEXT_FOR_ERROR(code,text) \
1083 if (errcode == code) \
1085 return #code " - " text; \
1088 TEXT_FOR_ERROR(SOCEPERM , "Not owner.")
1089 TEXT_FOR_ERROR(SOCESRCH , "No such process.")
1090 TEXT_FOR_ERROR(SOCEINTR , "Interrupted system call.")
1091 TEXT_FOR_ERROR(SOCENXIO , "No such device or address.")
1092 TEXT_FOR_ERROR(SOCEBADF , "Bad file number.")
1093 TEXT_FOR_ERROR(SOCEACCES , "Permission denied.")
1094 TEXT_FOR_ERROR(SOCEFAULT , "Bad address.")
1095 TEXT_FOR_ERROR(SOCEINVAL , "Invalid argument.")
1096 TEXT_FOR_ERROR(SOCEMFILE , "Too many open files.")
1097 TEXT_FOR_ERROR(SOCEPIPE , "Broken pipe.")
1098 TEXT_FOR_ERROR(SOCEWOULDBLOCK , "Operation would block.")
1099 TEXT_FOR_ERROR(SOCEINPROGRESS , "Operation now in progress.")
1100 TEXT_FOR_ERROR(SOCEALREADY , "Operation already in progress.")
1101 TEXT_FOR_ERROR(SOCENOTSOCK , "Socket operation on non-socket.")
1102 TEXT_FOR_ERROR(SOCEDESTADDRREQ , "Destination address required.")
1103 TEXT_FOR_ERROR(SOCEMSGSIZE , "Message too long.")
1104 TEXT_FOR_ERROR(SOCEPROTOTYPE , "Protocol wrong type for socket.")
1105 TEXT_FOR_ERROR(SOCENOPROTOOPT , "Protocol not available.")
1106 TEXT_FOR_ERROR(SOCEPROTONOSUPPORT, "Protocol not supported.")
1107 TEXT_FOR_ERROR(SOCESOCKTNOSUPPORT, "Socket type not supported.")
1108 TEXT_FOR_ERROR(SOCEOPNOTSUPP , "Operation not supported.")
1109 TEXT_FOR_ERROR(SOCEPFNOSUPPORT , "Protocol family not supported.")
1110 TEXT_FOR_ERROR(SOCEAFNOSUPPORT , "Address family not supported by protocol family.")
1111 TEXT_FOR_ERROR(SOCEADDRINUSE , "Address already in use.")
1112 TEXT_FOR_ERROR(SOCEADDRNOTAVAIL , "Can't assign requested address.")
1113 TEXT_FOR_ERROR(SOCENETDOWN , "Network is down.")
1114 TEXT_FOR_ERROR(SOCENETUNREACH , "Network is unreachable.")
1115 TEXT_FOR_ERROR(SOCENETRESET , "Network dropped connection on reset.")
1116 TEXT_FOR_ERROR(SOCECONNABORTED , "Software caused connection abort.")
1117 TEXT_FOR_ERROR(SOCECONNRESET , "Connection reset by peer.")
1118 TEXT_FOR_ERROR(SOCENOBUFS , "No buffer space available.")
1119 TEXT_FOR_ERROR(SOCEISCONN , "Socket is already connected.")
1120 TEXT_FOR_ERROR(SOCENOTCONN , "Socket is not connected.")
1121 TEXT_FOR_ERROR(SOCESHUTDOWN , "Can't send after socket shutdown.")
1122 TEXT_FOR_ERROR(SOCETOOMANYREFS , "Too many references: can't splice.")
1123 TEXT_FOR_ERROR(SOCETIMEDOUT , "Operation timed out.")
1124 TEXT_FOR_ERROR(SOCECONNREFUSED , "Connection refused.")
1125 TEXT_FOR_ERROR(SOCELOOP , "Too many levels of symbolic links.")
1126 TEXT_FOR_ERROR(SOCENAMETOOLONG , "File name too long.")
1127 TEXT_FOR_ERROR(SOCEHOSTDOWN , "Host is down.")
1128 TEXT_FOR_ERROR(SOCEHOSTUNREACH , "No route to host.")
1129 TEXT_FOR_ERROR(SOCENOTEMPTY , "Directory not empty.")
1130 TEXT_FOR_ERROR(SOCEOS2ERR , "OS/2 Error.")
1132 sprintf(tmp_buf, "(error number %d)", errcode);
1135 #endif /* def __OS2__ */