diff --git a/src/cw/cipwap_actions_ac.c b/src/cw/cipwap_actions_ac.c deleted file mode 100644 index 37fe372c..00000000 --- a/src/cw/cipwap_actions_ac.c +++ /dev/null @@ -1,190 +0,0 @@ - -#include "capwap.h" -#include "capwap_cisco.h" -#include "capwap_actions.h" -#include "cipwap.h" - -/** - *@file - *brief CIPWAP Actions - */ - -#define CW_ACTION_IN_CISCO_IMAGE_IDENTIFIER \ - CW_ELEM_IMAGE_IDENTIFIER, /* Element ID*/ \ - cw_in_cisco_image_identifier, 0, /* start/end callback */ \ - MBAG_VENDORSTR, /* Type of element */ \ - CW_ITEM_IMAGE_IDENTIFIER, /* ID to use store */ \ - 1, 4096 /* min/max length */ - -#define CW_ACTION_IN_CIPWAP_WTP_DESCRIPTOR \ - CW_ELEM_WTP_DESCRIPTOR, /* Element ID */ \ - cw_in_cipwap_wtp_descriptor, 0, /* start/end callback */ \ - 0, \ - CW_ITEM_WTP_DESCRIPTOR, \ - 8,1028 - -/* For CIPWAP we allow a - Session ID with 2 ... 16 bytes length */ -#define CW_ACTION_IN_CIPWAP_SESSION_ID \ - CW_ELEM_SESSION_ID, /* Element ID*/ \ - cw_in_generic, 0, /* start/end callback */ \ - MBAG_BSTR, /* Type of element */ \ - CW_ITEM_SESSION_ID, /* ID to use store */ \ - 2, 16 /* min/max length */ - -#define CW_ACTION_IN_CIPWAP_AC_NAME \ - CW_ELEM_AC_NAME, /* Element ID*/ \ - cw_in_generic, 0, /* start/end callback */ \ - MBAG_STR, /* Type of element */ \ - CW_ITEM_AC_NAME, /* ID to use store */ \ - 0, 512 /* min/max length */ - - - - -cw_action_in_t cipwap_actions_ac_in[] = { - - /* ------------------------------------------------------------------------------- - * Discovery Request IN - */ - - {CW_VENDOR_ID_CISCO, 0, CW_STATE_DISCOVERY, CW_MSG_DISCOVERY_REQUEST, CW_CISCO_RAD_NAME, - cw_in_generic, 0, MBAG_STR,CW_ITEM_WTP_NAME,1,512} - , - - {CW_VENDOR_ID_CISCO, 0, CW_STATE_JOIN, CW_MSG_JOIN_REQUEST, CW_CISCO_AP_GROUP_NAME, - cw_in_generic, 0, MBAG_STR,CW_ITEM_WTP_GROUP_NAME,1,512} - , - - {0, 0, CW_STATE_DISCOVERY, CW_MSG_DISCOVERY_REQUEST, - CW_ACTION_IN_CIPWAP_WTP_DESCRIPTOR, - 1} - , - - /* ------------------------------------------------------------------------------- - * Join Request IN - */ - {0, 0, CW_STATE_JOIN, CW_MSG_JOIN_REQUEST, 0, - 0, cw_in_check_cipwap_join_req} - , - - {0, 0, CW_STATE_JOIN, CW_MSG_JOIN_REQUEST, - CW_ACTION_IN_CIPWAP_WTP_DESCRIPTOR, 1} - , - {0, 0, CW_STATE_JOIN, CW_MSG_JOIN_REQUEST, - CW_ACTION_IN_CIPWAP_SESSION_ID, 1} - , - - - - - - - - /* ------------------------------------------------------------------------------- - * Image Data Request - Conig State - */ - - {0, 0, CW_STATE_CONFIGURE, CW_MSG_IMAGE_DATA_REQUEST, - CW_ACTION_IN_CISCO_IMAGE_IDENTIFIER, - 0} - , - - - /* Element: Result Code - not mandatory in CIPWAP, while mandatory in CAPWAP - */ - {0, 0, CW_STATE_IMAGE_DATA, CW_MSG_IMAGE_DATA_RESPONSE, - CW_ACTION_IN_RESULT_CODE, 0} - - , - - /* ------------------------------------------------------------------------------- */ - - /* Message: Configuration Status Request */ - - /* Element: AC Name */ - {0, 0, CW_STATE_CONFIGURE, CW_MSG_CONFIGURATION_STATUS_REQUEST, - CW_ACTION_IN_CIPWAP_AC_NAME, 1} - , - - /* AP Mode and Type */ - {CW_VENDOR_ID_CISCO, 0, CW_STATE_CONFIGURE, CW_MSG_CONFIGURATION_STATUS_REQUEST, CW_CISCO_AP_MODE_AND_TYPE, - cw_in_generic, 0, MBAG_WORD,CW_ITEM_AP_MODE_AND_TYPE,2,2} - , - - - - - {0,0,0} -}; - -extern struct cw_item *cw_get_local(struct conn *conn, struct cw_action_out *a); - -cw_action_out_t cipwap_actions_ac_out[] = { - - /* ------------------------------------------------------------------------------- - * Discovery Response OUT - */ - - /* AC Descriptor (Cisco) */ - {CW_MSG_DISCOVERY_RESPONSE, CW_ITEM_AC_DESCRIPTOR, 0 , - CW_ELEM_AC_DESCRIPTOR, NULL,cw_out_cisco_ac_descriptor, 0} - , - - /* Cisco AP Timesync - Important to get the WTP a DTLS - connection established*/ - {CW_MSG_DISCOVERY_RESPONSE, CW_ITEM_AC_TIMESTAMP, CW_VENDOR_ID_CISCO, - CW_CISCO_AP_TIMESYNC, NULL,cw_out_cisco_ap_timesync, 0} - , - - /* ------------------------------------------------------------------------------- - * Join Response OUT - */ - - /* AC Descriptor (Cisco) */ - {CW_MSG_JOIN_RESPONSE, CW_ITEM_AC_DESCRIPTOR, 0 , - CW_ELEM_AC_DESCRIPTOR, NULL,cw_out_cisco_ac_descriptor, 0} - , - - - /* ------------------------------------------------------------------------------- - * Echo Response OUT - */ - - {CW_MSG_ECHO_RESPONSE, CW_ITEM_AC_TIMESTAMP, CW_VENDOR_ID_CISCO, - CW_CISCO_AP_TIMESYNC, NULL,cw_out_cisco_ap_timesync, 0} - , - - - /* -------------------------------------------------------------------------------- - * Configuration Update Request - */ - {CW_MSG_CONFIGURATION_UPDATE_REQUEST, CW_ITEM_WTP_NAME, CW_VENDOR_ID_CISCO, - CW_CISCO_RAD_NAME, NULL,cw_out_generic, cw_out_get_outgoing,0} - , - - {CW_MSG_CONFIGURATION_UPDATE_REQUEST, CW_ITEM_AP_MODE_AND_TYPE, CW_VENDOR_ID_CISCO, - CW_CISCO_AP_MODE_AND_TYPE, NULL,cw_out_generic, cw_out_get_outgoing,0} - , - - - - {0,0,0} - -}; - -/** - * Register CiPWAP actions - */ -int cw_register_actions_cipwap_ac(struct cw_actiondef *def) -{ - int rc; - rc=cw_register_actions_capwap_ac(def); - - rc+=cw_actionlist_in_register_actions(def->in, cipwap_actions_ac_in); - rc+=cw_actionlist_out_register_actions(def->out, cipwap_actions_ac_out); - rc+=cw_strheap_register_strings(def->strelem,cipwap_strings_elem); - return rc; -} - diff --git a/src/cw/cipwap_actions_wtp.c b/src/cw/cipwap_actions_wtp.c deleted file mode 100644 index aba33d4d..00000000 --- a/src/cw/cipwap_actions_wtp.c +++ /dev/null @@ -1,169 +0,0 @@ -/* - This file is part of libcipwap. - - libcipwap 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 3 of the License, or - (at your option) any later version. - - libcipwap 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. - - You should have received a copy of the GNU General Public License - along with Foobar. If not, see . - -*/ - - -#include "cipwap.h" -#include "action.h" -#include "capwap_items.h" -#include "capwap_actions.h" -#include "capwap_cisco.h" -#include "strheap.h" - -#include "cipwap_actions.h" - -cw_action_in_t cipwap_actions_wtp_in[] = { - - - - /* ------------------------------------------------------------------------------- - * Configuration Update Request IN - */ - - {CW_VENDOR_ID_CISCO, 0, CW_STATE_RUN, CW_MSG_CONFIGURATION_UPDATE_REQUEST, CW_CISCO_RAD_NAME, - cw_in_generic, 0, MBAG_BSTR16,CW_ITEM_WTP_NAME,0,512} - , - {CW_VENDOR_ID_CISCO, 0, CW_STATE_RUN, CW_MSG_CONFIGURATION_UPDATE_REQUEST, CW_CISCO_LOCATION_DATA, - cw_in_generic, 0, MBAG_BSTR16,CW_ITEM_LOCATION_DATA,0,512} - , - - {CW_VENDOR_ID_CISCO, 0, CW_STATE_RUN, CW_MSG_CONFIGURATION_UPDATE_REQUEST, CW_CISCO_AC_NAME_WITH_INDEX, - cw_in_ac_name_with_priority, 0, MBAG_BSTR16,CW_ITEM_AC_NAME_WITH_PRIORITY,0,512} - , - - /* AP Mode an Type IN */ -/* {CW_VENDOR_ID_CISCO, 0, CW_STATE_RUN, CW_MSG_CONFIGURATION_UPDATE_REQUEST, - CW_ACTION_IN_CISCO_AP_MODE_AND_TYPE, - 1} - , -*/ - /* Radio Administrative State */ - /* Overload CAPWAP action to handle a radio ID of 255 */ - {0, 0, CW_STATE_RUN, CW_MSG_CONFIGURATION_UPDATE_REQUEST, - CW_ACTION_IN_CISCO_RADIO_ADMINISTRATIVE_STATE_WTP, 0} - , - - - /* Add WLAN */ - {CW_VENDOR_ID_CISCO, 0, CW_STATE_RUN, CW_MSG_CONFIGURATION_UPDATE_REQUEST, - CW_ACTION_IN_CISCO_ADD_WLAN, 0} - , - - - - {CW_VENDOR_ID_CISCO, 0, CW_STATE_JOIN, CW_MSG_JOIN_REQUEST, CW_CISCO_AP_GROUP_NAME, - cw_in_generic, 0, MBAG_BSTR16,CW_ITEM_WTP_GROUP_NAME,1,512} - , - - - - /* ------------------------------------------------------------------------------- - * Configuration Status Response IN - */ - {0, 0, CW_STATE_CONFIGURE, CW_MSG_CONFIGURATION_STATUS_RESPONSE, - CW_ACTION_IN_RADIO_ADMINISTRATIVE_STATE_WTP, 0} - , - - {CW_VENDOR_ID_CISCO, 0, CW_STATE_CONFIGURE, CW_MSG_CONFIGURATION_STATUS_RESPONSE, - CW_ACTION_IN_CISCO_RADIO_CFG, 0} - , - - - - {0, 0, 0} -}; - - - - -cw_action_out_t cipwap_actions_wtp_out[] = { - - /* ------------------------------------------------------------------------------- - * Discovery Request OUT - */ - - /* Cisco AP Groupname - Important to get the WTP a DTLS - connection established*/ - {CW_MSG_DISCOVERY_REQUEST, CW_ITEM_WTP_GROUP_NAME, CW_VENDOR_ID_CISCO, - CW_CISCO_AP_GROUP_NAME, NULL,cw_out_generic, cw_out_get_config, 0} - , - - /* ------------------------------------------------------------------------------- - * Join Request OUT - */ - - {CW_MSG_JOIN_REQUEST, CW_ITEM_CISCO_BOARD_DATA_OPTIONS, CW_VENDOR_ID_CISCO, - CW_CISCO_BOARD_DATA_OPTIONS, NULL,cw_out_generic, cw_out_get_config, 1} - , - - - /* ------------------------------------------------------------------------------- - * Configuration Status Request OUT - */ - - - /* Cisco AP Groupname - Important to get the WTP a DTLS - connection established*/ - {CW_MSG_CONFIGURATION_STATUS_REQUEST, CW_ITEM_RADIO_CFG, CW_VENDOR_ID_CISCO, - CW_CISCO_AP_GROUP_NAME, NULL,cw_out_cisco_wtp_radio_cfg, cw_out_get_config, 1} - , - - {CW_MSG_CONFIGURATION_STATUS_REQUEST, CW_ITEM_AP_MODE_AND_TYPE, CW_VENDOR_ID_CISCO, - CW_CISCO_AP_MODE_AND_TYPE, NULL,cw_out_generic, cw_out_get_config, 1} - , - - - - - -// {CW_MSG_DISCOVERY_REQUEST, CW_ITEM_NONE} -// , - - /* AC Name */ -// {CW_MSG_DISCOVERY_REQUEST, CW_ITEM_DISCOVERY_TYPE, 0, -// CW_ELEM_DISCOVERY_TYPE, NULL,cw_out_generic, cw_out_get_outgoing} - - - /* ------------------------------------------------------------------------------- - * Configuration Status Request OUT - */ -// {CW_MSG_CONFIGURATION_STATUS_REQUEST, CW_ITEM_NONE} -// , - - - {0, 0} - -}; - - - - - -int cw_register_actions_cipwap_wtp(struct cw_actiondef *def) -{ - int rc; - rc=cw_register_actions_capwap_wtp(def); - - - rc+=cw_actionlist_in_register_actions(def->in, cipwap_actions_wtp_in); - rc+=cw_actionlist_out_register_actions(def->out, cipwap_actions_wtp_out); - - - rc += cw_strheap_register_strings(def->strelem, cipwap_strings_elem); - - return rc; -}