syslog.c
上传用户:zibowangxu
上传日期:2007-01-04
资源大小:331k
文件大小:4k
源码类别:

Ftp客户端

开发平台:

Unix_Linux

  1. /****************************************************************************  
  2.  
  3.   Copyright (c) 1999 WU-FTPD Development Group.  
  4.   All rights reserved.
  5.   
  6.   Portions Copyright (c) 1980, 1985, 1988, 1989, 1990, 1991, 1993, 1994
  7.     The Regents of the University of California.
  8.   Portions Copyright (c) 1993, 1994 Washington University in Saint Louis.
  9.   Portions Copyright (c) 1996, 1998 Berkeley Software Design, Inc.
  10.   Portions Copyright (c) 1989 Massachusetts Institute of Technology.
  11.   Portions Copyright (c) 1998 Sendmail, Inc.
  12.   Portions Copyright (c) 1983, 1995, 1996, 1997 Eric P.  Allman.
  13.   Portions Copyright (c) 1997 by Stan Barber.
  14.   Portions Copyright (c) 1997 by Kent Landfield.
  15.   Portions Copyright (c) 1991, 1992, 1993, 1994, 1995, 1996, 1997
  16.     Free Software Foundation, Inc.  
  17.  
  18.   Use and distribution of this software and its source code are governed 
  19.   by the terms and conditions of the WU-FTPD Software License ("LICENSE").
  20.  
  21.   If you did not receive a copy of the license, it may be obtained online
  22.   at http://www.wu-ftpd.org/license.html.
  23.  
  24.   $Id: syslog.c,v 1.7 1999/09/02 14:04:30 wuftpd Exp $
  25.  
  26. ****************************************************************************/
  27. #ifdef DEC
  28. #include <stdlib.h>
  29. #endif
  30. #include <stdio.h>
  31. #include <string.h>
  32. #include <malloc.h>
  33. #ifdef DEC
  34. #include <sys/syslog_pri.h>
  35. #else
  36. #include <syslog.h>
  37. #endif
  38. #include <varargs.h>
  39. #include <errno.h>
  40. #include <fcntl.h>
  41. #include <sys/types.h>
  42. #include <sys/time.h>
  43. #include <sys/socket.h>
  44. #include <sys/un.h>
  45. extern int sys_nerr;
  46. extern char *sys_errlist[];
  47. extern int errno;
  48. static int logfd = -1;
  49. static char *logident = NULL;
  50. static int logopt = 0, logfac = 0;
  51. static int openlogfd()
  52. {
  53.     int err;
  54.     struct sockaddr_un ad;
  55.     if (logfd >= 0)
  56. return 0;
  57.     if ((logfd = socket(PF_UNIX, SOCK_DGRAM, 0)) < 0)
  58. return logfd;
  59.     if (err = fcntl(logfd, F_SETFD, 1))
  60. return close(logfd), logfd = -1, err;
  61.     ad.sun_family = AF_UNIX;
  62.     strcpy(ad.sun_path, "/dev/log");
  63.     if (err = connect(logfd, (struct sockaddr *) &ad, sizeof ad))
  64. return close(logfd), logfd = -1, err;
  65.     return 0;
  66. }
  67. int openlog(ident, opt, facility)
  68. #ifdef DEC
  69.      const char *ident;
  70. #else
  71.      char *ident;
  72. #endif
  73.      int opt, facility;
  74. {
  75.     int err;
  76.     char *p;
  77.     if (opt & ~(LOG_PID | LOG_ODELAY | LOG_NDELAY | LOG_NOWAIT))
  78. return errno = EINVAL, -1;
  79.     if (facility & ~LOG_FACMASK)
  80. return errno = EINVAL, -1;
  81.     logopt = opt;
  82.     logfac = facility;
  83.     if ((p = malloc(strlen(ident) + 1)) == NULL)
  84. return -1;
  85.     strcpy(p, ident);
  86.     if (logident != NULL)
  87. free(logident);
  88.     logident = p;
  89.     if (logopt & LOG_NDELAY && (err = openlogfd()))
  90. return err;
  91.     return 0;
  92. }
  93. int vsyslog(priority, message, ap)
  94.      int priority;
  95. #ifdef DEC
  96.      const char *message;
  97. #else
  98.      char *message;
  99. #endif
  100.      va_list ap;
  101. {
  102.     int err;
  103.     char *p, *q, s[4096], format[512];
  104.     time_t tm;
  105.     if ((priority & LOG_FACMASK) == 0)
  106. if (logfac)
  107.     priority |= logfac;
  108. else
  109.     priority |= LOG_USER;
  110.     sprintf(s, "<%u>", priority & (LOG_FACMASK | LOG_PRIMASK));
  111.     time(&tm);
  112.     strftime(s + strlen(s), 17, "%b %e %T ", localtime(&tm));
  113.     if (logident != NULL)
  114. strcat(s, logident);
  115.     else
  116. strcat(s, "syslog");
  117.     if (logopt & LOG_PID)
  118. sprintf(s + strlen(s), "[%u]", getpid());
  119.     strcat(s, ": ");
  120.     for (p = message, q = format; *p;)
  121. if (*p == '%')
  122.     if (p[1] == 'm') {
  123. strcpy(q, errno >= 0 && errno < sys_nerr ?
  124.        sys_errlist[errno] : "Unknown error");
  125. q = format + strlen(format);
  126. p += 2;
  127.     }
  128.     else {
  129. *q++ = *p++;
  130. while (strchr("$-+ #*0123456789.l", *p) != NULL)
  131.     *q++ = *p++;
  132. if (*p)
  133.     *q++ = *p++;
  134.     }
  135. else
  136.     *q++ = *p++;
  137.     *q = 0;
  138.     vsprintf(s + strlen(s), format, ap);
  139.     strcat(s, "n");
  140.     if (err = openlogfd())
  141. return err;
  142.     if ((err = send(logfd, s, strlen(s), 0)) < 0)
  143. return err;
  144.     return 0;
  145. }
  146. int syslog(priority, message, va_alist)
  147.      int priority;
  148.      char *message;
  149.      va_dcl
  150. {
  151.     int err;
  152.     va_list ap;
  153.     va_start(ap);
  154.     err = vsyslog(priority, message, ap);
  155.     va_end(ap);
  156.     return err;
  157. }
  158. #ifdef DEC
  159. void closelog()
  160. {
  161.     if (logfd > -1) {
  162. if (close(logfd) == 0)
  163.     logfd = -1;
  164.     }
  165.     return;
  166. }
  167. #else
  168. int closelog()
  169. {
  170.     int err;
  171.     if (logfd < 0)
  172. return 0;
  173.     if ((err = close(logfd)) == 0)
  174. logfd = -1;
  175.     return err;
  176. }
  177. #endif