]> git.karo-electronics.de Git - karo-tx-redboot.git/blob - packages/net/bsd_tcpip/v2_0/include/netkey/key_debug.h
Initial revision
[karo-tx-redboot.git] / packages / net / bsd_tcpip / v2_0 / include / netkey / key_debug.h
1 //==========================================================================
2 //
3 //      include/netkey/key_debug.h
4 //
5 //==========================================================================
6 //####BSDCOPYRIGHTBEGIN####
7 //
8 // -------------------------------------------
9 //
10 // Portions of this software may have been derived from OpenBSD, 
11 // FreeBSD or other sources, and are covered by the appropriate
12 // copyright disclaimers included herein.
13 //
14 // Portions created by Red Hat are
15 // Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
16 //
17 // -------------------------------------------
18 //
19 //####BSDCOPYRIGHTEND####
20 //==========================================================================
21
22 /*      $KAME: key_debug.h,v 1.10 2001/08/05 08:37:52 itojun Exp $      */
23
24 /*
25  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
26  * All rights reserved.
27  *
28  * Redistribution and use in source and binary forms, with or without
29  * modification, are permitted provided that the following conditions
30  * are met:
31  * 1. Redistributions of source code must retain the above copyright
32  *    notice, this list of conditions and the following disclaimer.
33  * 2. Redistributions in binary form must reproduce the above copyright
34  *    notice, this list of conditions and the following disclaimer in the
35  *    documentation and/or other materials provided with the distribution.
36  * 3. Neither the name of the project nor the names of its contributors
37  *    may be used to endorse or promote products derived from this software
38  *    without specific prior written permission.
39  *
40  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
41  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
44  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50  * SUCH DAMAGE.
51  */
52
53 #ifndef _NETKEY_KEY_DEBUG_H_
54 #define _NETKEY_KEY_DEBUG_H_
55
56 #ifdef _KERNEL
57 /* debug flags */
58 #define KEYDEBUG_STAMP          0x00000001 /* path */
59 #define KEYDEBUG_DATA           0x00000002 /* data */
60 #define KEYDEBUG_DUMP           0x00000004 /* dump */
61
62 #define KEYDEBUG_KEY            0x00000010 /* key processing */
63 #define KEYDEBUG_ALG            0x00000020 /* ciph & auth algorithm */
64 #define KEYDEBUG_IPSEC          0x00000040 /* ipsec processing */
65
66 #define KEYDEBUG_KEY_STAMP      (KEYDEBUG_KEY | KEYDEBUG_STAMP)
67 #define KEYDEBUG_KEY_DATA       (KEYDEBUG_KEY | KEYDEBUG_DATA)
68 #define KEYDEBUG_KEY_DUMP       (KEYDEBUG_KEY | KEYDEBUG_DUMP)
69 #define KEYDEBUG_ALG_STAMP      (KEYDEBUG_ALG | KEYDEBUG_STAMP)
70 #define KEYDEBUG_ALG_DATA       (KEYDEBUG_ALG | KEYDEBUG_DATA)
71 #define KEYDEBUG_ALG_DUMP       (KEYDEBUG_ALG | KEYDEBUG_DUMP)
72 #define KEYDEBUG_IPSEC_STAMP    (KEYDEBUG_IPSEC | KEYDEBUG_STAMP)
73 #define KEYDEBUG_IPSEC_DATA     (KEYDEBUG_IPSEC | KEYDEBUG_DATA)
74 #define KEYDEBUG_IPSEC_DUMP     (KEYDEBUG_IPSEC | KEYDEBUG_DUMP)
75
76 #define KEYDEBUG(lev,arg) \
77         do { if ((key_debug_level & (lev)) == (lev)) { arg; } } while (0)
78
79 extern u_int32_t key_debug_level;
80 #endif /*_KERNEL*/
81
82 struct sadb_msg;
83 struct sadb_ext;
84 extern void kdebug_sadb __P((struct sadb_msg *));
85 extern void kdebug_sadb_x_policy __P((struct sadb_ext *));
86
87 #ifdef _KERNEL
88 struct secpolicy;
89 struct secpolicyindex;
90 struct secasindex;
91 struct secasvar;
92 struct secreplay;
93 struct mbuf;
94 extern void kdebug_secpolicy __P((struct secpolicy *));
95 extern void kdebug_secpolicyindex __P((struct secpolicyindex *));
96 extern void kdebug_secasindex __P((struct secasindex *));
97 extern void kdebug_secasv __P((struct secasvar *));
98 extern void kdebug_mbufhdr __P((struct mbuf *));
99 extern void kdebug_mbuf __P((struct mbuf *));
100 #endif /*_KERNEL*/
101
102 struct sockaddr;
103 extern void kdebug_sockaddr __P((struct sockaddr *));
104
105 extern void ipsec_hexdump __P((caddr_t, int));
106 extern void ipsec_bindump __P((caddr_t, int));
107
108 #endif /* _NETKEY_KEY_DEBUG_H_ */