1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
|
/* $OpenBSD: ip_ipsp.c,v 1.6 1997/02/24 14:06:42 niklas Exp $ */
/*
* The author of this code is John Ioannidis, ji@tla.org,
* (except when noted otherwise).
*
* This code was written for BSD/OS in Athens, Greece, in November 1995.
*
* Ported to OpenBSD and NetBSD, with additional transforms, in December 1996,
* by Angelos D. Keromytis, kermit@forthnet.gr.
*
* Copyright (C) 1995, 1996, 1997 by John Ioannidis and Angelos D. Keromytis.
*
* Permission to use, copy, and modify this software without fee
* is hereby granted, provided that this entire notice is included in
* all copies of any software which is or includes a copy or
* modification of this software.
*
* THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR
* IMPLIED WARRANTY. IN PARTICULAR, NEITHER AUTHOR MAKES ANY
* REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE
* MERCHANTABILITY OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR
* PURPOSE.
*/
/*
* IPSP Processing
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/malloc.h>
#include <sys/mbuf.h>
#include <sys/domain.h>
#include <sys/protosw.h>
#include <sys/socket.h>
#include <sys/socketvar.h>
#include <sys/errno.h>
#include <sys/time.h>
#include <sys/kernel.h>
#include <net/if.h>
#include <net/route.h>
#include <netinet/in.h>
#include <netinet/in_systm.h>
#include <netinet/ip.h>
#include <netinet/in_pcb.h>
#include <netinet/in_var.h>
#include <netinet/ip_var.h>
#include <netinet/ip_icmp.h>
#include <net/raw_cb.h>
#include <net/encap.h>
#include <netinet/ip_ipsp.h>
#include <netinet/ip_ah.h>
#include <netinet/ip_esp.h>
int tdb_init __P((struct tdb *, struct mbuf *));
int ipsp_kern __P((int, char **, int));
#ifdef ENCDEBUG
int encdebug = 1;
#endif
/*
* This is the proper place to define the various encapsulation transforms.
*/
struct xformsw xformsw[] = {
{ XF_IP4, 0, "IPv4 Simple Encapsulation",
ipe4_attach, ipe4_init, ipe4_zeroize,
(struct mbuf * (*)(struct mbuf *, struct tdb *))ipe4_input, ipe4_output, },
{ XF_AHMD5, XFT_AUTH, "Keyed MD5 Authentication",
ahmd5_attach, ahmd5_init, ahmd5_zeroize,
ahmd5_input, ahmd5_output, },
{ XF_ESPDES, XFT_CONF, "DES-CBC Encryption",
espdes_attach, espdes_init, espdes_zeroize,
espdes_input, espdes_output, },
{ XF_AHHMACMD5, XFT_AUTH, "HMAC MD5 Authentication",
ahhmacmd5_attach, ahhmacmd5_init, ahhmacmd5_zeroize,
ahhmacmd5_input, ahhmacmd5_output, },
{ XF_AHHMACSHA1, XFT_AUTH, "HMAC SHA1 Authentication",
ahhmacsha1_attach, ahhmacsha1_init, ahhmacsha1_zeroize,
ahhmacsha1_input, ahhmacsha1_output, },
{ XF_ESPDESMD5, XFT_CONF, "DES-CBC Encryption + MD5 Authentication",
espdesmd5_attach, espdesmd5_init, espdesmd5_zeroize,
espdesmd5_input, espdesmd5_output, },
{ XF_ESP3DESMD5, XFT_CONF, "3DES-CBC Encryption + MD5 Authentication",
esp3desmd5_attach, esp3desmd5_init, esp3desmd5_zeroize,
esp3desmd5_input, esp3desmd5_output, },
};
struct xformsw *xformswNXFORMSW = &xformsw[sizeof(xformsw)/sizeof(xformsw[0])];
unsigned char ipseczeroes[IPSEC_ZEROES_SIZE]; /* zeroes! */
static char *ipspkernfs = NULL;
int ipspkernfs_dirty = 1;
/*
* An IPSP SAID is really the concatenation of the SPI found in the
* packet and the destination address of the packet. When we receive
* an IPSP packet, we need to look up its tunnel descriptor block,
* based on the SPI in the packet and the destination address (which is
* really one of our addresses if we received the packet!
*/
struct tdb *
gettdb(u_long spi, struct in_addr dst)
{
int hashval;
struct tdb *tdbp;
hashval = (spi+dst.s_addr) % TDB_HASHMOD;
for (tdbp = tdbh[hashval]; tdbp; tdbp = tdbp->tdb_hnext)
if ((tdbp->tdb_spi == spi) && (tdbp->tdb_dst.s_addr == dst.s_addr))
break;
return tdbp;
}
void
puttdb(struct tdb *tdbp)
{
int hashval;
hashval = ((tdbp->tdb_spi + tdbp->tdb_dst.s_addr) % TDB_HASHMOD);
tdbp->tdb_hnext = tdbh[hashval];
tdbh[hashval] = tdbp;
ipspkernfs_dirty = 1;
}
int
tdb_delete(struct tdb *tdbp, int delchain)
{
struct tdb *tdbpp;
int hashval;
hashval = ((tdbp->tdb_spi + tdbp->tdb_dst.s_addr) % TDB_HASHMOD);
if (tdbh[hashval] == tdbp)
{
tdbpp = tdbp;
tdbh[hashval] = tdbp->tdb_hnext;
}
else
for (tdbpp = tdbh[hashval]; tdbpp != NULL; tdbpp = tdbpp->tdb_hnext)
if (tdbpp->tdb_hnext == tdbp)
{
tdbpp->tdb_hnext = tdbp->tdb_hnext;
tdbpp = tdbp;
}
if (tdbp != tdbpp)
return EINVAL; /* Should never happen */
ipspkernfs_dirty = 1;
tdbpp = tdbp->tdb_onext;
(*(tdbp->tdb_xform->xf_zeroize))(tdbp);
FREE(tdbp, M_TDB);
if (delchain && tdbpp)
return tdb_delete(tdbpp, delchain);
else
return 0;
}
int
tdb_init(struct tdb *tdbp, struct mbuf *m)
{
int alg;
struct encap_msghdr *em;
struct xformsw *xsp;
em = mtod(m, struct encap_msghdr *);
alg = em->em_alg;
for (xsp = xformsw; xsp < xformswNXFORMSW; xsp++)
if (xsp->xf_type == alg)
return (*(xsp->xf_init))(tdbp, xsp, m);
#ifdef ENCDEBUG
if (encdebug)
printf("tdbinit: no alg %d for spi %x, addr %x\n", alg, tdbp->tdb_spi, ntohl(tdbp->tdb_dst.s_addr));
#endif
m_freem(m);
return EINVAL;
}
int
ipsp_kern(int off, char **bufp, int len)
{
struct tdb *tdbp;
int i, k;
char *b;
if (off != 0)
return 0;
if ((!ipspkernfs_dirty) && (ipspkernfs))
{
*bufp = ipspkernfs;
return strlen(ipspkernfs);
}
else
ipspkernfs_dirty = 0;
if (ipspkernfs)
{
FREE(ipspkernfs, M_XDATA);
ipspkernfs = NULL;
}
for (i = 0, k = 0; i < TDB_HASHMOD; i++)
for (tdbp = tdbh[i]; tdbp != (struct tdb *) NULL; tdbp = tdbp->tdb_hnext)
{
/* Being paranoid to avoid buffer overflows */
k += 126 + strlen(tdbp->tdb_xform->xf_name);
if (tdbp->tdb_rcvif)
k += strlen(tdbp->tdb_rcvif->if_xname);
else
k += 4;
}
if (k == 0)
return 0;
MALLOC(ipspkernfs, char *, k + 1, M_XDATA, M_DONTWAIT);
if (!ipspkernfs)
return 0;
for (i = 0, k = 0; i < TDB_HASHMOD; i++)
for (tdbp = tdbh[i]; tdbp != (struct tdb *) NULL; tdbp = tdbp->tdb_hnext)
{
b = (char *)&(tdbp->tdb_dst.s_addr);
k += sprintf(ipspkernfs + k,
"SPI=%x, destination=%d.%d.%d.%d, interface=%s\n algorithm=%d (%s)\n next SPI=%x, previous SPI=%x\n",
ntohl(tdbp->tdb_spi), ((int)b[0] & 0xff), ((int)b[1] & 0xff),
((int)b[2] & 0xff), ((int)b[3] & 0xff),
(tdbp->tdb_rcvif ? tdbp->tdb_rcvif->if_xname : "none"),
tdbp->tdb_xform->xf_type, tdbp->tdb_xform->xf_name,
(tdbp->tdb_onext ? ntohl(tdbp->tdb_onext->tdb_spi) : 0),
(tdbp->tdb_inext ? ntohl(tdbp->tdb_inext->tdb_spi) : 0));
}
ipspkernfs[k] = '\0';
*bufp = ipspkernfs;
return strlen(ipspkernfs);
}
|