1 /* $NetBSD: isakmp_inf.c,v 1.14.4.8 2007/08/01 11:52:20 vanhu Exp $ */
3 /* Id: isakmp_inf.c,v 1.44 2006/05/06 20:45:52 manubsd Exp */
6 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the project nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 #include <sys/types.h>
37 #include <sys/param.h>
38 #include <sys/socket.h>
41 #include <System/net/pfkeyv2.h>
43 #include <net/pfkeyv2.h>
45 #include <netinet/in.h>
46 #include <sys/queue.h>
47 #ifndef HAVE_NETINET6_IPSEC
48 #include <netinet/ipsec.h>
50 #include <netinet6/ipsec.h>
57 #if TIME_WITH_SYS_TIME
58 # include <sys/time.h>
62 # include <sys/time.h>
81 #include "localconf.h"
82 #include "remoteconf.h"
87 #include "isakmp_var.h"
91 #include "isakmp_xauth.h"
92 #include "isakmp_unity.h"
93 #include "isakmp_cfg.h"
95 #include "isakmp_inf.h"
97 #include "ipsec_doi.h"
98 #include "crypto_openssl.h"
101 #include "algorithm.h"
102 #include "proposal.h"
104 #include "strnames.h"
106 #include "nattraversal.h"
108 #include "vpn_control_var.h"
109 #include "vpn_control.h"
110 #include "ike_session.h"
111 #include "ipsecSessionTracer.h"
112 #include "ipsecMessageTracer.h"
114 /* information exchange */
115 static int isakmp_info_recv_n (struct ph1handle
*, struct isakmp_pl_n
*, u_int32_t
, int);
116 static int isakmp_info_recv_d (struct ph1handle
*, struct isakmp_pl_d
*, u_int32_t
, int);
119 static int isakmp_info_recv_r_u
__P((struct ph1handle
*,
120 struct isakmp_pl_ru
*, u_int32_t
));
121 static int isakmp_info_recv_r_u_ack
__P((struct ph1handle
*,
122 struct isakmp_pl_ru
*, u_int32_t
));
125 #ifdef ENABLE_VPNCONTROL_PORT
126 static int isakmp_info_recv_lb
__P((struct ph1handle
*, struct isakmp_pl_lb
*lb
, int));
129 static void purge_isakmp_spi
__P((int, isakmp_index
*, size_t));
130 static void info_recv_initialcontact
__P((struct ph1handle
*));
133 isakmp_ph1_responder_lifetime (struct ph1handle
*iph1
,
134 struct isakmp_pl_resp_lifetime
*notify
)
138 if (ntohs(notify
->h
.len
) < sizeof(*notify
) + notify
->spi_size
) {
139 plog(LLV_ERROR
, LOCATION
, iph1
->remote
,
140 "invalid spi_size in notification payload.\n");
143 spi
= val2str((char *)(notify
+ 1), notify
->spi_size
);
145 plog(LLV_DEBUG
, LOCATION
, iph1
->remote
,
146 "notification message ISAKMP-SA RESPONDER-LIFETIME, "
147 "doi=%d proto_id=%d spi=%s(size=%d).\n",
148 ntohl(notify
->doi
), notify
->proto_id
, spi
, notify
->spi_size
);
152 struct isakmp_pl_attr
*attrpl
;
153 int len
= ntohs(notify
->h
.len
) - (sizeof(*notify
) + notify
->spi_size
);
155 attrpl
= (struct isakmp_pl_attr
*)((char *)(notify
+ 1) + notify
->spi_size
);
165 isakmp_ph2_responder_lifetime (struct ph2handle
*iph2
,
166 struct isakmp_pl_resp_lifetime
*notify
)
170 if (ntohs(notify
->h
.len
) < sizeof(*notify
) + notify
->spi_size
) {
171 plog(LLV_ERROR
, LOCATION
, iph2
->dst
,
172 "invalid spi_size in notification payload.\n");
175 spi
= val2str((char *)(notify
+ 1), notify
->spi_size
);
177 plog(LLV_DEBUG
, LOCATION
, iph2
->dst
,
178 "notification message IPSEC-SA RESPONDER-LIFETIME, "
179 "doi=%d proto_id=%d spi=%s(size=%d).\n",
180 ntohl(notify
->doi
), notify
->proto_id
, spi
, notify
->spi_size
);
189 * Information Exchange
192 * receive Information
195 isakmp_info_recv(iph1
, msg0
)
196 struct ph1handle
*iph1
;
200 vchar_t
*pbuf
= NULL
;
203 struct isakmp
*isakmp
;
204 struct isakmp_gen
*gen
;
205 struct isakmp_parse_t
*pa
, *pap
;
207 vchar_t
*hash
, *payload
;
208 struct isakmp_gen
*nd
;
213 plog(LLV_DEBUG
, LOCATION
, NULL
, "receive Information.\n");
215 encrypted
= ISSET(((struct isakmp
*)msg0
->v
)->flags
, ISAKMP_FLAG_E
);
216 msgid
= ((struct isakmp
*)msg0
->v
)->msgid
;
218 /* Use new IV to decrypt Informational message. */
220 struct isakmp_ivm
*ivm
;
222 if (iph1
->ivm
== NULL
) {
223 plog(LLV_ERROR
, LOCATION
, NULL
, "iph1->ivm == NULL\n");
224 IPSECSESSIONTRACEREVENT(iph1
->parent_session
,
225 IPSECSESSIONEVENTCODE_IKE_PACKET_RX_FAIL
,
226 CONSTSTR("Information message"),
227 CONSTSTR("Failed to process Information Message (no IV)"));
232 ivm
= oakley_newiv2(iph1
, ((struct isakmp
*)msg0
->v
)->msgid
);
234 plog(LLV_ERROR
, LOCATION
, NULL
,
235 "failed to compute IV");
236 IPSECSESSIONTRACEREVENT(iph1
->parent_session
,
237 IPSECSESSIONEVENTCODE_IKE_PACKET_RX_FAIL
,
238 CONSTSTR("Information message"),
239 CONSTSTR("Failed to process Information Message (can't compute IV)"));
243 msg
= oakley_do_decrypt(iph1
, msg0
, ivm
->iv
, ivm
->ive
);
246 plog(LLV_ERROR
, LOCATION
, NULL
,
247 "failed to decrypt packet");
248 IPSECSESSIONTRACEREVENT(iph1
->parent_session
,
249 IPSECSESSIONEVENTCODE_IKE_PACKET_RX_FAIL
,
250 CONSTSTR("Information message"),
251 CONSTSTR("Failed to decrypt Information message"));
259 if (msg
->l
< sizeof(*isakmp
) + sizeof(*gen
)) {
260 plog(LLV_ERROR
, LOCATION
, NULL
,
261 "ignore information because the "
262 "message is way too short\n");
266 isakmp
= (struct isakmp
*)msg
->v
;
267 gen
= (struct isakmp_gen
*)((caddr_t
)isakmp
+ sizeof(struct isakmp
));
271 if (isakmp
->np
!= ISAKMP_NPTYPE_HASH
) {
272 plog(LLV_ERROR
, LOCATION
, NULL
,
273 "ignore information because the "
274 "message has no hash payload.\n");
278 if (iph1
->status
!= PHASE1ST_ESTABLISHED
&&
279 (!iph1
->approval
|| !iph1
->skeyid_a
)) {
280 plog(LLV_ERROR
, LOCATION
, NULL
,
281 "ignore information because ISAKMP-SA "
282 "has not been established yet.\n");
287 if (msg
->l
< sizeof(*isakmp
) + ntohs(gen
->len
) + sizeof(*nd
)) {
288 plog(LLV_ERROR
, LOCATION
, NULL
,
289 "ignore information because the "
290 "message is too short\n");
294 p
= (caddr_t
) gen
+ sizeof(struct isakmp_gen
);
295 nd
= (struct isakmp_gen
*) ((caddr_t
) gen
+ ntohs(gen
->len
));
297 /* nd length check */
298 if (ntohs(nd
->len
) > msg
->l
- (sizeof(struct isakmp
) +
300 plog(LLV_ERROR
, LOCATION
, NULL
,
301 "too long payload length (broken message?)\n");
305 if (ntohs(nd
->len
) < sizeof(*nd
)) {
306 plog(LLV_ERROR
, LOCATION
, NULL
,
307 "too short payload length (broken message?)\n");
311 payload
= vmalloc(ntohs(nd
->len
));
312 if (payload
== NULL
) {
313 plog(LLV_ERROR
, LOCATION
, NULL
,
314 "cannot allocate memory\n");
318 memcpy(payload
->v
, (caddr_t
) nd
, ntohs(nd
->len
));
321 hash
= oakley_compute_hash1(iph1
, isakmp
->msgid
, payload
);
323 plog(LLV_ERROR
, LOCATION
, NULL
,
324 "cannot compute hash\n");
330 if (ntohs(gen
->len
) - sizeof(struct isakmp_gen
) != hash
->l
) {
331 plog(LLV_ERROR
, LOCATION
, NULL
,
332 "ignore information due to hash length mismatch\n");
339 if (memcmp(p
, hash
->v
, hash
->l
) != 0) {
340 plog(LLV_ERROR
, LOCATION
, NULL
,
341 "ignore information due to hash mismatch\n");
348 plog(LLV_DEBUG
, LOCATION
, NULL
, "hash validated.\n");
353 /* make sure the packet was encrypted after the beginning of phase 1. */
354 switch (iph1
->etype
) {
355 case ISAKMP_ETYPE_AGG
:
356 case ISAKMP_ETYPE_BASE
:
357 case ISAKMP_ETYPE_IDENT
:
358 if ((iph1
->side
== INITIATOR
&& iph1
->status
< PHASE1ST_MSG3SENT
)
359 || (iph1
->side
== RESPONDER
&& iph1
->status
< PHASE1ST_MSG2SENT
)) {
364 plog(LLV_ERROR
, LOCATION
, iph1
->remote
,
365 "%s message must be encrypted\n",
366 s_isakmp_nptype(np
));
372 if (!(pbuf
= isakmp_parse(msg
))) {
373 plog(LLV_ERROR
, LOCATION
, NULL
,
374 "failed to parse msg");
380 for (pa
= (struct isakmp_parse_t
*)pbuf
->v
; pa
->type
; pa
++) {
382 case ISAKMP_NPTYPE_HASH
:
385 case ISAKMP_NPTYPE_N
:
386 error
= isakmp_info_recv_n(iph1
,
387 (struct isakmp_pl_n
*)pa
->ptr
,
390 case ISAKMP_NPTYPE_D
:
391 error
= isakmp_info_recv_d(iph1
,
392 (struct isakmp_pl_d
*)pa
->ptr
,
395 case ISAKMP_NPTYPE_NONCE
:
396 /* XXX to be 6.4.2 ike-01.txt */
397 /* XXX IV is to be synchronized. */
398 plog(LLV_ERROR
, LOCATION
, iph1
->remote
,
399 "ignore Acknowledged Informational\n");
402 /* don't send information, see isakmp_ident_r1() */
404 plog(LLV_ERROR
, LOCATION
, iph1
->remote
,
405 "reject the packet, "
406 "received unexpected payload type %s.\n",
407 s_isakmp_nptype(gen
->np
));
415 IPSECSESSIONTRACEREVENT(iph1
->parent_session
,
416 IPSECSESSIONEVENTCODE_IKE_PACKET_RX_SUCC
,
417 CONSTSTR("Information message"),
422 IPSECSESSIONTRACEREVENT(iph1
->parent_session
,
423 IPSECSESSIONEVENTCODE_IKE_PACKET_RX_FAIL
,
424 CONSTSTR("Information message"),
425 CONSTSTR("Failed to process Information Message"));
435 * handling of Notification payload
438 isakmp_info_recv_n(iph1
, notify
, msgid
, encrypted
)
439 struct ph1handle
*iph1
;
440 struct isakmp_pl_n
*notify
;
451 type
= ntohs(notify
->type
);
454 case ISAKMP_NTYPE_CONNECTED
:
455 case ISAKMP_NTYPE_REPLAY_STATUS
:
457 case ISAKMP_NTYPE_UNITY_HEARTBEAT
:
461 case ISAKMP_NTYPE_RESPONDER_LIFETIME
:
463 return(isakmp_ph1_responder_lifetime(iph1
,
464 (struct isakmp_pl_resp_lifetime
*)notify
));
467 case ISAKMP_NTYPE_INITIAL_CONTACT
:
469 info_recv_initialcontact(iph1
);
473 case ISAKMP_NTYPE_R_U_THERE
:
475 return isakmp_info_recv_r_u(iph1
,
476 (struct isakmp_pl_ru
*)notify
, msgid
);
478 case ISAKMP_NTYPE_R_U_THERE_ACK
:
480 return isakmp_info_recv_r_u_ack(iph1
,
481 (struct isakmp_pl_ru
*)notify
, msgid
);
484 #ifdef ENABLE_VPNCONTROL_PORT
485 case ISAKMP_NTYPE_LOAD_BALANCE
:
486 isakmp_info_recv_lb(iph1
, (struct isakmp_pl_lb
*)notify
, encrypted
);
492 /* XXX there is a potential of dos attack. */
493 if(type
>= ISAKMP_NTYPE_MINERROR
&&
494 type
<= ISAKMP_NTYPE_MAXERROR
) {
496 /* don't think this realy deletes ph1 ? */
497 plog(LLV_ERROR
, LOCATION
, iph1
->remote
,
498 "delete phase1 handle.\n");
501 if (getph2bymsgid(iph1
, msgid
) == NULL
) {
502 plog(LLV_ERROR
, LOCATION
, iph1
->remote
,
503 "fatal %s notify messsage, "
504 "phase1 should be deleted.\n",
505 s_isakmp_notify_msg(type
));
507 plog(LLV_ERROR
, LOCATION
, iph1
->remote
,
508 "fatal %s notify messsage, "
509 "phase2 should be deleted.\n",
510 s_isakmp_notify_msg(type
));
514 plog(LLV_ERROR
, LOCATION
, iph1
->remote
,
515 "unhandled notify message %s, "
516 "no phase2 handle found.\n",
517 s_isakmp_notify_msg(type
));
523 /* get spi if specified and allocate */
524 if(notify
->spi_size
> 0) {
525 if (ntohs(notify
->h
.len
) < sizeof(*notify
) + notify
->spi_size
) {
526 plog(LLV_ERROR
, LOCATION
, iph1
->remote
,
527 "invalid spi_size in notification payload.\n");
530 spi
= val2str((char *)(notify
+ 1), notify
->spi_size
);
532 plog(LLV_DEBUG
, LOCATION
, iph1
->remote
,
533 "notification message %d:%s, "
534 "doi=%d proto_id=%d spi=%s(size=%d).\n",
535 type
, s_isakmp_notify_msg(type
),
536 ntohl(notify
->doi
), notify
->proto_id
, spi
, notify
->spi_size
);
541 /* Send the message data to the logs */
542 if(type
>= ISAKMP_NTYPE_MINERROR
&&
543 type
<= ISAKMP_NTYPE_MAXERROR
) {
544 l
= ntohs(notify
->h
.len
) - sizeof(*notify
) - notify
->spi_size
;
546 nraw
= (char*)notify
;
547 nraw
+= sizeof(*notify
) + notify
->spi_size
;
548 if ((ndata
= vmalloc(l
)) != NULL
) {
549 memcpy(ndata
->v
, nraw
, ndata
->l
);
550 plog(LLV_ERROR
, LOCATION
, iph1
->remote
,
552 binsanitize(ndata
->v
, ndata
->l
));
555 plog(LLV_ERROR
, LOCATION
, iph1
->remote
,
556 "Cannot allocate memory\n");
564 * handling of Deletion payload
567 isakmp_info_recv_d(iph1
, delete, msgid
, encrypted
)
568 struct ph1handle
*iph1
;
569 struct isakmp_pl_d
*delete;
576 struct ph1handle
*del_ph1
;
577 struct ph2handle
*iph2
;
583 if (ntohl(delete->doi
) != IPSEC_DOI
) {
584 plog(LLV_ERROR
, LOCATION
, iph1
->remote
,
585 "delete payload with invalid doi:%d.\n",
589 * At deconnexion time, Cisco VPN client does this
590 * with a zero DOI. Don't give up in that situation.
592 if (((iph1
->mode_cfg
->flags
&
593 ISAKMP_CFG_VENDORID_UNITY
) == 0) || (delete->doi
!= 0))
600 num_spi
= ntohs(delete->num_spi
);
601 tlen
= ntohs(delete->h
.len
) - sizeof(struct isakmp_pl_d
);
603 if (tlen
!= num_spi
* delete->spi_size
) {
604 plog(LLV_ERROR
, LOCATION
, iph1
->remote
,
605 "deletion payload with invalid length.\n");
609 plog(LLV_DEBUG
, LOCATION
, iph1
->remote
,
610 "delete payload for protocol %s\n",
611 s_ipsecdoi_proto(delete->proto_id
));
613 if(!iph1
->rmconf
->weak_phase1_check
&& !encrypted
) {
614 plog(LLV_WARNING
, LOCATION
, iph1
->remote
,
615 "Ignoring unencrypted delete payload "
616 "(check the weak_phase1_check option)\n");
620 switch (delete->proto_id
) {
621 case IPSECDOI_PROTO_ISAKMP
:
622 if (delete->spi_size
!= sizeof(isakmp_index
)) {
623 plog(LLV_ERROR
, LOCATION
, iph1
->remote
,
624 "delete payload with strange spi "
625 "size %d(proto_id:%d)\n",
626 delete->spi_size
, delete->proto_id
);
630 del_ph1
=getph1byindex((isakmp_index
*)(delete + 1));
633 // hack: start a rekey now, if one was pending (only for client).
634 if (del_ph1
->sce_rekey
&&
635 del_ph1
->parent_session
&&
636 del_ph1
->parent_session
->is_client
&&
637 del_ph1
->parent_session
->established
) {
638 isakmp_ph1rekeyexpire(del_ph1
, FALSE
);
641 EVT_PUSH(del_ph1
->local
, del_ph1
->remote
,
642 EVTT_PEERPH1_NOPROP
, NULL
);
644 SCHED_KILL(del_ph1
->scr
);
647 * Do not delete IPsec SAs when receiving an IKE delete notification.
648 * Just delete the IKE SA.
650 #ifdef ENABLE_VPNCONTROL_PORT
652 if (del_ph1
->started_by_api
)
653 if (islast_ph1(del_ph1
)) {
656 /* notify the API that we have received the delete */
657 if (iph1
->remote
->sa_family
== AF_INET
)
658 address
= ((struct sockaddr_in
*)(iph1
->remote
))->sin_addr
.s_addr
;
661 if (iph1
->cert
&& IS_CERT_STATUS_ERROR(iph1
->cert
->status
)) {
662 vpncontrol_notify_ike_failed(VPNCTL_NTYPE_PH1_DELETE_CERT_ERROR
+ iph1
->cert
->status
, FROM_REMOTE
, address
, 0, NULL
);
664 vpncontrol_notify_ike_failed(VPNCTL_NTYPE_PH1_DELETE
, FROM_REMOTE
, address
, 0, NULL
);
668 isakmp_ph1expire(del_ph1
);
672 case IPSECDOI_PROTO_IPSEC_AH
:
673 case IPSECDOI_PROTO_IPSEC_ESP
:
674 if (delete->spi_size
!= sizeof(u_int32_t
)) {
675 plog(LLV_ERROR
, LOCATION
, iph1
->remote
,
676 "delete payload with strange spi "
677 "size %d(proto_id:%d)\n",
678 delete->spi_size
, delete->proto_id
);
681 EVT_PUSH(iph1
->local
, iph1
->remote
,
682 EVTT_PEER_DELETE
, NULL
);
683 purge_ipsec_spi(iph1
->remote
, delete->proto_id
,
684 (u_int32_t
*)(delete + 1), num_spi
);
687 case IPSECDOI_PROTO_IPCOMP
:
688 /* need to handle both 16bit/32bit SPI */
689 memset(&spi
, 0, sizeof(spi
));
690 if (delete->spi_size
== sizeof(spi
.spi16
[1])) {
691 memcpy(&spi
.spi16
[1], delete + 1,
692 sizeof(spi
.spi16
[1]));
693 } else if (delete->spi_size
== sizeof(spi
.spi32
))
694 memcpy(&spi
.spi32
, delete + 1, sizeof(spi
.spi32
));
696 plog(LLV_ERROR
, LOCATION
, iph1
->remote
,
697 "delete payload with strange spi "
698 "size %d(proto_id:%d)\n",
699 delete->spi_size
, delete->proto_id
);
702 purge_ipsec_spi(iph1
->remote
, delete->proto_id
,
703 &spi
.spi32
, num_spi
);
707 plog(LLV_ERROR
, LOCATION
, iph1
->remote
,
708 "deletion message received, "
709 "invalid proto_id: %d\n",
714 plog(LLV_DEBUG
, LOCATION
, NULL
, "purged SAs.\n");
720 * send Delete payload (for ISAKMP SA) in Informational exchange.
723 isakmp_info_send_d1(iph1
)
724 struct ph1handle
*iph1
;
726 struct isakmp_pl_d
*d
;
727 vchar_t
*payload
= NULL
;
731 if (iph1
->status
!= PHASE2ST_ESTABLISHED
)
734 /* create delete payload */
736 /* send SPIs of inbound SAs. */
737 /* XXX should send outbound SAs's ? */
738 tlen
= sizeof(*d
) + sizeof(isakmp_index
);
739 payload
= vmalloc(tlen
);
740 if (payload
== NULL
) {
741 plog(LLV_ERROR
, LOCATION
, NULL
,
742 "failed to get buffer for payload.\n");
746 d
= (struct isakmp_pl_d
*)payload
->v
;
747 d
->h
.np
= ISAKMP_NPTYPE_NONE
;
748 d
->h
.len
= htons(tlen
);
749 d
->doi
= htonl(IPSEC_DOI
);
750 d
->proto_id
= IPSECDOI_PROTO_ISAKMP
;
751 d
->spi_size
= sizeof(isakmp_index
);
752 d
->num_spi
= htons(1);
753 memcpy(d
+ 1, &iph1
->index
, sizeof(isakmp_index
));
755 error
= isakmp_info_send_common(iph1
, payload
,
759 IPSECSESSIONTRACEREVENT(iph1
->parent_session
,
760 IPSECSESSIONEVENTCODE_IKEV1_INFO_NOTICE_TX_FAIL
,
761 CONSTSTR("Delete ISAKMP-SA"),
762 CONSTSTR("Failed to transmit Delete-ISAKMP-SA message"));
764 IPSECSESSIONTRACEREVENT(iph1
->parent_session
,
765 IPSECSESSIONEVENTCODE_IKEV1_INFO_NOTICE_TX_SUCC
,
766 CONSTSTR("Delete ISAKMP-SA"),
774 * send Delete payload (for IPsec SA) in Informational exchange, based on
775 * pfkey msg. It sends always single SPI.
778 isakmp_info_send_d2(iph2
)
779 struct ph2handle
*iph2
;
781 struct ph1handle
*iph1
;
783 struct isakmp_pl_d
*d
;
784 vchar_t
*payload
= NULL
;
789 if (iph2
->status
!= PHASE2ST_ESTABLISHED
)
793 * don't send delete information if there is no phase 1 handler.
794 * It's nonsensical to negotiate phase 1 to send the information.
796 iph1
= ike_session_get_established_ph1(iph2
->parent_session
);
798 iph1
= getph1byaddr(iph2
->src
, iph2
->dst
);
801 IPSECSESSIONTRACEREVENT(iph2
->parent_session
,
802 IPSECSESSIONEVENTCODE_IKE_PACKET_TX_FAIL
,
803 CONSTSTR("Information message"),
804 CONSTSTR("Failed to transmit Information message"));
805 IPSECSESSIONTRACEREVENT(iph2
->parent_session
,
806 IPSECSESSIONEVENTCODE_IKEV1_INFO_NOTICE_TX_FAIL
,
807 CONSTSTR("Delete IPSEC-SA"),
808 CONSTSTR("Failed to transmit Delete-IPSEC-SA message"));
809 plog(LLV_DEBUG2
, LOCATION
, NULL
,
810 "No ph1 handler found, could not send DELETE_SA\n");
814 /* create delete payload */
815 for (pr
= iph2
->approval
->head
; pr
!= NULL
; pr
= pr
->next
) {
817 /* send SPIs of inbound SAs. */
819 * XXX should I send outbound SAs's ?
820 * I send inbound SAs's SPI only at the moment because I can't
821 * decode any more if peer send encoded packet without aware of
822 * deletion of SA. Outbound SAs don't come under the situation.
824 tlen
= sizeof(*d
) + pr
->spisize
;
825 payload
= vmalloc(tlen
);
826 if (payload
== NULL
) {
827 IPSECSESSIONTRACEREVENT(iph2
->parent_session
,
828 IPSECSESSIONEVENTCODE_IKE_PACKET_TX_FAIL
,
829 CONSTSTR("Information message"),
830 CONSTSTR("Failed to transmit Information message"));
831 IPSECSESSIONTRACEREVENT(iph2
->parent_session
,
832 IPSECSESSIONEVENTCODE_IKEV1_INFO_NOTICE_TX_FAIL
,
833 CONSTSTR("Delete IPSEC-SA"),
834 CONSTSTR("Failed to transmit Delete-IPSEC-SA message"));
835 plog(LLV_ERROR
, LOCATION
, NULL
,
836 "failed to get buffer for payload.\n");
840 d
= (struct isakmp_pl_d
*)payload
->v
;
841 d
->h
.np
= ISAKMP_NPTYPE_NONE
;
842 d
->h
.len
= htons(tlen
);
843 d
->doi
= htonl(IPSEC_DOI
);
844 d
->proto_id
= pr
->proto_id
;
845 d
->spi_size
= pr
->spisize
;
846 d
->num_spi
= htons(1);
848 * XXX SPI bits are left-filled, for use with IPComp.
849 * we should be switching to variable-length spi field...
851 spi
= (u_int8_t
*)&pr
->spi
;
852 spi
+= sizeof(pr
->spi
);
854 memcpy(d
+ 1, spi
, pr
->spisize
);
856 error
= isakmp_info_send_common(iph1
, payload
,
860 IPSECSESSIONTRACEREVENT(iph2
->parent_session
,
861 IPSECSESSIONEVENTCODE_IKEV1_INFO_NOTICE_TX_FAIL
,
862 CONSTSTR("Delete IPSEC-SA"),
863 CONSTSTR("Failed to transmit Delete-IPSEC-SA"));
865 IPSECSESSIONTRACEREVENT(iph2
->parent_session
,
866 IPSECSESSIONEVENTCODE_IKEV1_INFO_NOTICE_TX_SUCC
,
867 CONSTSTR("Delete IPSEC-SA"),
876 * send Notification payload (for without ISAKMP SA) in Informational exchange
879 isakmp_info_send_nx(isakmp
, remote
, local
, type
, data
)
880 struct isakmp
*isakmp
;
881 struct sockaddr
*remote
, *local
;
885 struct ph1handle
*iph1
= NULL
;
886 struct remoteconf
*rmconf
;
887 vchar_t
*payload
= NULL
;
890 struct isakmp_pl_n
*n
;
891 int spisiz
= 0; /* see below */
892 ike_session_t
*sess
= ike_session_get_session(local
, remote
, FALSE
);
894 /* search appropreate configuration */
895 rmconf
= getrmconf(remote
);
896 if (rmconf
== NULL
) {
897 IPSECSESSIONTRACEREVENT(sess
,
898 IPSECSESSIONEVENTCODE_IKE_PACKET_TX_FAIL
,
899 CONSTSTR("Information message"),
900 CONSTSTR("Failed to transmit Information message (no remote configuration)"));
901 plog(LLV_ERROR
, LOCATION
, remote
,
902 "no configuration found for peer address.\n");
906 /* add new entry to isakmp status table. */
909 IPSECSESSIONTRACEREVENT(sess
,
910 IPSECSESSIONEVENTCODE_IKE_PACKET_TX_FAIL
,
911 CONSTSTR("Information message"),
912 CONSTSTR("Failed to transmit Information message (no new phase1)"));
913 plog(LLV_ERROR
, LOCATION
, NULL
,
914 "failed to allocate ph1");
918 memcpy(&iph1
->index
.i_ck
, &isakmp
->i_ck
, sizeof(cookie_t
));
919 isakmp_newcookie((char *)&iph1
->index
.r_ck
, remote
, local
);
920 iph1
->status
= PHASE1ST_START
;
921 iph1
->rmconf
= rmconf
;
923 if (link_rmconf_to_ph1(rmconf
) < 0) {
924 IPSECSESSIONTRACEREVENT(sess
,
925 IPSECSESSIONEVENTCODE_IKE_PACKET_TX_FAIL
,
926 CONSTSTR("Information message"),
927 CONSTSTR("Failed to transmit Information message (can't link remote configuration to phase1)"));
928 plog(LLV_ERROR
, LOCATION
, remote
,
936 iph1
->side
= INITIATOR
;
937 iph1
->version
= isakmp
->v
;
939 iph1
->msgid
= 0; /* XXX */
941 if ((iph1
->mode_cfg
= isakmp_cfg_mkstate()) == NULL
) {
948 iph1
->frag_chain
= NULL
;
951 /* copy remote address */
952 if (copy_ph1addresses(iph1
, rmconf
, remote
, local
) < 0) {
953 IPSECSESSIONTRACEREVENT(sess
,
954 IPSECSESSIONEVENTCODE_IKE_PACKET_TX_FAIL
,
955 CONSTSTR("Information message"),
956 CONSTSTR("Failed to transmit Information Message (can't copy phase1 addresses)"));
957 plog(LLV_ERROR
, LOCATION
, NULL
,
958 "failed to copy ph1 addresses");
960 iph1
= NULL
; /* deleted in copy_ph1addresses */
964 tlen
= sizeof(*n
) + spisiz
;
967 payload
= vmalloc(tlen
);
968 if (payload
== NULL
) {
969 IPSECSESSIONTRACEREVENT(sess
,
970 IPSECSESSIONEVENTCODE_IKE_PACKET_TX_FAIL
,
971 CONSTSTR("Information message"),
972 CONSTSTR("Failed to transmit Information Message (can't allocate payload)"));
973 plog(LLV_ERROR
, LOCATION
, NULL
,
974 "failed to get buffer to send.\n");
979 n
= (struct isakmp_pl_n
*)payload
->v
;
980 n
->h
.np
= ISAKMP_NPTYPE_NONE
;
981 n
->h
.len
= htons(tlen
);
982 n
->doi
= htonl(IPSEC_DOI
);
983 n
->proto_id
= IPSECDOI_KEY_IKE
;
984 n
->spi_size
= spisiz
;
985 n
->type
= htons(type
);
987 memset(n
+ 1, 0, spisiz
); /* XXX spisiz is always 0 */
989 memcpy((caddr_t
)(n
+ 1) + spisiz
, data
->v
, data
->l
);
991 #ifdef ENABLE_VPNCONTROL_PORT
994 if (type
== ISAKMP_INTERNAL_ERROR
||
995 type
<= ISAKMP_NTYPE_UNEQUAL_PAYLOAD_LENGTHS
) {
996 if (remote
->sa_family
== AF_INET
)
997 address
= ((struct sockaddr_in
*)remote
)->sin_addr
.s_addr
;
1000 (void)vpncontrol_notify_ike_failed(type
, FROM_LOCAL
, address
,
1001 (data
? data
->l
: 0), (data
? data
->v
: NULL
));
1006 error
= isakmp_info_send_common(iph1
, payload
, ISAKMP_NPTYPE_N
, 0);
1009 IPSECSESSIONTRACEREVENT(sess
,
1010 IPSECSESSIONEVENTCODE_IKEV1_INFO_NOTICE_TX_FAIL
,
1011 CONSTSTR("Without ISAKMP-SA"),
1012 CONSTSTR("Failed to transmit Without-ISAKMP-SA message"));
1014 IPSECSESSIONTRACEREVENT(sess
,
1015 IPSECSESSIONEVENTCODE_IKEV1_INFO_NOTICE_TX_SUCC
,
1016 CONSTSTR("Without ISAKMP-SA"),
1028 * send Notification payload (for ISAKMP SA) in Informational exchange
1031 isakmp_info_send_n1(iph1
, type
, data
)
1032 struct ph1handle
*iph1
;
1036 vchar_t
*payload
= NULL
;
1039 struct isakmp_pl_n
*n
;
1043 * note on SPI size: which description is correct? I have chosen
1046 * RFC2408 3.1, 2nd paragraph says: ISAKMP SA is identified by
1047 * Initiator/Responder cookie and SPI has no meaning, SPI size = 0.
1048 * RFC2408 3.1, first paragraph on page 40: ISAKMP SA is identified
1049 * by cookie and SPI has no meaning, 0 <= SPI size <= 16.
1050 * RFC2407 4.6.3.3, INITIAL-CONTACT is required to set to 16.
1052 if (type
== ISAKMP_NTYPE_INITIAL_CONTACT
||
1053 type
== ISAKMP_NTYPE_LOAD_BALANCE
)
1054 spisiz
= sizeof(isakmp_index
);
1058 tlen
= sizeof(*n
) + spisiz
;
1061 payload
= vmalloc(tlen
);
1062 if (payload
== NULL
) {
1063 IPSECSESSIONTRACEREVENT(iph1
->parent_session
,
1064 IPSECSESSIONEVENTCODE_IKEV1_INFO_NOTICE_TX_FAIL
,
1065 CONSTSTR("ISAKMP-SA"),
1066 CONSTSTR("Failed to transmit ISAKMP-SA message (can't allocate payload)"));
1067 plog(LLV_ERROR
, LOCATION
, NULL
,
1068 "failed to get buffer to send.\n");
1072 n
= (struct isakmp_pl_n
*)payload
->v
;
1073 n
->h
.np
= ISAKMP_NPTYPE_NONE
;
1074 n
->h
.len
= htons(tlen
);
1075 n
->doi
= htonl(iph1
->rmconf
->doitype
);
1076 n
->proto_id
= IPSECDOI_PROTO_ISAKMP
; /* XXX to be configurable ? */
1077 n
->spi_size
= spisiz
;
1078 n
->type
= htons(type
);
1080 memcpy(n
+ 1, &iph1
->index
, sizeof(isakmp_index
));
1082 memcpy((caddr_t
)(n
+ 1) + spisiz
, data
->v
, data
->l
);
1084 #ifdef ENABLE_VPNCONTROL_PORT
1088 if (type
== ISAKMP_INTERNAL_ERROR
||
1089 type
<= ISAKMP_NTYPE_UNEQUAL_PAYLOAD_LENGTHS
) {
1090 if (iph1
->remote
->sa_family
== AF_INET
)
1091 address
= ((struct sockaddr_in
*)iph1
->remote
)->sin_addr
.s_addr
;
1094 (void)vpncontrol_notify_ike_failed(type
, FROM_LOCAL
, address
,
1095 (data
? data
->l
: 0), (data
? data
->v
: NULL
));
1100 error
= isakmp_info_send_common(iph1
, payload
, ISAKMP_NPTYPE_N
, iph1
->flags
);
1103 IPSECSESSIONTRACEREVENT(iph1
->parent_session
,
1104 IPSECSESSIONEVENTCODE_IKEV1_INFO_NOTICE_TX_FAIL
,
1105 CONSTSTR("ISAKMP-SA"),
1106 CONSTSTR("Can't transmit ISAKMP-SA message"));
1108 IPSECSESSIONTRACEREVENT(iph1
->parent_session
,
1109 IPSECSESSIONEVENTCODE_IKEV1_INFO_NOTICE_TX_SUCC
,
1110 CONSTSTR("ISAKMP-SA"),
1118 * send Notification payload (for IPsec SA) in Informational exchange
1121 isakmp_info_send_n2(iph2
, type
, data
)
1122 struct ph2handle
*iph2
;
1126 struct ph1handle
*iph1
= iph2
->ph1
;
1127 vchar_t
*payload
= NULL
;
1130 struct isakmp_pl_n
*n
;
1133 if (!iph2
->approval
)
1136 pr
= iph2
->approval
->head
;
1138 /* XXX must be get proper spi */
1139 tlen
= sizeof(*n
) + pr
->spisize
;
1142 payload
= vmalloc(tlen
);
1143 if (payload
== NULL
) {
1144 IPSECSESSIONTRACEREVENT(iph2
->parent_session
,
1145 IPSECSESSIONEVENTCODE_IKEV1_INFO_NOTICE_TX_FAIL
,
1146 CONSTSTR("IPSEC-SA"),
1147 CONSTSTR("Failed to transmit IPSEC-SA message (can't allocate payload)"));
1148 plog(LLV_ERROR
, LOCATION
, NULL
,
1149 "failed to get buffer to send.\n");
1153 n
= (struct isakmp_pl_n
*)payload
->v
;
1154 n
->h
.np
= ISAKMP_NPTYPE_NONE
;
1155 n
->h
.len
= htons(tlen
);
1156 n
->doi
= htonl(IPSEC_DOI
); /* IPSEC DOI (1) */
1157 n
->proto_id
= pr
->proto_id
; /* IPSEC AH/ESP/whatever*/
1158 n
->spi_size
= pr
->spisize
;
1159 n
->type
= htons(type
);
1160 *(u_int32_t
*)(n
+ 1) = pr
->spi
;
1162 memcpy((caddr_t
)(n
+ 1) + pr
->spisize
, data
->v
, data
->l
);
1164 iph2
->flags
|= ISAKMP_FLAG_E
; /* XXX Should we do FLAG_A ? */
1165 error
= isakmp_info_send_common(iph1
, payload
, ISAKMP_NPTYPE_N
, iph2
->flags
);
1168 IPSECSESSIONTRACEREVENT(iph2
->parent_session
,
1169 IPSECSESSIONEVENTCODE_IKEV1_INFO_NOTICE_TX_FAIL
,
1170 CONSTSTR("IPSEC-SA"),
1171 CONSTSTR("Failed to transmit IPSEC-SA message"));
1173 IPSECSESSIONTRACEREVENT(iph2
->parent_session
,
1174 IPSECSESSIONEVENTCODE_IKEV1_INFO_NOTICE_TX_SUCC
,
1175 CONSTSTR("IPSEC-SA"),
1184 * When ph1->skeyid_a == NULL, send message without encoding.
1187 isakmp_info_send_common(iph1
, payload
, np
, flags
)
1188 struct ph1handle
*iph1
;
1193 struct ph2handle
*iph2
= NULL
;
1194 vchar_t
*hash
= NULL
;
1195 struct isakmp
*isakmp
;
1196 struct isakmp_gen
*gen
;
1201 /* add new entry to isakmp status table */
1204 plog(LLV_ERROR
, LOCATION
, NULL
,
1205 "failed to allocate ph2");
1209 iph2
->dst
= dupsaddr(iph1
->remote
);
1210 if (iph2
->dst
== NULL
) {
1211 plog(LLV_ERROR
, LOCATION
, NULL
,
1212 "failed to duplicate remote address");
1216 iph2
->src
= dupsaddr(iph1
->local
);
1217 if (iph2
->src
== NULL
) {
1218 plog(LLV_ERROR
, LOCATION
, NULL
,
1219 "failed to duplicate local address");
1223 switch (iph1
->remote
->sa_family
) {
1225 #if (!defined(ENABLE_NATT)) || (defined(BROKEN_NATT))
1226 ((struct sockaddr_in
*)iph2
->dst
)->sin_port
= 0;
1227 ((struct sockaddr_in
*)iph2
->src
)->sin_port
= 0;
1232 #if (!defined(ENABLE_NATT)) || (defined(BROKEN_NATT))
1233 ((struct sockaddr_in6
*)iph2
->dst
)->sin6_port
= 0;
1234 ((struct sockaddr_in6
*)iph2
->src
)->sin6_port
= 0;
1239 plog(LLV_ERROR
, LOCATION
, NULL
,
1240 "invalid family: %d\n", iph1
->remote
->sa_family
);
1245 iph2
->side
= INITIATOR
;
1246 iph2
->status
= PHASE2ST_START
;
1247 iph2
->msgid
= isakmp_newmsgid2(iph1
);
1249 /* get IV and HASH(1) if skeyid_a was generated. */
1250 if (iph1
->skeyid_a
!= NULL
) {
1251 iph2
->ivm
= oakley_newiv2(iph1
, iph2
->msgid
);
1252 if (iph2
->ivm
== NULL
) {
1253 plog(LLV_ERROR
, LOCATION
, NULL
,
1254 "failed to generate IV");
1259 /* generate HASH(1) */
1260 hash
= oakley_compute_hash1(iph2
->ph1
, iph2
->msgid
, payload
);
1262 plog(LLV_ERROR
, LOCATION
, NULL
,
1263 "failed to generate HASH");
1268 /* initialized total buffer length */
1270 tlen
+= sizeof(*gen
);
1272 /* IKE-SA is not established */
1275 /* initialized total buffer length */
1278 if ((flags
& ISAKMP_FLAG_A
) == 0)
1279 iph2
->flags
= (hash
== NULL
? 0 : ISAKMP_FLAG_E
);
1281 iph2
->flags
= (hash
== NULL
? 0 : ISAKMP_FLAG_A
);
1284 bindph12(iph1
, iph2
);
1286 tlen
+= sizeof(*isakmp
) + payload
->l
;
1288 /* create buffer for isakmp payload */
1289 iph2
->sendbuf
= vmalloc(tlen
);
1290 if (iph2
->sendbuf
== NULL
) {
1291 plog(LLV_ERROR
, LOCATION
, NULL
,
1292 "failed to get buffer to send.\n");
1296 /* create isakmp header */
1297 isakmp
= (struct isakmp
*)iph2
->sendbuf
->v
;
1298 memcpy(&isakmp
->i_ck
, &iph1
->index
.i_ck
, sizeof(cookie_t
));
1299 memcpy(&isakmp
->r_ck
, &iph1
->index
.r_ck
, sizeof(cookie_t
));
1300 isakmp
->np
= hash
== NULL
? (np
& 0xff) : ISAKMP_NPTYPE_HASH
;
1301 isakmp
->v
= iph1
->version
;
1302 isakmp
->etype
= ISAKMP_ETYPE_INFO
;
1303 isakmp
->flags
= iph2
->flags
;
1304 memcpy(&isakmp
->msgid
, &iph2
->msgid
, sizeof(isakmp
->msgid
));
1305 isakmp
->len
= htonl(tlen
);
1306 p
= (char *)(isakmp
+ 1);
1308 /* create HASH payload */
1310 gen
= (struct isakmp_gen
*)p
;
1311 gen
->np
= np
& 0xff;
1312 gen
->len
= htons(sizeof(*gen
) + hash
->l
);
1314 memcpy(p
, hash
->v
, hash
->l
);
1319 memcpy(p
, payload
->v
, payload
->l
);
1322 #ifdef HAVE_PRINT_ISAKMP_C
1323 isakmp_printpacket(iph2
->sendbuf
, iph1
->local
, iph1
->remote
, 1);
1327 if (ISSET(isakmp
->flags
, ISAKMP_FLAG_E
)) {
1330 tmp
= oakley_do_encrypt(iph2
->ph1
, iph2
->sendbuf
, iph2
->ivm
->ive
,
1332 VPTRINIT(iph2
->sendbuf
);
1334 plog(LLV_ERROR
, LOCATION
, NULL
,
1335 "failed to encrypt packet");
1338 iph2
->sendbuf
= tmp
;
1341 /* HDR*, HASH(1), N */
1342 if (isakmp_send(iph2
->ph1
, iph2
->sendbuf
) < 0) {
1343 plog(LLV_ERROR
, LOCATION
, NULL
,
1344 "failed to send packet");
1345 VPTRINIT(iph2
->sendbuf
);
1349 plog(LLV_DEBUG
, LOCATION
, NULL
,
1350 "sendto Information %s.\n", s_isakmp_nptype(np
));
1353 * don't resend notify message because peer can use Acknowledged
1354 * Informational if peer requires the reply of the notify message.
1357 /* XXX If Acknowledged Informational required, don't delete ph2handle */
1359 VPTRINIT(iph2
->sendbuf
);
1360 IPSECSESSIONTRACEREVENT(iph1
->parent_session
,
1361 IPSECSESSIONEVENTCODE_IKE_PACKET_TX_SUCC
,
1362 CONSTSTR("Information message"),
1369 IPSECSESSIONTRACEREVENT(iph1
->parent_session
,
1370 IPSECSESSIONEVENTCODE_IKE_PACKET_TX_FAIL
,
1371 CONSTSTR("Information message"),
1372 CONSTSTR("Failed to transmit Information message"));
1386 * add a notify payload to buffer by reallocating buffer.
1387 * If buf == NULL, the function only create a notify payload.
1389 * XXX Which is SPI to be included, inbound or outbound ?
1392 isakmp_add_pl_n(buf0
, np_p
, type
, pr
, data
)
1399 vchar_t
*buf
= NULL
;
1400 struct isakmp_pl_n
*n
;
1405 **np_p
= ISAKMP_NPTYPE_N
;
1407 tlen
= sizeof(*n
) + pr
->spisize
;
1413 buf
= vrealloc(buf0
, buf0
->l
+ tlen
);
1415 buf
= vmalloc(tlen
);
1417 plog(LLV_ERROR
, LOCATION
, NULL
,
1418 "failed to get a payload buffer.\n");
1422 n
= (struct isakmp_pl_n
*)(buf
->v
+ oldlen
);
1423 n
->h
.np
= ISAKMP_NPTYPE_NONE
;
1424 n
->h
.len
= htons(tlen
);
1425 n
->doi
= htonl(IPSEC_DOI
); /* IPSEC DOI (1) */
1426 n
->proto_id
= pr
->proto_id
; /* IPSEC AH/ESP/whatever*/
1427 n
->spi_size
= pr
->spisize
;
1428 n
->type
= htons(type
);
1429 *(u_int32_t
*)(n
+ 1) = pr
->spi
; /* XXX */
1431 memcpy((caddr_t
)(n
+ 1) + pr
->spisize
, data
->v
, data
->l
);
1433 /* save the pointer of next payload type */
1440 purge_isakmp_spi(proto
, spi
, n
)
1442 isakmp_index
*spi
; /*network byteorder*/
1445 struct ph1handle
*iph1
;
1448 for (i
= 0; i
< n
; i
++) {
1449 iph1
= getph1byindex(&spi
[i
]);
1450 if (!iph1
|| iph1
->is_dying
|| iph1
->status
== PHASE1ST_EXPIRED
)
1453 plog(LLV_INFO
, LOCATION
, NULL
,
1454 "purged ISAKMP-SA proto_id=%s spi=%s.\n",
1455 s_ipsecdoi_proto(proto
),
1456 isakmp_pindex(&spi
[i
], 0));
1458 SCHED_KILL(iph1
->sce
);
1459 SCHED_KILL(iph1
->sce_rekey
);
1460 iph1
->status
= PHASE1ST_EXPIRED
;
1461 ike_session_update_ph1_ph2tree(iph1
); // move unbind/rebind ph2s to from current ph1
1462 iph1
->sce
= sched_new(1, isakmp_ph1delete_stub
, iph1
);
1469 purge_ipsec_spi(dst0
, proto
, spi
, n
)
1470 struct sockaddr
*dst0
;
1472 u_int32_t
*spi
; /*network byteorder*/
1475 vchar_t
*buf
= NULL
;
1476 struct sadb_msg
*msg
, *next
, *end
;
1478 struct sadb_lifetime
*lt
;
1479 struct sockaddr
*src
, *dst
;
1480 struct ph2handle
*iph2
;
1483 caddr_t mhp
[SADB_EXT_MAX
+ 1];
1485 plog(LLV_DEBUG2
, LOCATION
, NULL
,
1486 "purge_ipsec_spi:\n");
1487 plog(LLV_DEBUG2
, LOCATION
, NULL
, "dst0: %s\n", saddr2str(dst0
));
1488 plog(LLV_DEBUG2
, LOCATION
, NULL
, "SPI: %08X\n", ntohl(spi
[0]));
1490 buf
= pfkey_dump_sadb(ipsecdoi2pfkey_proto(proto
));
1492 plog(LLV_DEBUG
, LOCATION
, NULL
,
1493 "pfkey_dump_sadb returned nothing.\n");
1497 msg
= (struct sadb_msg
*)buf
->v
;
1498 end
= (struct sadb_msg
*)(buf
->v
+ buf
->l
);
1501 if ((msg
->sadb_msg_len
<< 3) < sizeof(*msg
))
1503 next
= (struct sadb_msg
*)((caddr_t
)msg
+ (msg
->sadb_msg_len
<< 3));
1504 if (msg
->sadb_msg_type
!= SADB_DUMP
) {
1509 if (pfkey_align(msg
, mhp
) || pfkey_check(mhp
)) {
1510 plog(LLV_ERROR
, LOCATION
, NULL
,
1511 "pfkey_check (%s)\n", ipsec_strerror());
1516 sa
= (struct sadb_sa
*)(mhp
[SADB_EXT_SA
]);
1518 || !mhp
[SADB_EXT_ADDRESS_SRC
]
1519 || !mhp
[SADB_EXT_ADDRESS_DST
]) {
1523 src
= PFKEY_ADDR_SADDR(mhp
[SADB_EXT_ADDRESS_SRC
]);
1524 dst
= PFKEY_ADDR_SADDR(mhp
[SADB_EXT_ADDRESS_DST
]);
1525 lt
= (struct sadb_lifetime
*)mhp
[SADB_EXT_LIFETIME_HARD
];
1527 created
= lt
->sadb_lifetime_addtime
;
1531 if (sa
->sadb_sa_state
!= SADB_SASTATE_MATURE
1532 && sa
->sadb_sa_state
!= SADB_SASTATE_DYING
) {
1536 plog(LLV_DEBUG2
, LOCATION
, NULL
, "src: %s\n", saddr2str(src
));
1537 plog(LLV_DEBUG2
, LOCATION
, NULL
, "dst: %s\n", saddr2str(dst
));
1541 /* XXX n^2 algorithm, inefficient */
1543 /* don't delete inbound SAs at the moment */
1544 /* XXX should we remove SAs with opposite direction as well? */
1545 if (CMPSADDR2(dst0
, dst
)) {
1550 for (i
= 0; i
< n
; i
++) {
1551 plog(LLV_DEBUG
, LOCATION
, NULL
,
1552 "check spi(packet)=%u spi(db)=%u.\n",
1553 ntohl(spi
[i
]), ntohl(sa
->sadb_sa_spi
));
1554 if (spi
[i
] != sa
->sadb_sa_spi
)
1557 pfkey_send_delete(lcconf
->sock_pfkey
,
1558 msg
->sadb_msg_satype
,
1560 src
, dst
, sa
->sadb_sa_spi
);
1563 * delete a relative phase 2 handler.
1564 * continue to process if no relative phase 2 handler
1567 iph2
= getph2bysaidx(src
, dst
, proto
, spi
[i
]);
1575 plog(LLV_INFO
, LOCATION
, NULL
,
1576 "purged IPsec-SA proto_id=%s spi=%u.\n",
1577 s_ipsecdoi_proto(proto
),
1589 * delete all phase2 sa relatived to the destination address.
1590 * Don't delete Phase 1 handlers on INITIAL-CONTACT, and don't ignore
1591 * an INITIAL-CONTACT if we have contacted the peer. This matches the
1592 * Sun IKE behavior, and makes rekeying work much better when the peer
1596 info_recv_initialcontact(iph1
)
1597 struct ph1handle
*iph1
;
1599 vchar_t
*buf
= NULL
;
1600 struct sadb_msg
*msg
, *next
, *end
;
1602 struct sockaddr
*src
, *dst
;
1603 caddr_t mhp
[SADB_EXT_MAX
+ 1];
1605 struct ph2handle
*iph2
;
1613 // TODO: make sure that is_rekey is cleared for this. and session indicates the same
1615 loc
= racoon_strdup(saddrwop2str(iph1
->local
));
1616 rem
= racoon_strdup(saddrwop2str(iph1
->remote
));
1621 * Purge all IPSEC-SAs for the peer. We can do this
1622 * the easy way (using a PF_KEY SADB_DELETE extension)
1623 * or we can do it the hard way.
1625 for (i
= 0; i
< pfkey_nsatypes
; i
++) {
1626 proto_id
= pfkey2ipsecdoi_proto(pfkey_satypes
[i
].ps_satype
);
1628 plog(LLV_INFO
, LOCATION
, NULL
,
1629 "purging %s SAs for %s -> %s\n",
1630 pfkey_satypes
[i
].ps_name
, loc
, rem
);
1631 if (pfkey_send_delete_all(lcconf
->sock_pfkey
,
1632 pfkey_satypes
[i
].ps_satype
, IPSEC_MODE_ANY
,
1633 iph1
->local
, iph1
->remote
) == -1) {
1634 plog(LLV_ERROR
, LOCATION
, NULL
,
1635 "delete_all %s -> %s failed for %s (%s)\n",
1637 pfkey_satypes
[i
].ps_name
, ipsec_strerror());
1641 deleteallph2(iph1
->local
, iph1
->remote
, proto_id
);
1643 plog(LLV_INFO
, LOCATION
, NULL
,
1644 "purging %s SAs for %s -> %s\n",
1645 pfkey_satypes
[i
].ps_name
, rem
, loc
);
1646 if (pfkey_send_delete_all(lcconf
->sock_pfkey
,
1647 pfkey_satypes
[i
].ps_satype
, IPSEC_MODE_ANY
,
1648 iph1
->remote
, iph1
->local
) == -1) {
1649 plog(LLV_ERROR
, LOCATION
, NULL
,
1650 "delete_all %s -> %s failed for %s (%s)\n",
1652 pfkey_satypes
[i
].ps_name
, ipsec_strerror());
1656 deleteallph2(iph1
->remote
, iph1
->local
, proto_id
);
1668 buf
= pfkey_dump_sadb(SADB_SATYPE_UNSPEC
);
1670 plog(LLV_DEBUG
, LOCATION
, NULL
,
1671 "pfkey_dump_sadb returned nothing.\n");
1675 msg
= (struct sadb_msg
*)buf
->v
;
1676 end
= (struct sadb_msg
*)(buf
->v
+ buf
->l
);
1679 if ((msg
->sadb_msg_len
<< 3) < sizeof(*msg
))
1681 next
= (struct sadb_msg
*)((caddr_t
)msg
+ (msg
->sadb_msg_len
<< 3));
1682 if (msg
->sadb_msg_type
!= SADB_DUMP
) {
1687 if (pfkey_align(msg
, mhp
) || pfkey_check(mhp
)) {
1688 plog(LLV_ERROR
, LOCATION
, NULL
,
1689 "pfkey_check (%s)\n", ipsec_strerror());
1694 if (mhp
[SADB_EXT_SA
] == NULL
1695 || mhp
[SADB_EXT_ADDRESS_SRC
] == NULL
1696 || mhp
[SADB_EXT_ADDRESS_DST
] == NULL
) {
1700 sa
= (struct sadb_sa
*)mhp
[SADB_EXT_SA
];
1701 src
= PFKEY_ADDR_SADDR(mhp
[SADB_EXT_ADDRESS_SRC
]);
1702 dst
= PFKEY_ADDR_SADDR(mhp
[SADB_EXT_ADDRESS_DST
]);
1704 if (sa
->sadb_sa_state
!= SADB_SASTATE_MATURE
1705 && sa
->sadb_sa_state
!= SADB_SASTATE_DYING
) {
1711 * RFC2407 4.6.3.3 INITIAL-CONTACT is the message that
1712 * announces the sender of the message was rebooted.
1713 * it is interpreted to delete all SAs which source address
1714 * is the sender of the message.
1715 * racoon only deletes SA which is matched both the
1716 * source address and the destination accress.
1720 * XXX RFC 3947 says that whe MUST NOT use IP+port to find old SAs
1723 if(iph1
->natt_flags
& NAT_DETECTED
){
1724 if (CMPSADDR(iph1
->local
, src
) == 0 &&
1725 CMPSADDR(iph1
->remote
, dst
) == 0)
1727 else if (CMPSADDR(iph1
->remote
, src
) == 0 &&
1728 CMPSADDR(iph1
->local
, dst
) == 0)
1736 /* If there is no NAT-T, we don't have to check addr + port...
1737 * XXX what about a configuration with a remote peers which is not
1738 * NATed, but which NATs some other peers ?
1739 * Here, the INITIAl-CONTACT would also flush all those NATed peers !!
1741 if (cmpsaddrwop(iph1
->local
, src
) == 0 &&
1742 cmpsaddrwop(iph1
->remote
, dst
) == 0)
1744 else if (cmpsaddrwop(iph1
->remote
, src
) == 0 &&
1745 cmpsaddrwop(iph1
->local
, dst
) == 0)
1753 * Make sure this is an SATYPE that we manage.
1754 * This is gross; too bad we couldn't do it the
1757 for (i
= 0; i
< pfkey_nsatypes
; i
++) {
1758 if (pfkey_satypes
[i
].ps_satype
==
1759 msg
->sadb_msg_satype
)
1762 if (i
== pfkey_nsatypes
) {
1767 plog(LLV_INFO
, LOCATION
, NULL
,
1768 "purging spi=%u.\n", ntohl(sa
->sadb_sa_spi
));
1769 pfkey_send_delete(lcconf
->sock_pfkey
,
1770 msg
->sadb_msg_satype
,
1771 IPSEC_MODE_ANY
, src
, dst
, sa
->sadb_sa_spi
);
1774 * delete a relative phase 2 handler.
1775 * continue to process if no relative phase 2 handler
1778 proto_id
= pfkey2ipsecdoi_proto(msg
->sadb_msg_satype
);
1779 iph2
= getph2bysaidx(src
, dst
, proto_id
, sa
->sadb_sa_spi
);
1794 isakmp_check_notify(gen
, iph1
)
1795 struct isakmp_gen
*gen
; /* points to Notify payload */
1796 struct ph1handle
*iph1
;
1798 struct isakmp_pl_n
*notify
= (struct isakmp_pl_n
*)gen
;
1800 plog(LLV_DEBUG
, LOCATION
, iph1
->remote
,
1801 "Notify Message received\n");
1803 switch (ntohs(notify
->type
)) {
1804 case ISAKMP_NTYPE_CONNECTED
:
1805 case ISAKMP_NTYPE_RESPONDER_LIFETIME
:
1806 case ISAKMP_NTYPE_REPLAY_STATUS
:
1807 case ISAKMP_NTYPE_HEARTBEAT
:
1808 #ifdef ENABLE_HYBRID
1809 case ISAKMP_NTYPE_UNITY_HEARTBEAT
:
1811 plog(LLV_WARNING
, LOCATION
, iph1
->remote
,
1812 "ignore %s notification.\n",
1813 s_isakmp_notify_msg(ntohs(notify
->type
)));
1815 case ISAKMP_NTYPE_INITIAL_CONTACT
:
1816 plog(LLV_WARNING
, LOCATION
, iph1
->remote
,
1817 "ignore INITIAL-CONTACT notification, "
1818 "because it is only accepted after phase1.\n");
1820 case ISAKMP_NTYPE_LOAD_BALANCE
:
1821 plog(LLV_WARNING
, LOCATION
, iph1
->remote
,
1822 "ignore LOAD-BALANCE notification, "
1823 "because it is only accepted after phase1.\n");
1826 isakmp_info_send_n1(iph1
, ISAKMP_NTYPE_INVALID_PAYLOAD_TYPE
, NULL
);
1827 plog(LLV_ERROR
, LOCATION
, iph1
->remote
,
1828 "received unknown notification type %s.\n",
1829 s_isakmp_notify_msg(ntohs(notify
->type
)));
1836 isakmp_check_ph2_notify(gen
, iph2
)
1837 struct isakmp_gen
*gen
; /* points to Notify payload */
1838 struct ph2handle
*iph2
;
1840 struct isakmp_pl_n
*notify
= (struct isakmp_pl_n
*)gen
;
1842 plog(LLV_DEBUG
, LOCATION
, iph2
->dst
,
1843 "Phase2 Notify Message received\n");
1845 switch (ntohs(notify
->type
)) {
1846 case ISAKMP_NTYPE_RESPONDER_LIFETIME
:
1847 return((void)isakmp_ph2_responder_lifetime(iph2
,
1848 (struct isakmp_pl_resp_lifetime
*)notify
));
1850 case ISAKMP_NTYPE_CONNECTED
:
1851 case ISAKMP_NTYPE_REPLAY_STATUS
:
1852 case ISAKMP_NTYPE_HEARTBEAT
:
1853 #ifdef ENABLE_HYBRID
1854 case ISAKMP_NTYPE_UNITY_HEARTBEAT
:
1856 plog(LLV_WARNING
, LOCATION
, iph2
->dst
,
1857 "ignore %s notification.\n",
1858 s_isakmp_notify_msg(ntohs(notify
->type
)));
1860 case ISAKMP_NTYPE_INITIAL_CONTACT
:
1861 plog(LLV_WARNING
, LOCATION
, iph2
->dst
,
1862 "ignore INITIAL-CONTACT notification, "
1863 "because it is only accepted after phase1.\n");
1865 case ISAKMP_NTYPE_LOAD_BALANCE
:
1866 plog(LLV_WARNING
, LOCATION
, iph2
->dst
,
1867 "ignore LOAD-BALANCE notification, "
1868 "because it is only accepted after phase1.\n");
1871 isakmp_info_send_n1(iph2
->ph1
, ISAKMP_NTYPE_INVALID_PAYLOAD_TYPE
, NULL
);
1872 plog(LLV_ERROR
, LOCATION
, iph2
->dst
,
1873 "received unknown notification type %s.\n",
1874 s_isakmp_notify_msg(ntohs(notify
->type
)));
1880 #ifdef ENABLE_VPNCONTROL_PORT
1882 isakmp_info_recv_lb(iph1
, n
, encrypted
)
1883 struct ph1handle
*iph1
;
1884 struct isakmp_pl_lb
*n
;
1888 if (iph1
->side
!= INITIATOR
)
1890 plog(LLV_DEBUG
, LOCATION
, NULL
,
1891 "LOAD-BALANCE notification ignored - we are not the initiator.\n");
1894 if (iph1
->remote
->sa_family
!= AF_INET
) {
1895 plog(LLV_DEBUG
, LOCATION
, NULL
,
1896 "LOAD-BALANCE notification ignored - only supported for IPv4.\n");
1900 plog(LLV_DEBUG
, LOCATION
, NULL
,
1901 "LOAD-BALANCE notification ignored - not protected.\n");
1904 if (ntohs(n
->h
.len
) != sizeof(struct isakmp_pl_lb
)) {
1905 plog(LLV_DEBUG
, LOCATION
, NULL
,
1906 "Invalid length of payload\n");
1909 vpncontrol_notify_ike_failed(ISAKMP_NTYPE_LOAD_BALANCE
, FROM_REMOTE
,
1910 ((struct sockaddr_in
*)iph1
->remote
)->sin_addr
.s_addr
, 4, (u_int8_t
*)(&(n
->address
)));
1912 plog(LLV_DEBUG
, LOCATION
, iph1
->remote
,
1913 "received LOAD_BALANCE notification - redirect address=%x.\n",
1916 if (((struct sockaddr_in
*)iph1
->remote
)->sin_addr
.s_addr
!= ntohl(n
->address
)) {
1917 plog(LLV_DEBUG
, LOCATION
, iph1
->remote
,
1918 "deleting old phase1 because of LOAD_BALANCE notification - redirect address=%x.\n",
1921 if (iph1
->status
== PHASE1ST_ESTABLISHED
) {
1922 isakmp_info_send_d1(iph1
);
1924 isakmp_ph1expire(iph1
);
1933 isakmp_info_recv_r_u (iph1
, ru
, msgid
)
1934 struct ph1handle
*iph1
;
1935 struct isakmp_pl_ru
*ru
;
1938 struct isakmp_pl_ru
*ru_ack
;
1939 vchar_t
*payload
= NULL
;
1943 plog(LLV_DEBUG
, LOCATION
, iph1
->remote
,
1944 "DPD R-U-There received\n");
1946 /* XXX should compare cookies with iph1->index?
1947 Or is this already done by calling function? */
1948 tlen
= sizeof(*ru_ack
);
1949 payload
= vmalloc(tlen
);
1950 if (payload
== NULL
) {
1951 IPSECSESSIONTRACEREVENT(iph1
->parent_session
,
1952 IPSECSESSIONEVENTCODE_IKEV1_INFO_NOTICE_TX_FAIL
,
1953 CONSTSTR("R-U-THERE? ACK"),
1954 CONSTSTR("Failed to transmit DPD response"));
1955 plog(LLV_ERROR
, LOCATION
, NULL
,
1956 "failed to get buffer to send.\n");
1960 ru_ack
= (struct isakmp_pl_ru
*)payload
->v
;
1961 ru_ack
->h
.np
= ISAKMP_NPTYPE_NONE
;
1962 ru_ack
->h
.len
= htons(tlen
);
1963 ru_ack
->doi
= htonl(IPSEC_DOI
);
1964 ru_ack
->type
= htons(ISAKMP_NTYPE_R_U_THERE_ACK
);
1965 ru_ack
->proto_id
= IPSECDOI_PROTO_ISAKMP
; /* XXX ? */
1966 ru_ack
->spi_size
= sizeof(isakmp_index
);
1967 memcpy(ru_ack
->i_ck
, ru
->i_ck
, sizeof(cookie_t
));
1968 memcpy(ru_ack
->r_ck
, ru
->r_ck
, sizeof(cookie_t
));
1969 ru_ack
->data
= ru
->data
;
1971 /* XXX Should we do FLAG_A ? */
1972 error
= isakmp_info_send_common(iph1
, payload
, ISAKMP_NPTYPE_N
,
1976 IPSECSESSIONTRACEREVENT(iph1
->parent_session
,
1977 IPSECSESSIONEVENTCODE_IKEV1_INFO_NOTICE_TX_FAIL
,
1978 CONSTSTR("R-U-THERE? ACK"),
1979 CONSTSTR("Failed to transmit DPD ack"));
1981 IPSECSESSIONTRACEREVENT(iph1
->parent_session
,
1982 IPSECSESSIONEVENTCODE_IKEV1_INFO_NOTICE_TX_SUCC
,
1983 CONSTSTR("R-U-THERE? ACK"),
1987 plog(LLV_DEBUG
, LOCATION
, NULL
, "received a valid R-U-THERE, ACK sent\n");
1989 /* Should we mark tunnel as active ? */
1994 isakmp_info_recv_r_u_ack (iph1
, ru
, msgid
)
1995 struct ph1handle
*iph1
;
1996 struct isakmp_pl_ru
*ru
;
2000 plog(LLV_DEBUG
, LOCATION
, iph1
->remote
,
2001 "DPD R-U-There-Ack received\n");
2003 /* XXX Maintain window of acceptable sequence numbers ?
2004 * => ru->data <= iph2->dpd_seq &&
2005 * ru->data >= iph2->dpd_seq - iph2->dpd_fails ? */
2006 if (ntohl(ru
->data
) != iph1
->dpd_seq
) {
2007 plog(LLV_ERROR
, LOCATION
, iph1
->remote
,
2008 "Wrong DPD sequence number (%d, %d expected).\n",
2009 ntohl(ru
->data
), iph1
->dpd_seq
);
2013 if (memcmp(ru
->i_ck
, iph1
->index
.i_ck
, sizeof(cookie_t
)) ||
2014 memcmp(ru
->r_ck
, iph1
->index
.r_ck
, sizeof(cookie_t
))) {
2015 plog(LLV_ERROR
, LOCATION
, iph1
->remote
,
2016 "Cookie mismatch in DPD ACK!.\n");
2020 iph1
->dpd_fails
= 0;
2025 iph1
->dpd_lastack
= time(NULL
);
2027 SCHED_KILL(iph1
->dpd_r_u
);
2029 isakmp_sched_r_u(iph1
, 0);
2031 if (iph1
->side
== INITIATOR
) {
2032 IPSECSESSIONTRACEREVENT(iph1
->parent_session
,
2033 IPSECSESSIONEVENTCODE_IKEV1_DPD_INIT_RESP
,
2034 CONSTSTR("Initiator DPD Response"),
2037 IPSECSESSIONTRACEREVENT(iph1
->parent_session
,
2038 IPSECSESSIONEVENTCODE_IKEV1_DPD_RESP_RESP
,
2039 CONSTSTR("Responder DPD Response"),
2042 plog(LLV_DEBUG
, LOCATION
, NULL
, "received an R-U-THERE-ACK\n");
2049 * send Delete payload (for ISAKMP SA) in Informational exchange.
2052 isakmp_info_send_r_u(arg
)
2055 struct ph1handle
*iph1
= arg
;
2057 /* create R-U-THERE payload */
2058 struct isakmp_pl_ru
*ru
;
2059 vchar_t
*payload
= NULL
;
2063 if (iph1
->status
!= PHASE1ST_ESTABLISHED
) {
2064 plog(LLV_DEBUG
, LOCATION
, iph1
->remote
, "DPD r-u send aborted, invalid phase1 status %d....\n",
2069 if (iph1
->dpd_fails
>= iph1
->rmconf
->dpd_maxfails
) {
2072 IPSECSESSIONTRACEREVENT(iph1
->parent_session
,
2073 IPSECSESSIONEVENTCODE_IKEV1_DPD_MAX_RETRANSMIT
,
2074 CONSTSTR("DPD maximum retransmits"),
2075 CONSTSTR("maxed-out of DPD requests without receiving an ack"));
2077 EVT_PUSH(iph1
->local
, iph1
->remote
, EVTT_DPD_TIMEOUT
, NULL
);
2078 if (iph1
->remote
->sa_family
== AF_INET
)
2079 address
= ((struct sockaddr_in
*)iph1
->remote
)->sin_addr
.s_addr
;
2082 (void)vpncontrol_notify_ike_failed(VPNCTL_NTYPE_PEER_DEAD
, FROM_LOCAL
, address
, 0, NULL
);
2085 plog(LLV_DEBUG
, LOCATION
, iph1
->remote
,
2086 "DPD: remote seems to be dead\n");
2088 /* Do not reschedule here: phase1 is deleted,
2089 * DPD will be reactivated when a new ph1 will be negociated
2095 payload
= vmalloc(tlen
);
2096 if (payload
== NULL
) {
2097 IPSECSESSIONTRACEREVENT(iph1
->parent_session
,
2098 IPSECSESSIONEVENTCODE_IKEV1_INFO_NOTICE_TX_FAIL
,
2099 CONSTSTR("R-U-THERE?"),
2100 CONSTSTR("Failed to transmit DPD request"));
2101 plog(LLV_ERROR
, LOCATION
, NULL
,
2102 "failed to get buffer for payload.\n");
2105 ru
= (struct isakmp_pl_ru
*)payload
->v
;
2106 ru
->h
.np
= ISAKMP_NPTYPE_NONE
;
2107 ru
->h
.len
= htons(tlen
);
2108 ru
->doi
= htonl(IPSEC_DOI
);
2109 ru
->type
= htons(ISAKMP_NTYPE_R_U_THERE
);
2110 ru
->proto_id
= IPSECDOI_PROTO_ISAKMP
; /* XXX ?*/
2111 ru
->spi_size
= sizeof(isakmp_index
);
2113 memcpy(ru
->i_ck
, iph1
->index
.i_ck
, sizeof(cookie_t
));
2114 memcpy(ru
->r_ck
, iph1
->index
.r_ck
, sizeof(cookie_t
));
2116 if (iph1
->dpd_seq
== 0){
2117 /* generate a random seq which is not too big */
2119 iph1
->dpd_seq
= rand() & 0x0fff;
2122 ru
->data
= htonl(iph1
->dpd_seq
);
2124 error
= isakmp_info_send_common(iph1
, payload
, ISAKMP_NPTYPE_N
, 0);
2127 IPSECSESSIONTRACEREVENT(iph1
->parent_session
,
2128 IPSECSESSIONEVENTCODE_IKEV1_INFO_NOTICE_TX_FAIL
,
2129 CONSTSTR("R-U-THERE?"),
2130 CONSTSTR("Failed to transmit DPD request"));
2132 IPSECSESSIONTRACEREVENT(iph1
->parent_session
,
2133 IPSECSESSIONEVENTCODE_IKEV1_INFO_NOTICE_TX_SUCC
,
2134 CONSTSTR("R-U-THERE?"),
2138 if (iph1
->side
== INITIATOR
) {
2139 IPSECSESSIONTRACEREVENT(iph1
->parent_session
,
2140 iph1
->dpd_fails
? IPSECSESSIONEVENTCODE_IKEV1_DPD_INIT_RETRANSMIT
: IPSECSESSIONEVENTCODE_IKEV1_DPD_INIT_REQ
,
2141 CONSTSTR("Initiator DPD Request"),
2144 IPSECSESSIONTRACEREVENT(iph1
->parent_session
,
2145 iph1
->dpd_fails
? IPSECSESSIONEVENTCODE_IKEV1_DPD_RESP_RETRANSMIT
: IPSECSESSIONEVENTCODE_IKEV1_DPD_RESP_REQ
,
2146 CONSTSTR("Responder DPD Request"),
2149 plog(LLV_DEBUG
, LOCATION
, iph1
->remote
,
2150 "DPD R-U-There sent (%d)\n", error
);
2152 /* will be decreased if ACK received... */
2155 /* Reschedule the r_u_there with a short delay,
2156 * will be deleted/rescheduled if ACK received before */
2157 isakmp_sched_r_u(iph1
, 1);
2159 plog(LLV_DEBUG
, LOCATION
, iph1
->remote
,
2160 "rescheduling send_r_u (%d).\n", iph1
->rmconf
->dpd_retry
);
2164 * monitor DPD (ALGORITHM_INBOUND_DETECT) Informational exchange.
2167 isakmp_info_monitor_r_u_algo_inbound_detect (struct ph1handle
*iph1
)
2169 if (iph1
->status
!= PHASE1ST_ESTABLISHED
) {
2170 plog(LLV_DEBUG
, LOCATION
, iph1
->remote
, "DPD monitoring (for ALGORITHM_INBOUND_DETECT) aborted, invalid phase1 status %d....\n",
2175 plog(LLV_DEBUG
, LOCATION
, iph1
->remote
, "DPD monitoring (for ALGORITHM_INBOUND_DETECT) ....\n");
2177 // check phase1 for ike packets received from peer
2178 if (iph1
->peer_sent_ike
) {
2179 // yes, reshedule check
2180 iph1
->peer_sent_ike
= 0;
2182 /* ike packets received from peer... reschedule dpd */
2183 isakmp_sched_r_u(iph1
, 0);
2185 plog(LLV_DEBUG
, LOCATION
, iph1
->remote
,
2186 "ike packets received from peer... reschedule monitor.\n");
2191 // after ike packets, next we check if any data was received
2192 if (!iph1
->parent_session
->peer_sent_data_sc_dpd
) {
2193 isakmp_info_send_r_u(iph1
);
2195 isakmp_sched_r_u(iph1
, 0);
2197 plog(LLV_DEBUG
, LOCATION
, iph1
->remote
,
2198 "rescheduling DPD monitoring (for ALGORITHM_INBOUND_DETECT).\n");
2200 iph1
->parent_session
->peer_sent_data_sc_dpd
= 0;
2204 * monitor DPD (ALGORITHM_INBOUND_DETECT) Informational exchange.
2207 isakmp_info_monitor_r_u_algo_blackhole_detect (struct ph1handle
*iph1
)
2209 if (iph1
->status
!= PHASE1ST_ESTABLISHED
) {
2210 plog(LLV_DEBUG
, LOCATION
, iph1
->remote
, "DPD monitoring (for ALGORITHM_BLACKHOLE_DETECT) aborted, invalid phase1 status %d....\n",
2215 plog(LLV_DEBUG
, LOCATION
, iph1
->remote
, "DPD monitoring (for ALGORITHM_BLACKHOLE_DETECT) ....\n");
2217 // check if data was sent but none was received
2218 if (iph1
->parent_session
->i_sent_data_sc_dpd
&&
2219 !iph1
->parent_session
->peer_sent_data_sc_dpd
) {
2220 isakmp_info_send_r_u(iph1
);
2222 isakmp_sched_r_u(iph1
, 0);
2224 plog(LLV_DEBUG
, LOCATION
, iph1
->remote
,
2225 "rescheduling DPD monitoring (for ALGORITHM_BLACKHOLE_DETECT) i = %d, peer %d.\n",
2226 iph1
->parent_session
->i_sent_data_sc_dpd
,
2227 iph1
->parent_session
->peer_sent_data_sc_dpd
);
2229 iph1
->parent_session
->i_sent_data_sc_dpd
= 0;
2230 iph1
->parent_session
->peer_sent_data_sc_dpd
= 0;
2234 * monitor DPD Informational exchange.
2237 isakmp_info_monitor_r_u(arg
)
2240 struct ph1handle
*iph1
= arg
;
2242 if (iph1
&& iph1
->rmconf
) {
2243 if (iph1
->rmconf
->dpd_algo
== DPD_ALGO_INBOUND_DETECT
) {
2244 isakmp_info_monitor_r_u_algo_inbound_detect(iph1
);
2245 } else if (iph1
->rmconf
->dpd_algo
== DPD_ALGO_BLACKHOLE_DETECT
) {
2246 isakmp_info_monitor_r_u_algo_blackhole_detect(iph1
);
2248 plog(LLV_DEBUG
, LOCATION
, iph1
->remote
, "DPD monitoring aborted, invalid algorithm %d....\n",
2249 iph1
->rmconf
->dpd_algo
);
2254 /* Schedule a new R-U-THERE */
2256 isakmp_sched_r_u(iph1
, retry
)
2257 struct ph1handle
*iph1
;
2261 iph1
->rmconf
== NULL
)
2265 if(iph1
->dpd_support
== 0 ||
2266 iph1
->rmconf
->dpd_interval
== 0)
2270 iph1
->dpd_r_u
= sched_new(iph1
->rmconf
->dpd_retry
,
2271 isakmp_info_send_r_u
, iph1
);
2273 if (iph1
->rmconf
->dpd_algo
== DPD_ALGO_INBOUND_DETECT
||
2274 iph1
->rmconf
->dpd_algo
== DPD_ALGO_BLACKHOLE_DETECT
) {
2275 iph1
->dpd_r_u
= sched_new(iph1
->rmconf
->dpd_interval
,
2276 isakmp_info_monitor_r_u
, iph1
);
2278 iph1
->dpd_r_u
= sched_new(iph1
->rmconf
->dpd_interval
,
2279 isakmp_info_send_r_u
, iph1
);
2287 * punts dpd for later because of some activity that:
2288 * 1) implicitly does dpd (e.g. phase2 exchanges), or
2289 * 2) indicates liveness (e.g. received ike packets).
2292 isakmp_reschedule_info_monitor_if_pending (struct ph1handle
*iph1
,
2296 iph1
->status
!= PHASE1ST_ESTABLISHED
||
2297 !iph1
->dpd_support
||
2298 !iph1
->rmconf
->dpd_interval
||
2299 iph1
->rmconf
->dpd_algo
== DPD_ALGO_DEFAULT
) {
2303 if (!iph1
->peer_sent_ike
) {
2304 SCHED_KILL(iph1
->dpd_r_u
);
2306 isakmp_sched_r_u(iph1
, 0);
2308 plog(LLV_DEBUG
, LOCATION
, iph1
->remote
,
2309 "%s... rescheduling send_r_u.\n",
2312 iph1
->peer_sent_ike
++;