summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHakan Olsson <ho@cvs.openbsd.org>2005-05-27 18:05:28 +0000
committerHakan Olsson <ho@cvs.openbsd.org>2005-05-27 18:05:28 +0000
commit5d6c863dd4f78159f80b4895e6bcf4d3d452590b (patch)
treea02f5075df6ea8ad66af0479d03cb06d4334decd
parentfaa66e97ed03abb4f7f619f5c5dbf43309907231 (diff)
Implement SPD (IPsec flow) snapshots.
-rw-r--r--usr.sbin/sasyncd/pfkey.c38
1 files changed, 23 insertions, 15 deletions
diff --git a/usr.sbin/sasyncd/pfkey.c b/usr.sbin/sasyncd/pfkey.c
index 4e29c4ee8c6..109d8500ee9 100644
--- a/usr.sbin/sasyncd/pfkey.c
+++ b/usr.sbin/sasyncd/pfkey.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pfkey.c,v 1.9 2005/05/26 19:19:51 ho Exp $ */
+/* $OpenBSD: pfkey.c,v 1.10 2005/05/27 18:05:27 ho Exp $ */
/*
* Copyright (c) 2005 Håkan Olsson. All rights reserved.
@@ -61,7 +61,7 @@ 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"
+ "X_DELFLOW", "X_GRPSPIS", "X_ASKPOLICY", "X_SPDDUMP"
};
#define CHUNK sizeof(u_int64_t)
@@ -381,8 +381,9 @@ pfkey_snapshot(void *v)
memcpy(sendbuf, m, m->sadb_msg_len * CHUNK);
net_queue(p, MSG_PFKEYDATA, sendbuf,
m->sadb_msg_len * CHUNK);
- log_msg(3, "pfkey_snapshot: sync SA %p to"
- "peer %s", m, p->name);
+ log_msg(3, "pfkey_snapshot: sync SA %p len %u "
+ "to peer %s", m,
+ m->sadb_msg_len * CHUNK, p->name);
}
}
memset(sadb, 0, sadbsz);
@@ -391,20 +392,27 @@ pfkey_snapshot(void *v)
/* Parse SPD data */
if (spdsz && spd) {
-#ifdef notyet
- struct ipsec_policy *ip;
dump_buf(3, spd, spdsz, "pfkey_snapshot: SPD data");
-
max = spd + spdsz;
- for (next = spd; next < max;
- next += sizeof(struct ipsec_policy)) {
- ip = (struct ipsec_policy *)next;
- if (ip->ipo_flags & IPSP_POLICY_SOCKET)
- continue;
- /* XXX incomplete */
- }
-#endif
+ for (next = spd; next < max; next += m->sadb_msg_len * CHUNK) {
+ m = (struct sadb_msg *)next;
+ if (m->sadb_msg_len == 0)
+ break;
+ /* Tweak msg type. */
+ m->sadb_msg_type = SADB_X_ADDFLOW;
+
+ /* Allocate msgbuffer, freed by net_queue(). */
+ 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);
+ log_msg(3, "pfkey_snapshot: sync FLOW %p len "
+ "%u to peer %s", m,
+ m->sadb_msg_len * CHUNK, p->name);
+ }
+ }
/* Cleanup. */
memset(spd, 0, spdsz);
free(spd);