1c39934eaSBrian Somers /*- 2*4d846d26SWarner Losh * SPDX-License-Identifier: BSD-2-Clause 31de7b4b8SPedro F. Giffuni * 4c39934eaSBrian Somers * Copyright (c) 1997 Brian Somers <brian@Awfulhak.org> 5c39934eaSBrian Somers * All rights reserved. 6c39934eaSBrian Somers * 7c39934eaSBrian Somers * Redistribution and use in source and binary forms, with or without 8c39934eaSBrian Somers * modification, are permitted provided that the following conditions 9c39934eaSBrian Somers * are met: 10c39934eaSBrian Somers * 1. Redistributions of source code must retain the above copyright 11c39934eaSBrian Somers * notice, this list of conditions and the following disclaimer. 12c39934eaSBrian Somers * 2. Redistributions in binary form must reproduce the above copyright 13c39934eaSBrian Somers * notice, this list of conditions and the following disclaimer in the 14c39934eaSBrian Somers * documentation and/or other materials provided with the distribution. 15c39934eaSBrian Somers * 16c39934eaSBrian Somers * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 17c39934eaSBrian Somers * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18c39934eaSBrian Somers * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19c39934eaSBrian Somers * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 20c39934eaSBrian Somers * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21c39934eaSBrian Somers * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22c39934eaSBrian Somers * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23c39934eaSBrian Somers * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24c39934eaSBrian Somers * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25c39934eaSBrian Somers * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26c39934eaSBrian Somers * SUCH DAMAGE. 2775240ed1SBrian Somers */ 2875240ed1SBrian Somers 2946df5aa7SBrian Somers #define LogLOG (0) 30927145beSBrian Somers #define LogMIN (1) 31927145beSBrian Somers #define LogASYNC (1) /* syslog(LOG_INFO, ....) */ 3292b09558SBrian Somers #define LogCBCP (2) 3392b09558SBrian Somers #define LogCCP (3) 3492b09558SBrian Somers #define LogCHAT (4) 3592b09558SBrian Somers #define LogCOMMAND (5) 3692b09558SBrian Somers #define LogCONNECT (6) 3792b09558SBrian Somers #define LogDEBUG (7) /* syslog(LOG_DEBUG, ....) */ 3852c9ca19SBrian Somers #define LogDNS (8) 3906a43ce0SBrian Somers #define LogFILTER (9) 4006a43ce0SBrian Somers #define LogHDLC (10) 4106a43ce0SBrian Somers #define LogID0 (11) 4206a43ce0SBrian Somers #define LogIPCP (12) 4330949fd4SBrian Somers #define LogIPV6CP (13) 4430949fd4SBrian Somers #define LogLCP (14) 4530949fd4SBrian Somers #define LogLQM (15) 4630949fd4SBrian Somers #define LogPHASE (16) 4730949fd4SBrian Somers #define LogPHYSICAL (17) /* syslog(LOG_INFO, ....) */ 48e715b13bSBrian Somers #define LogRADIUS (18) /* syslog(LOG_INFO, ....) */ 49e715b13bSBrian Somers #define LogSYNC (19) /* syslog(LOG_INFO, ....) */ 50e715b13bSBrian Somers #define LogTCPIP (20) 51e715b13bSBrian Somers #define LogTIMER (21) /* syslog(LOG_DEBUG, ....) */ 52e715b13bSBrian Somers #define LogTUN (22) /* If set, tun%d is output with each message */ 53e715b13bSBrian Somers #define LogWARN (23) /* Sent to VarTerm else syslog(LOG_WARNING, ) */ 54e715b13bSBrian Somers #define LogERROR (24) /* syslog(LOG_ERR, ....), + sent to VarTerm */ 55e715b13bSBrian Somers #define LogALERT (25) /* syslog(LOG_ALERT, ....) */ 5652c9ca19SBrian Somers 57e715b13bSBrian Somers #define LogMAXCONF (22) 58e715b13bSBrian Somers #define LogMAX (25) 591ae349f5Scvs2svn 6085b542cfSBrian Somers struct mbuf; 612764b86aSBrian Somers struct cmdargs; 622764b86aSBrian Somers struct prompt; 630f2f3eb3SBrian Somers struct server; 640f2f3eb3SBrian Somers struct datalink; 65af57ed9fSAtsushi Murai 66927145beSBrian Somers /* The first int arg for all of the following is one of the above values */ 67dd7e2610SBrian Somers extern const char *log_Name(int); 68dd7e2610SBrian Somers extern void log_Keep(int); 69dd7e2610SBrian Somers extern void log_KeepLocal(int, u_long *); 70dd7e2610SBrian Somers extern void log_Discard(int); 71dd7e2610SBrian Somers extern void log_DiscardLocal(int, u_long *); 72dd7e2610SBrian Somers extern void log_DiscardAll(void); 73dd7e2610SBrian Somers extern void log_DiscardAllLocal(u_long *); 74dd7e2610SBrian Somers #define LOG_KEPT_SYSLOG (1) /* Results of log_IsKept() */ 75dd7e2610SBrian Somers #define LOG_KEPT_LOCAL (2) /* Results of log_IsKept() */ 76dd7e2610SBrian Somers extern int log_IsKept(int); 77dd7e2610SBrian Somers extern int log_IsKeptLocal(int, u_long); 78dd7e2610SBrian Somers extern void log_Open(const char *); 79f2f5156fSBrian Somers extern void log_SetTun(int, const char *); 80dd7e2610SBrian Somers extern void log_Close(void); 81fe3125a0SBrian Somers #ifdef __GNUC__ 82dd7e2610SBrian Somers extern void log_Printf(int, const char *,...) 83fe3125a0SBrian Somers __attribute__ ((format (printf, 2, 3))); 84bf1d3ff6SBrian Somers extern void log_WritePrompts(struct datalink *, const char *, ...) 85bf1d3ff6SBrian Somers __attribute__ ((format (printf, 2, 3))); 86fe3125a0SBrian Somers #else 87dd7e2610SBrian Somers extern void log_Printf(int, const char *,...); 88bf1d3ff6SBrian Somers extern void log_WritePrompts(struct datalink *, const char *, ...); 89fe3125a0SBrian Somers #endif 90dd7e2610SBrian Somers extern void log_DumpBp(int, const char *, const struct mbuf *); 91dd7e2610SBrian Somers extern void log_DumpBuff(int, const char *, const u_char *, int); 92b6217683SBrian Somers extern int log_ShowLevel(struct cmdargs const *); 93b6217683SBrian Somers extern int log_SetLevel(struct cmdargs const *); 94b6217683SBrian Somers extern int log_ShowWho(struct cmdargs const *); 950f2f3eb3SBrian Somers 96b4f63b0bSBrian Somers extern struct prompt *log_PromptContext; 970bdcbcbeSBrian Somers extern int log_PromptListChanged; 980f2f3eb3SBrian Somers extern void log_RegisterPrompt(struct prompt *); 990f2f3eb3SBrian Somers extern void log_UnRegisterPrompt(struct prompt *); 1000f2f3eb3SBrian Somers extern void log_DestroyPrompts(struct server *); 1010f2f3eb3SBrian Somers extern void log_DisplayPrompts(void); 1020f2f3eb3SBrian Somers extern void log_ActivatePrompt(struct prompt *); 1030f2f3eb3SBrian Somers extern void log_DeactivatePrompt(struct prompt *); 1040f2f3eb3SBrian Somers extern void log_SetTtyCommandMode(struct datalink *); 1050f2f3eb3SBrian Somers extern struct prompt *log_PromptList(void); 106