strongswan/src/charon/encoding/payloads/notify_payload.c

442 lines
12 KiB
C
Raw Normal View History

2005-11-15 15:58:03 +00:00
/**
* @file notify_payload.c
*
2005-11-28 18:24:10 +00:00
* @brief Implementation of notify_payload_t.
2005-11-15 15:58:03 +00:00
*
*/
/*
* Copyright (C) 2005 Jan Hutter, Martin Willi
* Hochschule fuer Technik Rapperswil
*
* 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 <http://www.fsf.org/copyleft/gpl.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.
*/
2005-11-15 15:58:03 +00:00
#include <stddef.h>
#include "notify_payload.h"
#include <daemon.h>
2005-11-23 09:57:18 +00:00
#include <encoding/payloads/encodings.h>
2005-11-15 15:58:03 +00:00
/**
* String mappings for notify_message_type_t.
*/
mapping_t notify_message_type_m[] = {
{UNSUPPORTED_CRITICAL_PAYLOAD, "UNSUPPORTED_CRITICAL_PAYLOAD"},
{INVALID_IKE_SPI, "INVALID_IKE_SPI"},
{INVALID_MAJOR_VERSION, "INVALID_MAJOR_VERSION"},
{INVALID_SYNTAX, "INVALID_SYNTAX"},
{INVALID_MESSAGE_ID, "INVALID_MESSAGE_ID"},
{INVALID_SPI, "INVALID_SPI"},
{NO_PROPOSAL_CHOSEN, "NO_PROPOSAL_CHOSEN"},
{INVALID_KE_PAYLOAD, "INVALID_KE_PAYLOAD"},
{AUTHENTICATION_FAILED, "AUTHENTICATION_FAILED"},
{SINGLE_PAIR_REQUIRED, "SINGLE_PAIR_REQUIRED"},
{NO_ADDITIONAL_SAS, "NO_ADDITIONAL_SAS"},
{INTERNAL_ADDRESS_FAILURE, "INTERNAL_ADDRESS_FAILURE"},
{FAILED_CP_REQUIRED, "FAILED_CP_REQUIRED"},
{TS_UNACCEPTABLE, "TS_UNACCEPTABLE"},
{INVALID_SELECTORS, "INVALID_SELECTORS"},
{INITIAL_CONTACT, "INITIAL_CONTACT"},
{SET_WINDOW_SIZE, "SET_WINDOW_SIZE"},
{MAPPING_END, NULL}
};
2005-11-24 09:17:51 +00:00
typedef struct private_notify_payload_t private_notify_payload_t;
2005-11-15 15:58:03 +00:00
/**
2005-11-28 18:24:10 +00:00
* Private data of an notify_payload_t object.
2005-11-15 15:58:03 +00:00
*
*/
2005-11-24 09:17:51 +00:00
struct private_notify_payload_t {
2005-11-15 15:58:03 +00:00
/**
2005-11-28 18:24:10 +00:00
* Public notify_payload_t interface.
2005-11-15 15:58:03 +00:00
*/
notify_payload_t public;
/**
2005-11-28 18:24:10 +00:00
* Next payload type.
2005-11-15 15:58:03 +00:00
*/
u_int8_t next_payload;
/**
2005-11-28 18:24:10 +00:00
* Critical flag.
2005-11-15 15:58:03 +00:00
*/
bool critical;
/**
2005-11-28 18:24:10 +00:00
* Length of this payload.
2005-11-15 15:58:03 +00:00
*/
u_int16_t payload_length;
/**
2005-11-28 18:24:10 +00:00
* Protocol id.
2005-11-15 15:58:03 +00:00
*/
u_int8_t protocol_id;
/**
2005-11-28 18:24:10 +00:00
* Spi size.
2005-11-15 15:58:03 +00:00
*/
u_int8_t spi_size;
/**
2005-11-28 18:24:10 +00:00
* Notify message type.
2005-11-15 15:58:03 +00:00
*/
u_int16_t notify_message_type;
/**
2005-11-28 18:24:10 +00:00
* Security parameter index (spi).
2005-11-15 15:58:03 +00:00
*/
chunk_t spi;
/**
2005-11-28 18:24:10 +00:00
* Notification data.
2005-11-15 15:58:03 +00:00
*/
chunk_t notification_data;
/**
* Assigned logger
*/
logger_t *logger;
2005-11-15 15:58:03 +00:00
/**
* @brief Computes the length of this payload.
*
* @param this calling private_ke_payload_t object
*/
2005-11-28 18:24:10 +00:00
void (*compute_length) (private_notify_payload_t *this);
2005-11-15 15:58:03 +00:00
};
/**
2005-11-28 18:24:10 +00:00
* Encoding rules to parse or generate a IKEv2-Notify Payload.
2005-11-15 15:58:03 +00:00
*
* The defined offsets are the positions in a object of type
* private_notify_payload_t.
*
*/
encoding_rule_t notify_payload_encodings[] = {
/* 1 Byte next payload type, stored in the field next_payload */
{ U_INT_8, offsetof(private_notify_payload_t, next_payload) },
/* the critical bit */
{ FLAG, offsetof(private_notify_payload_t, critical) },
/* 7 Bit reserved bits, nowhere stored */
{ RESERVED_BIT, 0 },
{ RESERVED_BIT, 0 },
{ RESERVED_BIT, 0 },
{ RESERVED_BIT, 0 },
{ RESERVED_BIT, 0 },
{ RESERVED_BIT, 0 },
{ RESERVED_BIT, 0 },
/* Length of the whole payload*/
{ PAYLOAD_LENGTH, offsetof(private_notify_payload_t, payload_length) },
/* Protocol ID as 8 bit field*/
{ U_INT_8, offsetof(private_notify_payload_t, protocol_id) },
/* SPI Size as 8 bit field*/
{ SPI_SIZE, offsetof(private_notify_payload_t, spi_size) },
/* Notify message type as 16 bit field*/
{ U_INT_16, offsetof(private_notify_payload_t, notify_message_type) },
/* SPI as variable length field*/
{ SPI, offsetof(private_notify_payload_t, spi) },
/* Key Exchange Data is from variable size */
{ NOTIFICATION_DATA, offsetof(private_notify_payload_t, notification_data) }
};
/*
1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
! Next Payload !C! RESERVED ! Payload Length !
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
! Protocol ID ! SPI Size ! Notify Message Type !
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
! !
~ Security Parameter Index (SPI) ~
! !
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
! !
~ Notification Data ~
! !
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
*/
/**
2005-11-28 18:24:10 +00:00
* Implementation of payload_t.verify.
*/
static status_t verify(private_notify_payload_t *this)
{
if (this->protocol_id > 3)
{
/* reserved for future use */
return FAILED;
}
/* TODO: Check all kinds of notify */
if (this->notify_message_type == INVALID_KE_PAYLOAD)
{
/* check notification data */
diffie_hellman_group_t dh_group;
if (this->notification_data.len != 2)
{
return FAILED;
}
dh_group = ntohs(*((u_int16_t*)this->notification_data.ptr));
switch (dh_group)
{
case MODP_768_BIT:
case MODP_1024_BIT:
case MODP_1536_BIT:
case MODP_2048_BIT:
case MODP_3072_BIT:
case MODP_4096_BIT:
case MODP_6144_BIT:
case MODP_8192_BIT:
break;
default:
this->logger->log(this->logger, ERROR, "Bad DH group (%d)", dh_group);
return FAILED;
}
}
return SUCCESS;
}
2005-11-15 15:58:03 +00:00
/**
2005-11-28 18:24:10 +00:00
* Implementation of payload_t.get_encoding_rules.
2005-11-15 15:58:03 +00:00
*/
2005-11-28 18:24:10 +00:00
static void get_encoding_rules(private_notify_payload_t *this, encoding_rule_t **rules, size_t *rule_count)
2005-11-15 15:58:03 +00:00
{
*rules = notify_payload_encodings;
*rule_count = sizeof(notify_payload_encodings) / sizeof(encoding_rule_t);
}
/**
2005-11-28 18:24:10 +00:00
* Implementation of payload_t.get_type.
2005-11-15 15:58:03 +00:00
*/
static payload_type_t get_type(private_notify_payload_t *this)
{
return NOTIFY;
2005-11-15 15:58:03 +00:00
}
/**
2005-11-28 18:24:10 +00:00
* Implementation of payload_t.get_next_type.
2005-11-15 15:58:03 +00:00
*/
static payload_type_t get_next_type(private_notify_payload_t *this)
{
return (this->next_payload);
}
/**
2005-11-28 18:24:10 +00:00
* Implementation of payload_t.set_next_type.
2005-11-15 15:58:03 +00:00
*/
2005-11-28 18:24:10 +00:00
static void set_next_type(private_notify_payload_t *this,payload_type_t type)
2005-11-15 15:58:03 +00:00
{
this->next_payload = type;
}
/**
2005-11-28 18:24:10 +00:00
* Implementation of payload_t.get_length.
2005-11-15 15:58:03 +00:00
*/
static size_t get_length(private_notify_payload_t *this)
{
this->compute_length(this);
return this->payload_length;
}
/**
2005-11-28 18:24:10 +00:00
* Implementation of private_notify_payload_t.compute_length.
2005-11-15 15:58:03 +00:00
*/
2005-11-28 18:24:10 +00:00
static void compute_length (private_notify_payload_t *this)
2005-11-15 15:58:03 +00:00
{
size_t length = NOTIFY_PAYLOAD_HEADER_LENGTH;
if (this->notification_data.ptr != NULL)
{
length += this->notification_data.len;
}
if (this->spi.ptr != NULL)
{
length += this->spi.len;
}
this->payload_length = length;
2005-11-28 18:24:10 +00:00
}
2005-11-15 15:58:03 +00:00
/**
2005-11-28 18:24:10 +00:00
* Implementation of notify_payload_t.get_protocol_id.
2005-11-15 15:58:03 +00:00
*/
2005-11-28 18:24:10 +00:00
static u_int8_t get_protocol_id(private_notify_payload_t *this)
2005-11-15 15:58:03 +00:00
{
return this->protocol_id;
}
/**
2005-11-28 18:24:10 +00:00
* Implementation of notify_payload_t.set_protocol_id.
2005-11-15 15:58:03 +00:00
*/
2005-11-28 18:24:10 +00:00
static void set_protocol_id(private_notify_payload_t *this, u_int8_t protocol_id)
2005-11-15 15:58:03 +00:00
{
this->protocol_id = protocol_id;
}
/**
2005-11-28 18:24:10 +00:00
* Implementation of notify_payload_t.get_notify_message_type.
2005-11-15 15:58:03 +00:00
*/
2005-11-28 18:24:10 +00:00
static u_int16_t get_notify_message_type(private_notify_payload_t *this)
2005-11-15 15:58:03 +00:00
{
return this->notify_message_type;
}
/**
2005-11-28 18:24:10 +00:00
* Implementation of notify_payload_t.set_notify_message_type.
2005-11-15 15:58:03 +00:00
*/
2005-11-28 18:24:10 +00:00
static void set_notify_message_type(private_notify_payload_t *this, u_int16_t notify_message_type)
2005-11-15 15:58:03 +00:00
{
this->notify_message_type = notify_message_type;
}
/**
2005-11-28 18:24:10 +00:00
* Implementation of notify_payload_t.get_spi.
2005-11-15 15:58:03 +00:00
*/
2005-11-28 18:24:10 +00:00
static chunk_t get_spi(private_notify_payload_t *this)
2005-11-15 15:58:03 +00:00
{
return (this->spi);
}
/**
2005-11-28 18:24:10 +00:00
* Implementation of notify_payload_t.set_spi.
2005-11-15 15:58:03 +00:00
*/
2005-11-28 18:24:10 +00:00
static void set_spi(private_notify_payload_t *this, chunk_t spi)
2005-11-15 15:58:03 +00:00
{
/* destroy existing data first */
if (this->spi.ptr != NULL)
{
/* free existing value */
free(this->spi.ptr);
2005-11-15 15:58:03 +00:00
this->spi.ptr = NULL;
this->spi.len = 0;
}
this->spi.ptr = clalloc(spi.ptr,spi.len);
2005-11-28 18:24:10 +00:00
2005-11-15 15:58:03 +00:00
this->spi.len = spi.len;
this->spi_size = spi.len;
this->compute_length(this);
2005-11-28 18:24:10 +00:00
}
2005-11-15 15:58:03 +00:00
/**
2005-11-28 18:24:10 +00:00
* Implementation of notify_payload_t.get_notification_data.
2005-11-15 15:58:03 +00:00
*/
2005-11-28 18:24:10 +00:00
static chunk_t get_notification_data(private_notify_payload_t *this)
2005-11-15 15:58:03 +00:00
{
return (this->notification_data);
}
/**
2005-11-28 18:24:10 +00:00
* Implementation of notify_payload_t.set_notification_data.
2005-11-15 15:58:03 +00:00
*/
2005-11-28 18:24:10 +00:00
static status_t set_notification_data(private_notify_payload_t *this, chunk_t notification_data)
2005-11-15 15:58:03 +00:00
{
/* destroy existing data first */
if (this->notification_data.ptr != NULL)
{
/* free existing value */
free(this->notification_data.ptr);
2005-11-15 15:58:03 +00:00
this->notification_data.ptr = NULL;
this->notification_data.len = 0;
}
this->notification_data.ptr = clalloc(notification_data.ptr,notification_data.len);
2005-11-15 15:58:03 +00:00
this->notification_data.len = notification_data.len;
this->compute_length(this);
return SUCCESS;
}
2005-11-22 11:54:58 +00:00
/**
2005-11-28 18:24:10 +00:00
* Implementation of notify_payload_t.destroy and notify_payload_t.destroy.
2005-11-22 11:54:58 +00:00
*/
static status_t destroy(private_notify_payload_t *this)
{
if (this->notification_data.ptr != NULL)
{
free(this->notification_data.ptr);
2005-11-22 11:54:58 +00:00
}
if (this->spi.ptr != NULL)
{
free(this->spi.ptr);
2005-11-22 11:54:58 +00:00
}
free(this);
2005-11-22 11:54:58 +00:00
return SUCCESS;
}
2005-11-15 15:58:03 +00:00
/*
* Described in header
*/
notify_payload_t *notify_payload_create()
{
private_notify_payload_t *this = malloc_thing(private_notify_payload_t);
2005-11-28 18:24:10 +00:00
2005-11-15 15:58:03 +00:00
/* interface functions */
this->public.payload_interface.verify = (status_t (*) (payload_t *))verify;
2005-11-28 18:24:10 +00:00
this->public.payload_interface.get_encoding_rules = (void (*) (payload_t *, encoding_rule_t **, size_t *) ) get_encoding_rules;
2005-11-15 15:58:03 +00:00
this->public.payload_interface.get_length = (size_t (*) (payload_t *)) get_length;
this->public.payload_interface.get_next_type = (payload_type_t (*) (payload_t *)) get_next_type;
2005-11-28 18:24:10 +00:00
this->public.payload_interface.set_next_type = (void (*) (payload_t *,payload_type_t)) set_next_type;
2005-11-15 15:58:03 +00:00
this->public.payload_interface.get_type = (payload_type_t (*) (payload_t *)) get_type;
2005-11-28 18:24:10 +00:00
this->public.payload_interface.destroy = (void (*) (payload_t *))destroy;
2005-11-15 15:58:03 +00:00
/* public functions */
this->public.get_protocol_id = (u_int8_t (*) (notify_payload_t *)) get_protocol_id;
2005-11-28 18:24:10 +00:00
this->public.set_protocol_id = (void (*) (notify_payload_t *,u_int8_t)) set_protocol_id;
2005-11-15 15:58:03 +00:00
this->public.get_notify_message_type = (u_int16_t (*) (notify_payload_t *)) get_notify_message_type;
2005-11-28 18:24:10 +00:00
this->public.set_notify_message_type = (void (*) (notify_payload_t *,u_int16_t)) set_notify_message_type;
2005-11-15 15:58:03 +00:00
this->public.get_spi = (chunk_t (*) (notify_payload_t *)) get_spi;
2005-11-28 18:24:10 +00:00
this->public.set_spi = (void (*) (notify_payload_t *,chunk_t)) set_spi;
2005-11-15 15:58:03 +00:00
this->public.get_notification_data = (chunk_t (*) (notify_payload_t *)) get_notification_data;
2005-11-28 18:24:10 +00:00
this->public.set_notification_data = (void (*) (notify_payload_t *,chunk_t)) set_notification_data;
this->public.destroy = (void (*) (notify_payload_t *)) destroy;
2005-11-15 15:58:03 +00:00
/* private functions */
this->compute_length = compute_length;
/* set default values of the fields */
this->critical = FALSE;
2005-11-15 15:58:03 +00:00
this->next_payload = NO_PAYLOAD;
this->payload_length = NOTIFY_PAYLOAD_HEADER_LENGTH;
this->protocol_id = 0;
this->notify_message_type = 0;
this->spi.ptr = NULL;
this->spi.len = 0;
this->spi_size = 0;
2005-11-15 15:58:03 +00:00
this->notification_data.ptr = NULL;
this->notification_data.len = 0;
this->logger = logger_manager->get_logger(logger_manager, PAYLOAD);
2005-11-15 15:58:03 +00:00
return (&(this->public));
}
/*
* Described in header.
*/
notify_payload_t *notify_payload_create_from_protocol_and_type(protocol_id_t protocol_id, notify_message_type_t notify_message_type)
{
notify_payload_t *notify = notify_payload_create();
notify->set_notify_message_type(notify,notify_message_type);
notify->set_protocol_id(notify,protocol_id);
return notify;
}