]> git.saurik.com Git - apple/network_cmds.git/blob - racoon.tproj/localconf.h
b5ca916c5a85b10f2f591be8426ef69b07bd55d6
[apple/network_cmds.git] / racoon.tproj / localconf.h
1 /* $KAME: localconf.h,v 1.28 2001/12/11 23:44:08 sakane Exp $ */
2
3 /*
4 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the project nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 */
31
32 #ifndef __LOCALCONF_H__
33 #define __LOCALCONF_H__
34
35 /* local configuration */
36
37 #define LC_DEFAULT_CF SYSCONFDIR "/racoon.conf"
38
39 #define LC_PATHTYPE_INCLUDE 0
40 #define LC_PATHTYPE_PSK 1
41 #define LC_PATHTYPE_CERT 2
42 #define LC_PATHTYPE_BACKUPSA 3
43 #define LC_PATHTYPE_MAX 4
44
45 #define LC_DEFAULT_PAD_MAXSIZE 20
46 #define LC_DEFAULT_PAD_RANDOM TRUE
47 #define LC_DEFAULT_PAD_RANDOMLEN FALSE
48 #define LC_DEFAULT_PAD_STRICT FALSE
49 #define LC_DEFAULT_PAD_EXCLTAIL TRUE
50 #define LC_DEFAULT_RETRY_COUNTER 5
51 #define LC_DEFAULT_RETRY_INTERVAL 10
52 #define LC_DEFAULT_COUNT_PERSEND 1
53 #define LC_DEFAULT_RETRY_CHECKPH1 30
54 #define LC_DEFAULT_WAIT_PH2COMPLETE 30
55
56 #define LC_DEFAULT_SECRETSIZE 16 /* 128 bits */
57
58 #define LC_IDENTTYPE_MAX 5 /* XXX */
59
60 struct localconf {
61 char *racoon_conf; /* configuration filename */
62
63 u_int16_t port_isakmp; /* port for isakmp as default */
64 u_int16_t port_admin; /* port for admin */
65 int default_af; /* default address family */
66
67 int sock_admin;
68 int sock_pfkey;
69 int rtsock; /* routing socket */
70
71 int autograbaddr;
72 struct myaddrs *myaddrs;
73
74 char *pathinfo[LC_PATHTYPE_MAX];
75 vchar_t *ident[LC_IDENTTYPE_MAX]; /* base of Identifier payload. */
76
77 int pad_random;
78 int pad_randomlen;
79 int pad_maxsize;
80 int pad_strict;
81 int pad_excltail;
82
83 int retry_counter; /* times to retry. */
84 int retry_interval; /* interval each retry. */
85 int count_persend; /* the number of packets each retry. */
86 /* above 3 values are copied into a handler. */
87
88 int retry_checkph1;
89 int wait_ph2complete;
90
91 int secret_size;
92 int strict_address; /* strictly check addresses. */
93
94 int complex_bundle;
95 /*
96 * If we want to make a packet "IP2 AH ESP IP1 ULP",
97 * the SPD in KAME expresses AH transport + ESP tunnel.
98 * So racoon sent the proposal contained such the order.
99 * But lots of implementation interprets AH tunnel + ESP
100 * tunnel in this case. racoon has changed the format,
101 * usually uses this format. If the option, 'complex_bundle'
102 * is enable, racoon uses old format.
103 */
104 };
105
106 extern struct localconf *lcconf;
107
108 extern void initlcconf __P((void));
109 extern void flushlcconf __P((void));
110 extern vchar_t *getpskbyname __P((vchar_t *));
111 extern vchar_t *getpskbyaddr __P((struct sockaddr *));
112 extern vchar_t *getpsk __P((const char *str, const int len));
113 extern vchar_t *getpskfromkeychain __P((const char *));
114 extern void getpathname __P((char *, int, int, const char *));
115 extern int sittype2doi __P((int));
116 extern int doitype2doi __P((int));
117
118
119 #endif /* __LOCALCONF_H__ */
120