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
|
/* IKEv2 CHILD SA routines, for libreswan
*
* Copyright (C) 2021 Andrew cagney
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. See <https://www.gnu.org/licenses/gpl2.txt>.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*/
#ifndef IKEV2_CHILD_H
#define IKEV2_CHILD_H
struct child_sa;
struct msg_digest;
struct ike_sa;
struct pbs_out;
/*
* Result of processing the Child SA's SA payloads. Don't use
* STF_STATUS as it is too poorly defined. Caller needs to check
* returned v2_notification_t to see if it is fatal and/or return a
* notify and/or initiate a delete. See RFC.
*/
v2_notification_t process_childs_v2SA_payload(const char *what, struct ike_sa *ike,
struct child_sa *larval_child,
struct msg_digest *md,
const struct ikev2_proposals *child_proposals,
bool expect_accepted_proposal);
/*
* Work the initiator and responder Child SAs through to being
* established.
*
* XXX: some, but not all the code lies here - there's still random
* snippets scattered across IKE_AUTH and CREATE_CHILD_SA, sigh.
*/
bool prep_v2_child_for_request(struct child_sa *larval_child);
bool emit_v2_child_request_payloads(const struct ike_sa *ike,
const struct child_sa *larval_child,
const struct ikev2_proposals *child_proposals,
bool ike_auth_exchange,
struct pbs_out *outpbs);
v2_notification_t process_v2_child_request_payloads(struct ike_sa *ike,
struct child_sa *larval_child,
struct msg_digest *request_md,
struct pbs_out *sk_pbs);
v2_notification_t process_v2_child_response_payloads(struct ike_sa *ike,
struct child_sa *larval_child,
struct msg_digest *response_md);
void v2_child_sa_established(struct ike_sa *ike, struct child_sa *child);
v2_notification_t process_v2_IKE_AUTH_response_child_payloads(struct ike_sa *ike,
struct msg_digest *md);
bool process_any_v2_IKE_AUTH_request_child_payloads(struct ike_sa *ike,
struct msg_digest *md,
struct pbs_out *sk_pbs);
/*
* Macro as that handles const CHILD.
*/
#define ikev2_child_sa_proto_info(CHILD) \
({ \
/* evaluate once */ \
typeof(CHILD) child_ = (CHILD); \
enum encap_proto encap_proto = \
child_->sa.st_connection->config->child_sa.encap_proto; \
/* handle const CHILD */ \
(encap_proto == ENCAP_PROTO_ESP ? &child_->sa.st_esp : \
encap_proto == ENCAP_PROTO_AH ? &child_->sa.st_ah : \
NULL); \
})
void llog_v2_child_sa_established(struct ike_sa *ike, struct child_sa *child);
void set_larval_v2_transition(struct child_sa *larval, const struct finite_state *to,
where_t where);
#endif
|