⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 error.c

📁 一个开源的VPN原码
💻 C
字号:
/* *  OpenVPN -- An application to securely tunnel IP networks *             over a single UDP port, with support for TLS-based *             session authentication and key exchange, *             packet encryption, packet authentication, and *             packet compression. * *  Copyright (C) 2002 James Yonan <jim@yonan.net> * *  This program is free software; you can redistribute it and/or modify *  it under the terms of the GNU General Public License as published by *  the Free Software Foundation; either version 2 of the License, or *  (at your option) any later version. * *  This program is distributed in the hope that it will be useful, *  but WITHOUT ANY WARRANTY; without even the implied warranty of *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the *  GNU General Public License for more details. * *  You should have received a copy of the GNU General Public License *  along with this program (see the file COPYING included with this *  distribution); if not, write to the Free Software Foundation, Inc., *  59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */#include "config.h"#include "syshead.h"#include "error.h"#include "thread.h"#include "misc.h"#ifdef USE_CRYPTO#include <openssl/err.h>#endif#include "memdbg.h"/* Globals */bool _use_syslog;int _debug_level;int _cs_info_level;int _cs_verbose_level;/* Mute state */static int mute_cutoff;static int mute_count;static int mute_category;voidset_debug_level (int level){  _debug_level = level;}voidset_mute_cutoff (int cutoff){  mute_cutoff = cutoff;}voiderror_reset (){  _use_syslog = false;  _debug_level = 1;  _cs_info_level = 0;  _cs_verbose_level = 0;  mute_cutoff = 0;  mute_count = 0;  mute_category = 0;}voidset_check_status (int info_level, int verbose_level){  _cs_info_level = info_level;  _cs_verbose_level = verbose_level;}#define SWAP { tmp = m1; m1 = m2; m2 = tmp; }#define ERR_BUF_SIZE 1024int msg_line_num;void_msg (unsigned int flags, const char *format, ...){  va_list arglist;  int level;  char msg1[ERR_BUF_SIZE];  char msg2[ERR_BUF_SIZE];  char *m1;  char *m2;  char *tmp;  int e;  e = errno;  if (!(flags & M_NOLOCK))    mutex_lock (L_MSG);  /*   * Apply muting filter.   */  if (mute_cutoff > 0 && !(flags & M_NOMUTE))    {      const int mute_level = DECODE_MUTE_LEVEL(flags);      if (mute_level > 0 && mute_level == mute_category)	{	  if (++mute_count > mute_cutoff)	    {	      if (!(flags & M_NOLOCK))		mutex_unlock (L_MSG);	      return;	    }	}      else	{	  const int suppressed = mute_count - mute_cutoff;	  if (suppressed > 0)	    msg (M_INFO | M_NOLOCK | M_NOMUTE,		 "%d variation(s) on previous %d message(s) suppressed by --mute",		 suppressed,		 mute_cutoff);	  mute_count = 1;	  mute_category = mute_level;	}    }  m1 = msg1;  m2 = msg2;  va_start (arglist, format);  vsnprintf (m1, ERR_BUF_SIZE, format, arglist);  va_end (arglist);  if ((flags & M_ERRNO) && e)    {#ifdef HAVE_STRERROR      snprintf (m2, ERR_BUF_SIZE, "%s: %s (errno=%d)", m1, strerror (e), e);#else      snprintf (m2, ERR_BUF_SIZE, "%s (errno=%d)", m1, e);#endif      SWAP;    }#ifdef USE_CRYPTO  if (flags & M_SSL)    {      int nerrs = 0;      int err;      while (err = ERR_get_error ())	{	  snprintf (m2, ERR_BUF_SIZE, "%s: %s", m1, ERR_error_string (err, NULL));	  SWAP;	  ++nerrs;	}      if (!nerrs)	{	  snprintf (m2, ERR_BUF_SIZE, "%s (OpenSSL)", m1);	  SWAP;	}    }#endif  if (flags & (M_FATAL|M_NONFATAL))    level = LOG_ERR;  else if (flags & M_WARN)    level = LOG_WARNING;  else    level = LOG_NOTICE;  if (_use_syslog)    {#if defined(HAVE_OPENLOG) && defined(HAVE_SYSLOG)      syslog (level, "%s", m1);#endif    }  else    {#ifdef USE_PTHREAD      printf ("%d[%d]: %s\n", msg_line_num, thread_number (), m1);#else      printf ("%d: %s\n", msg_line_num, m1);#endif      ++msg_line_num;      fflush(stdout);    }  if (flags & M_FATAL)    msg (M_INFO | M_NOLOCK, "Exiting");  if (!(flags & M_NOLOCK))    mutex_unlock (L_MSG);    if (flags & M_FATAL)    exit (1);}voidassert_failed (const char *filename, int line){  msg (M_FATAL, "Assertion failed at %s:%d", filename, line);}voidbecome_daemon (const char *cd){#if defined(HAVE_OPENLOG) && defined(HAVE_SYSLOG)  if (daemon (cd != NULL, 0) < 0)    msg (M_ERR, "daemon() failed");  openlog ("openvpn", LOG_PID, LOG_DAEMON);#else  msg (M_WARN, "Warning on use of --daemon: this operating system lacks daemon logging features, therefore when I become a daemon, I won't be able to log status or error messages");  if (daemon (cd != NULL, 0) < 0)    msg (M_ERR, "daemon() failed");#endif  _use_syslog = true;}voidbecome_inetd_server (){#if defined(HAVE_OPENLOG) && defined(HAVE_SYSLOG)  openlog ("openvpn", LOG_PID, LOG_DAEMON);#else  msg (M_WARN, "Warning on use of --inetd: this operating system lacks syslog logging features, therefore I won't be able to log status or error messages as an inetd server");#endif  _use_syslog = true;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -