1 /*	$NetBSD: log.h,v 1.4 2014/12/10 04:37:52 christos Exp $	*/
2 
3 /*
4  * Copyright (C) 2004, 2005, 2007, 2009  Internet Systems Consortium, Inc. ("ISC")
5  * Copyright (C) 1999-2002  Internet Software Consortium.
6  *
7  * Permission to use, copy, modify, and/or distribute this software for any
8  * purpose with or without fee is hereby granted, provided that the above
9  * copyright notice and this permission notice appear in all copies.
10  *
11  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
12  * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
13  * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
14  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
15  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
16  * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
17  * PERFORMANCE OF THIS SOFTWARE.
18  */
19 
20 /* Id: log.h,v 1.27 2009/01/07 23:47:46 tbox Exp  */
21 
22 #ifndef NAMED_LOG_H
23 #define NAMED_LOG_H 1
24 
25 /*! \file */
26 
27 #include <isc/log.h>
28 #include <isc/types.h>
29 
30 #include <dns/log.h>
31 
32 #include <named/globals.h>	/* Required for ns_g_(categories|modules). */
33 
34 /* Unused slot 0. */
35 #define NS_LOGCATEGORY_CLIENT		(&ns_g_categories[1])
36 #define NS_LOGCATEGORY_NETWORK		(&ns_g_categories[2])
37 #define NS_LOGCATEGORY_UPDATE		(&ns_g_categories[3])
38 #define NS_LOGCATEGORY_QUERIES		(&ns_g_categories[4])
39 #define NS_LOGCATEGORY_UNMATCHED	(&ns_g_categories[5])
40 #define NS_LOGCATEGORY_UPDATE_SECURITY	(&ns_g_categories[6])
41 #define NS_LOGCATEGORY_QUERY_EERRORS	(&ns_g_categories[7])
42 
43 /*
44  * Backwards compatibility.
45  */
46 #define NS_LOGCATEGORY_GENERAL		ISC_LOGCATEGORY_GENERAL
47 
48 #define NS_LOGMODULE_MAIN		(&ns_g_modules[0])
49 #define NS_LOGMODULE_CLIENT		(&ns_g_modules[1])
50 #define NS_LOGMODULE_SERVER		(&ns_g_modules[2])
51 #define NS_LOGMODULE_QUERY		(&ns_g_modules[3])
52 #define NS_LOGMODULE_INTERFACEMGR	(&ns_g_modules[4])
53 #define NS_LOGMODULE_UPDATE		(&ns_g_modules[5])
54 #define NS_LOGMODULE_XFER_IN		(&ns_g_modules[6])
55 #define NS_LOGMODULE_XFER_OUT		(&ns_g_modules[7])
56 #define NS_LOGMODULE_NOTIFY		(&ns_g_modules[8])
57 #define NS_LOGMODULE_CONTROL		(&ns_g_modules[9])
58 #define NS_LOGMODULE_LWRESD		(&ns_g_modules[10])
59 
60 isc_result_t
61 ns_log_init(isc_boolean_t safe);
62 /*%
63  * Initialize the logging system and set up an initial default
64  * logging default configuration that will be used until the
65  * config file has been read.
66  *
67  * If 'safe' is true, use a default configuration that refrains
68  * from opening files.  This is to avoid creating log files
69  * as root.
70  */
71 
72 isc_result_t
73 ns_log_setdefaultchannels(isc_logconfig_t *lcfg);
74 /*%
75  * Set up logging channels according to the named defaults, which
76  * may differ from the logging library defaults.  Currently,
77  * this just means setting up default_debug.
78  */
79 
80 isc_result_t
81 ns_log_setsafechannels(isc_logconfig_t *lcfg);
82 /*%
83  * Like ns_log_setdefaultchannels(), but omits any logging to files.
84  */
85 
86 isc_result_t
87 ns_log_setdefaultcategory(isc_logconfig_t *lcfg);
88 /*%
89  * Set up "category default" to go to the right places.
90  */
91 
92 isc_result_t
93 ns_log_setunmatchedcategory(isc_logconfig_t *lcfg);
94 /*%
95  * Set up "category unmatched" to go to the right places.
96  */
97 
98 void
99 ns_log_shutdown(void);
100 
101 #endif /* NAMED_LOG_H */
102