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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
|
/* $OpenBSD: pfkey.c,v 1.4 2005/05/24 02:35:39 ho Exp $ */
/*
* Copyright (c) 2005 Håkan Olsson. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* This code was written under funding by Multicom Security AB.
*/
#include <sys/param.h>
#include <sys/types.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <sys/queue.h>
#include <sys/sysctl.h>
#include <net/pfkeyv2.h>
#include <netinet/ip_ipsp.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "sasyncd.h"
struct pfkey_msg
{
SIMPLEQ_ENTRY(pfkey_msg) next;
u_int8_t *buf;
u_int32_t len;
};
SIMPLEQ_HEAD(, pfkey_msg) pfkey_msglist;
static const char *msgtypes[] = {
"RESERVED", "GETSPI", "UPDATE", "ADD", "DELETE", "GET", "ACQUIRE",
"REGISTER", "EXPIRE", "FLUSH", "DUMP", "X_PROMISC", "X_ADDFLOW",
"X_DELFLOW", "X_GRPSPIS", "X_ASKPOLICY"
};
#define CHUNK sizeof(u_int64_t)
static const char *pfkey_print_type(struct sadb_msg *);
static int
pfkey_write(u_int8_t *buf, ssize_t len)
{
struct sadb_msg *msg = (struct sadb_msg *)buf;
if (cfgstate.pfkey_socket == -1)
return 0;
if (write(cfgstate.pfkey_socket, buf, len) != len) {
log_err("pfkey: msg %s write() failed",
pfkey_print_type(msg), cfgstate.pfkey_socket);
return -1;
}
return 0;
}
int
pfkey_set_promisc(void)
{
struct sadb_msg msg;
static u_int32_t seq = 1;
memset(&msg, 0, sizeof msg);
msg.sadb_msg_version = PF_KEY_V2;
msg.sadb_msg_seq = seq++;
msg.sadb_msg_satype = 1; /* Special; 1 to enable, 0 to disable */
msg.sadb_msg_type = SADB_X_PROMISC;
msg.sadb_msg_pid = getpid();
msg.sadb_msg_len = sizeof msg / CHUNK;
return pfkey_write((u_int8_t *)&msg, sizeof msg);
}
static const char *
pfkey_print_type(struct sadb_msg *msg)
{
static char uk[20];
if (msg->sadb_msg_type < sizeof msgtypes / sizeof msgtypes[0])
return msgtypes[msg->sadb_msg_type];
else {
snprintf(uk, sizeof uk, "<unknown(%d)>", msg->sadb_msg_type);
return uk;
}
}
static int
pfkey_handle_message(struct sadb_msg *m)
{
struct sadb_msg *msg = m;
/*
* Report errors, but ignore for DELETE (both isakmpd and kernel will
* expire the SA, if the kernel is first, DELETE returns failure).
*/
if (msg->sadb_msg_errno && msg->sadb_msg_type != SADB_DELETE &&
msg->sadb_msg_pid == (u_int32_t)getpid()) {
errno = msg->sadb_msg_errno;
log_msg(1, "pfkey error (%s)", pfkey_print_type(msg));
}
/* We only want promiscuous messages here, skip all others. */
if (msg->sadb_msg_type != SADB_X_PROMISC ||
(msg->sadb_msg_len * CHUNK) < 2 * sizeof *msg) {
free(m);
return 0;
}
/* Move next msg to start of the buffer. */
msg++;
/*
* We should not listen to PFKEY messages when we are not running
* as MASTER, or the pid is our own.
*/
if (cfgstate.runstate != MASTER ||
msg->sadb_msg_pid == (u_int32_t)getpid()) {
free(m);
return 0;
}
switch (msg->sadb_msg_type) {
case SADB_X_PROMISC:
case SADB_DUMP:
case SADB_GET:
case SADB_GETSPI:
/* case SADB_REGISTER: */
/* Some messages should not be synced. */
free(m);
break;
case SADB_UPDATE:
/*
* Tweak -- the peers do not have a larval SA to update, so
* instead we ADD it here.
*/
msg->sadb_msg_type = SADB_ADD;
/* FALLTHROUGH */
default:
/* Pass the the rest along to our peers. */
memmove(m, msg, msg->sadb_msg_len * CHUNK); /* for realloc */
return net_queue(NULL, MSG_PFKEYDATA, (u_int8_t *)m,
m->sadb_msg_len * CHUNK);
}
return 0;
}
static int
pfkey_read(void)
{
struct sadb_msg hdr, *msg;
u_int8_t *data;
ssize_t datalen;
int fd = cfgstate.pfkey_socket;
if (recv(fd, &hdr, sizeof hdr, MSG_PEEK) != sizeof hdr) {
log_err("pfkey_read: recv() failed");
return -1;
}
datalen = hdr.sadb_msg_len * CHUNK;
data = (u_int8_t *)malloc(datalen);
if (!data) {
log_err("pfkey_read: malloc(%lu) failed", datalen);
return -1;
}
msg = (struct sadb_msg *)data;
if (read(fd, data, datalen) != datalen) {
log_err("pfkey_read: read() failed, %lu bytes", datalen);
free(data);
return -1;
}
return pfkey_handle_message(msg);
}
int
pfkey_init(int reinit)
{
int fd;
fd = socket(PF_KEY, SOCK_RAW, PF_KEY_V2);
if (fd == -1) {
perror("failed to open PF_KEY socket");
return -1;
}
cfgstate.pfkey_socket = fd;
if (cfgstate.runstate == MASTER)
pfkey_set_promisc();
if (reinit)
return (fd > -1 ? 0 : -1);
SIMPLEQ_INIT(&pfkey_msglist);
return 0;
}
void
pfkey_set_rfd(fd_set *fds)
{
if (cfgstate.pfkey_socket != -1)
FD_SET(cfgstate.pfkey_socket, fds);
}
void
pfkey_set_pending_wfd(fd_set *fds)
{
if (cfgstate.pfkey_socket != -1 && SIMPLEQ_FIRST(&pfkey_msglist))
FD_SET(cfgstate.pfkey_socket, fds);
}
void
pfkey_read_message(fd_set *fds)
{
if (cfgstate.pfkey_socket != -1)
if (FD_ISSET(cfgstate.pfkey_socket, fds))
(void)pfkey_read();
}
void
pfkey_send_message(fd_set *fds)
{
struct pfkey_msg *pmsg = SIMPLEQ_FIRST(&pfkey_msglist);
if (!pmsg || !FD_ISSET(cfgstate.pfkey_socket, fds))
return;
if (cfgstate.pfkey_socket == -1)
if (pfkey_init(1)) /* Reinit socket */
return;
(void)pfkey_write(pmsg->buf, pmsg->len);
SIMPLEQ_REMOVE_HEAD(&pfkey_msglist, next);
free(pmsg->buf);
free(pmsg);
return;
}
int
pfkey_queue_message(u_int8_t *data, u_int32_t datalen)
{
struct pfkey_msg *pmsg;
struct sadb_msg *sadb = (struct sadb_msg *)data;
static u_int32_t seq = 1;
pmsg = (struct pfkey_msg *)malloc(sizeof *pmsg);
if (!pmsg) {
log_err("malloc()");
return -1;
}
memset(pmsg, 0, sizeof *pmsg);
pmsg->buf = data;
pmsg->len = datalen;
sadb->sadb_msg_pid = getpid();
sadb->sadb_msg_seq = seq++;
log_msg(3, "pfkey_queue_message: pfkey %s len %d seq %d",
pfkey_print_type(sadb), sadb->sadb_msg_len * CHUNK,
sadb->sadb_msg_seq);
SIMPLEQ_INSERT_TAIL(&pfkey_msglist, pmsg, next);
return 0;
}
void
pfkey_shutdown(void)
{
struct pfkey_msg *p = SIMPLEQ_FIRST(&pfkey_msglist);
while ((p = SIMPLEQ_FIRST(&pfkey_msglist))) {
SIMPLEQ_REMOVE_HEAD(&pfkey_msglist, next);
free(p->buf);
free(p);
}
if (cfgstate.pfkey_socket > -1)
close(cfgstate.pfkey_socket);
}
/* ------------------------------------------------------------------------- */
void
pfkey_snapshot(void *v)
{
struct syncpeer *p = (struct syncpeer *)v;
struct sadb_msg *m;
struct ipsec_policy *ip;
u_int8_t *sadb, *spd, *max, *next, *sendbuf;
u_int32_t sadbsz, spdsz;
if (!p)
return;
if (monitor_get_pfkey_snap(&sadb, &sadbsz, &spd, &spdsz)) {
log_msg(0, "pfkey_snapshot: failed to get pfkey snapshot");
return;
}
/* Parse SADB data */
if (sadbsz)
dump_buf(5, sadb, sadbsz, "pfkey_snapshot: SADB data");
max = sadb + sadbsz;
for (next = sadb; next < max; next += m->sadb_msg_len * CHUNK) {
m = (struct sadb_msg *)next;
fprintf(stderr, "pfkey_snapshot: SPD %p type %s len %u\n",
m, pfkey_print_type(m), m->sadb_msg_len * CHUNK);
if (m->sadb_msg_len == 0)
break;
/* Tweak and send */
m->sadb_msg_type = SADB_ADD;
m->sadb_msg_errno = 0;
m->sadb_msg_reserved = 0;
/* Allocate a buffer for the msg, net_queue() will free it. */
sendbuf = (u_int8_t *)malloc(m->sadb_msg_len * CHUNK);
if (sendbuf) {
memcpy(sendbuf, m, m->sadb_msg_len * CHUNK);
net_queue(p, MSG_PFKEYDATA, sendbuf,
m->sadb_msg_len * CHUNK);
}
}
/* Parse SPD data */
if (spdsz)
dump_buf(5, spd, spdsz, "pfkey_snapshot: SPD data");
max = spd + spdsz;
for (next = spd; next < max; next += sizeof(struct ipsec_policy)) {
ip = (struct ipsec_policy *)next;
fprintf(stderr, "pfkey_snapshot: SPD %p (%d)\n",ip,
sizeof(struct ipsec_policy));
if (ip->ipo_flags & IPSP_POLICY_SOCKET)
continue;
}
/* Cleanup. */
memset(sadb, 0, sadbsz);
free(sadb);
memset(spd, 0, spdsz);
free(spd);
log_msg(0, "pfkey_snapshot: done");
return;
}
|