The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/sys/syslog.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*
    2  * Copyright (c) 1982, 1986, 1988, 1993
    3  *      The Regents of the University of California.  All rights reserved.
    4  *
    5  * Redistribution and use in source and binary forms, with or without
    6  * modification, are permitted provided that the following conditions
    7  * are met:
    8  * 1. Redistributions of source code must retain the above copyright
    9  *    notice, this list of conditions and the following disclaimer.
   10  * 2. Redistributions in binary form must reproduce the above copyright
   11  *    notice, this list of conditions and the following disclaimer in the
   12  *    documentation and/or other materials provided with the distribution.
   13  * 3. All advertising materials mentioning features or use of this software
   14  *    must display the following acknowledgement:
   15  *      This product includes software developed by the University of
   16  *      California, Berkeley and its contributors.
   17  * 4. Neither the name of the University nor the names of its contributors
   18  *    may be used to endorse or promote products derived from this software
   19  *    without specific prior written permission.
   20  *
   21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
   22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
   25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
   30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   31  * SUCH DAMAGE.
   32  *
   33  *      @(#)syslog.h    8.1 (Berkeley) 6/2/93
   34  * $FreeBSD: releng/5.2/sys/sys/syslog.h 102227 2002-08-21 16:20:02Z mike $
   35  */
   36 
   37 #ifndef _SYS_SYSLOG_H_
   38 #define _SYS_SYSLOG_H_
   39 
   40 #define _PATH_LOG       "/var/run/log"
   41 #define _PATH_OLDLOG    "/dev/log"      /* backward compatibility */
   42 
   43 /*
   44  * priorities/facilities are encoded into a single 32-bit quantity, where the
   45  * bottom 3 bits are the priority (0-7) and the top 28 bits are the facility
   46  * (0-big number).  Both the priorities and the facilities map roughly
   47  * one-to-one to strings in the syslogd(8) source code.  This mapping is
   48  * included in this file.
   49  *
   50  * priorities (these are ordered)
   51  */
   52 #define LOG_EMERG       0       /* system is unusable */
   53 #define LOG_ALERT       1       /* action must be taken immediately */
   54 #define LOG_CRIT        2       /* critical conditions */
   55 #define LOG_ERR         3       /* error conditions */
   56 #define LOG_WARNING     4       /* warning conditions */
   57 #define LOG_NOTICE      5       /* normal but significant condition */
   58 #define LOG_INFO        6       /* informational */
   59 #define LOG_DEBUG       7       /* debug-level messages */
   60 
   61 #define LOG_PRIMASK     0x07    /* mask to extract priority part (internal) */
   62                                 /* extract priority */
   63 #define LOG_PRI(p)      ((p) & LOG_PRIMASK)
   64 #define LOG_MAKEPRI(fac, pri)   ((fac) | (pri))
   65 
   66 #ifdef SYSLOG_NAMES
   67 #define INTERNAL_NOPRI  0x10    /* the "no priority" priority */
   68                                 /* mark "facility" */
   69 #define INTERNAL_MARK   LOG_MAKEPRI((LOG_NFACILITIES<<3), 0)
   70 typedef struct _code {
   71         const char      *c_name;
   72         int             c_val;
   73 } CODE;
   74 
   75 CODE prioritynames[] = {
   76         { "alert",      LOG_ALERT,      },
   77         { "crit",       LOG_CRIT,       },
   78         { "debug",      LOG_DEBUG,      },
   79         { "emerg",      LOG_EMERG,      },
   80         { "err",        LOG_ERR,        },
   81         { "error",      LOG_ERR,        },      /* DEPRECATED */
   82         { "info",       LOG_INFO,       },
   83         { "none",       INTERNAL_NOPRI, },      /* INTERNAL */
   84         { "notice",     LOG_NOTICE,     },
   85         { "panic",      LOG_EMERG,      },      /* DEPRECATED */
   86         { "warn",       LOG_WARNING,    },      /* DEPRECATED */
   87         { "warning",    LOG_WARNING,    },
   88         { NULL,         -1,             }
   89 };
   90 #endif
   91 
   92 /* facility codes */
   93 #define LOG_KERN        (0<<3)  /* kernel messages */
   94 #define LOG_USER        (1<<3)  /* random user-level messages */
   95 #define LOG_MAIL        (2<<3)  /* mail system */
   96 #define LOG_DAEMON      (3<<3)  /* system daemons */
   97 #define LOG_AUTH        (4<<3)  /* authorization messages */
   98 #define LOG_SYSLOG      (5<<3)  /* messages generated internally by syslogd */
   99 #define LOG_LPR         (6<<3)  /* line printer subsystem */
  100 #define LOG_NEWS        (7<<3)  /* network news subsystem */
  101 #define LOG_UUCP        (8<<3)  /* UUCP subsystem */
  102 #define LOG_CRON        (9<<3)  /* clock daemon */
  103 #define LOG_AUTHPRIV    (10<<3) /* authorization messages (private) */
  104                                 /* Facility #10 clashes in DEC UNIX, where */
  105                                 /* it's defined as LOG_MEGASAFE for AdvFS  */
  106                                 /* event logging.                          */
  107 #define LOG_FTP         (11<<3) /* ftp daemon */
  108 #define LOG_NTP         (12<<3) /* NTP subsystem */
  109 #define LOG_SECURITY    (13<<3) /* security subsystems (firewalling, etc.) */
  110 #define LOG_CONSOLE     (14<<3) /* /dev/console output */
  111 
  112         /* other codes through 15 reserved for system use */
  113 #define LOG_LOCAL0      (16<<3) /* reserved for local use */
  114 #define LOG_LOCAL1      (17<<3) /* reserved for local use */
  115 #define LOG_LOCAL2      (18<<3) /* reserved for local use */
  116 #define LOG_LOCAL3      (19<<3) /* reserved for local use */
  117 #define LOG_LOCAL4      (20<<3) /* reserved for local use */
  118 #define LOG_LOCAL5      (21<<3) /* reserved for local use */
  119 #define LOG_LOCAL6      (22<<3) /* reserved for local use */
  120 #define LOG_LOCAL7      (23<<3) /* reserved for local use */
  121 
  122 #define LOG_NFACILITIES 24      /* current number of facilities */
  123 #define LOG_FACMASK     0x03f8  /* mask to extract facility part */
  124                                 /* facility of pri */
  125 #define LOG_FAC(p)      (((p) & LOG_FACMASK) >> 3)
  126 
  127 #ifdef SYSLOG_NAMES
  128 CODE facilitynames[] = {
  129         { "auth",       LOG_AUTH,       },
  130         { "authpriv",   LOG_AUTHPRIV,   },
  131         { "console",    LOG_CONSOLE,    },
  132         { "cron",       LOG_CRON,       },
  133         { "daemon",     LOG_DAEMON,     },
  134         { "ftp",        LOG_FTP,        },
  135         { "kern",       LOG_KERN,       },
  136         { "lpr",        LOG_LPR,        },
  137         { "mail",       LOG_MAIL,       },
  138         { "mark",       INTERNAL_MARK,  },      /* INTERNAL */
  139         { "news",       LOG_NEWS,       },
  140         { "ntp",        LOG_NTP,        },
  141         { "security",   LOG_SECURITY,   },
  142         { "syslog",     LOG_SYSLOG,     },
  143         { "user",       LOG_USER,       },
  144         { "uucp",       LOG_UUCP,       },
  145         { "local0",     LOG_LOCAL0,     },
  146         { "local1",     LOG_LOCAL1,     },
  147         { "local2",     LOG_LOCAL2,     },
  148         { "local3",     LOG_LOCAL3,     },
  149         { "local4",     LOG_LOCAL4,     },
  150         { "local5",     LOG_LOCAL5,     },
  151         { "local6",     LOG_LOCAL6,     },
  152         { "local7",     LOG_LOCAL7,     },
  153         { NULL,         -1,             }
  154 };
  155 #endif
  156 
  157 #ifdef _KERNEL
  158 #define LOG_PRINTF      -1      /* pseudo-priority to indicate use of printf */
  159 #endif
  160 
  161 /*
  162  * arguments to setlogmask.
  163  */
  164 #define LOG_MASK(pri)   (1 << (pri))            /* mask for one priority */
  165 #define LOG_UPTO(pri)   ((1 << ((pri)+1)) - 1)  /* all priorities through pri */
  166 
  167 /*
  168  * Option flags for openlog.
  169  *
  170  * LOG_ODELAY no longer does anything.
  171  * LOG_NDELAY is the inverse of what it used to be.
  172  */
  173 #define LOG_PID         0x01    /* log the pid with each message */
  174 #define LOG_CONS        0x02    /* log on the console if errors in sending */
  175 #define LOG_ODELAY      0x04    /* delay open until first syslog() (default) */
  176 #define LOG_NDELAY      0x08    /* don't delay open */
  177 #define LOG_NOWAIT      0x10    /* don't wait for console forks: DEPRECATED */
  178 #define LOG_PERROR      0x20    /* log to stderr as well */
  179 
  180 #ifdef _KERNEL
  181 
  182 #else /* not _KERNEL */
  183 
  184 /*
  185  * Don't use va_list in the vsyslog() prototype.   Va_list is typedef'd in two
  186  * places (<machine/varargs.h> and <machine/stdarg.h>), so if we include one
  187  * of them here we may collide with the utility's includes.  It's unreasonable
  188  * for utilities to have to include one of them to include syslog.h, so we get
  189  * __va_list from <sys/_types.h> and use it.
  190  */
  191 #include <sys/cdefs.h>
  192 #include <sys/_types.h>
  193 
  194 __BEGIN_DECLS
  195 void    closelog(void);
  196 void    openlog(const char *, int, int);
  197 int     setlogmask(int);
  198 void    syslog(int, const char *, ...) __printflike(2, 3);
  199 void    vsyslog(int, const char *, __va_list) __printflike(2, 0);
  200 __END_DECLS
  201 
  202 #endif /* !_KERNEL */
  203 
  204 #endif

Cache object: 46dae0e34e65fba35437c4802652c85c


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.