3dbca93a88
FossilOrigin-Name: f5d524e032376c67bfe637ce08b701e55e4be62ac7ee960b0daacda910cf1d2f
318 lines
6.9 KiB
C
318 lines
6.9 KiB
C
/*
|
|
This file is part of libcapwap.
|
|
|
|
libcapwap 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.
|
|
|
|
libcapwap 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
#include "cw/cipwap.h"
|
|
|
|
#include "cw/action.h"
|
|
#include "cw/capwap_items.h"
|
|
#include "cw/strheap.h"
|
|
#include "cw/radio.h"
|
|
#include "cw/capwap_cisco.h"
|
|
#include "cw/capwap80211.h"
|
|
|
|
#include "mod_fortinet.h"
|
|
|
|
#include "fortinet.h"
|
|
|
|
|
|
static cw_action_in_t actions_in[] = {
|
|
|
|
/* ----------------------------------------------------------------
|
|
* Discovery Response
|
|
*/
|
|
|
|
#if 0
|
|
/* AC Descriptor - Discovery Response */
|
|
{
|
|
.capwap_state = CW_STATE_DISCOVERY,
|
|
.msg_id = CW_MSG_DISCOVERY_RESPONSE,
|
|
.elem_id = CW_ELEM_AC_DESCRIPTOR,
|
|
.item_id = CW_ITEM_AC_DESCRIPTOR,
|
|
.start = cisco_in_ac_descriptor,
|
|
.min_len = 12,
|
|
.max_len = 8192,
|
|
.mand = 1
|
|
}
|
|
,
|
|
|
|
|
|
/* ----------------------------------------------------------------
|
|
* Join Response
|
|
*/
|
|
|
|
|
|
/* ECN Support - Join Response */
|
|
{
|
|
/* Make ECN Support non-mand */
|
|
.capwap_state = CAPWAP_STATE_JOIN,
|
|
.msg_id = CW_MSG_JOIN_RESPONSE,
|
|
.elem_id = CAPWAP_ELEM_ECN_SUPPORT,
|
|
.item_id = CW_ITEM_ECN_SUPPORT,
|
|
.start = cw_in_generic2,
|
|
.mand = 0,
|
|
.min_len = 1,
|
|
.max_len = 1
|
|
}
|
|
,
|
|
|
|
/* AC Descriptor - Join Response */
|
|
{
|
|
/* Cisco's AC Descriptor */
|
|
.capwap_state = CAPWAP_STATE_JOIN,
|
|
.msg_id = CW_MSG_JOIN_RESPONSE,
|
|
.elem_id = CW_ELEM_AC_DESCRIPTOR,
|
|
.item_id = CW_ITEM_AC_DESCRIPTOR,
|
|
.start = cisco_in_ac_descriptor,
|
|
.min_len = 12,
|
|
.max_len = 8192,
|
|
.mand = 1
|
|
}
|
|
,
|
|
|
|
|
|
/* ----------------------------------------------------------------
|
|
* Configuration Update Request
|
|
*/
|
|
|
|
/* Location Data - Conf Update Req */
|
|
{
|
|
.capwap_state = CW_STATE_RUN,
|
|
.vendor_id = CW_VENDOR_ID_CISCO,
|
|
.msg_id = CAPWAP_MSG_CONFIGURATION_UPDATE_REQUEST,
|
|
.elem_id = LW_ELEM_LOCATION_DATA,
|
|
.item_id = CW_ITEM_LOCATION_DATA,
|
|
.start = cw_in_generic2,
|
|
.min_len = 0,
|
|
.max_len = 1024,
|
|
.mand = 0
|
|
}
|
|
,
|
|
|
|
/* WTP Name - Conf Update Req */
|
|
{
|
|
.capwap_state = CW_STATE_RUN,
|
|
.vendor_id = CW_VENDOR_ID_CISCO,
|
|
.msg_id = CAPWAP_MSG_CONFIGURATION_UPDATE_REQUEST,
|
|
.elem_id = CISCO_ELEM_RAD_NAME,
|
|
.item_id = CW_ITEM_WTP_NAME,
|
|
.start = cw_in_generic2,
|
|
.min_len = 0,
|
|
.max_len = 1024,
|
|
.mand = 0
|
|
}
|
|
,
|
|
|
|
/* Radio Admin State - Config Status Request */
|
|
{
|
|
.capwap_state = CW_STATE_RUN,
|
|
.msg_id = CAPWAP_MSG_CONFIGURATION_UPDATE_REQUEST,
|
|
.elem_id = CAPWAP_ELEM_RADIO_ADMINISTRATIVE_STATE,
|
|
.item_id = CW_ITEM_RADIO_ADMINISTRATIVE_STATE,
|
|
.start = cisco_in_radio_administrative_state_wtp,
|
|
.mand = 1
|
|
}
|
|
,
|
|
|
|
|
|
#endif
|
|
/* End of list */
|
|
{0, 0}
|
|
};
|
|
|
|
|
|
static cw_action_out_t actions_out[]={
|
|
|
|
/* ----------------------------------------------------------------
|
|
* Message Discover Request
|
|
*/
|
|
|
|
#if 0
|
|
/* WTP Descriptor - Discovery */
|
|
{
|
|
.msg_id = CW_MSG_DISCOVERY_REQUEST,
|
|
.elem_id = CW_ELEM_WTP_DESCRIPTOR,
|
|
.item_id = CW_ITEM_WTP_DESCRIPTOR,
|
|
.out = cisco_out_wtp_descriptor,
|
|
.mand = 1
|
|
}
|
|
|
|
,
|
|
|
|
/* Cisco RAD Name (WTP Name) - Discovery */
|
|
{
|
|
.msg_id = CW_MSG_DISCOVERY_REQUEST,
|
|
.vendor_id = CW_VENDOR_ID_CISCO,
|
|
.elem_id = CISCO_ELEM_RAD_NAME,
|
|
.item_id = CW_ITEM_WTP_NAME,
|
|
.out = cw_out_generic,
|
|
.get = cw_out_get_config,
|
|
.mand = 1
|
|
}
|
|
,
|
|
|
|
|
|
/* ----------------------------------------------------------------
|
|
* Message Join Rquest
|
|
*/
|
|
|
|
/* CAPWAP Local IP Address - Join Request */
|
|
{
|
|
/* use draft 7 elem ids */
|
|
.msg_id = CW_MSG_JOIN_REQUEST,
|
|
.item_id = CW_ITEM_CAPWAP_LOCAL_IP_ADDRESS,
|
|
.out = cw_out_capwap_local_ip_address_7,
|
|
.mand = 1
|
|
}
|
|
,
|
|
|
|
/* WTP Descriptor - Join Request */
|
|
{
|
|
.msg_id = CW_MSG_JOIN_REQUEST,
|
|
.elem_id = CW_ELEM_WTP_DESCRIPTOR,
|
|
.item_id = CW_ITEM_WTP_DESCRIPTOR,
|
|
.out = cisco_out_wtp_descriptor,
|
|
.mand = 1
|
|
}
|
|
,
|
|
|
|
/* WTP Group Name (WTP Name) - Join Request */
|
|
{
|
|
.msg_id = CW_MSG_JOIN_REQUEST,
|
|
.vendor_id = CW_VENDOR_ID_CISCO,
|
|
.elem_id = CISCO_ELEM_AP_GROUP_NAME,
|
|
.item_id = CW_ITEM_WTP_GROUP_NAME,
|
|
.out = cw_out_generic,
|
|
.get = cw_out_get_config,
|
|
.mand = 1
|
|
}
|
|
,
|
|
|
|
/* WTP Board Data Options - Join Request */
|
|
{
|
|
.msg_id = CW_MSG_JOIN_REQUEST,
|
|
.vendor_id = CW_VENDOR_ID_CISCO,
|
|
.elem_id = CW_CISCO_BOARD_DATA_OPTIONS,
|
|
.item_id = CW_ITEM_CISCO_BOARD_DATA_OPTIONS,
|
|
.out = cisco_out_board_data_options,
|
|
.get = cw_out_get_config,
|
|
.mand = 1
|
|
}
|
|
,
|
|
|
|
|
|
|
|
/* ECN Support - Join Request */
|
|
{
|
|
/* Cisco doesn't know ECN support, so we
|
|
define no output method */
|
|
.msg_id = CW_MSG_JOIN_REQUEST,
|
|
.elem_id = CAPWAP_ELEM_ECN_SUPPORT,
|
|
.item_id = CW_ITEM_ECN_SUPPORT,
|
|
.mand = 0
|
|
}
|
|
,
|
|
|
|
|
|
/* ----------------------------------------------------------------
|
|
* Configuration Status Request
|
|
*/
|
|
{
|
|
.vendor_id = CW_VENDOR_ID_CISCO,
|
|
.msg_id = CW_MSG_CONFIGURATION_STATUS_REQUEST,
|
|
.elem_id = CAPWAP80211_ELEM_WTP_RADIO_INFORMATION,
|
|
.item_id = CW_ITEM_RADIO_CFG,
|
|
.out = cisco_out_80211_wtp_radio_cfg,
|
|
.get = cw_out_get_config,
|
|
.mand = 1
|
|
}
|
|
,
|
|
|
|
// {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}
|
|
// ,
|
|
|
|
|
|
|
|
#endif
|
|
{0,0}
|
|
|
|
};
|
|
|
|
|
|
#include "cw/item.h"
|
|
|
|
static struct cw_itemdef _capwap_itemdefs[] = {
|
|
|
|
{"wtp_name_cisco",CW_ITEM_NONE,MBAG_STR},
|
|
|
|
/* {"wtp_mac_type",CW_ITEM_NONE,MBAG_BYTE},
|
|
{"discovery_type",CW_ITEM_NONE,MBAG_BYTE},
|
|
{"wtp_frame_tunnel_mode",CW_ITEM_NONE,MBAG_BYTE},
|
|
*/ {CW_ITEM_NONE}
|
|
|
|
};
|
|
|
|
|
|
#include "../modload.h"
|
|
|
|
int fortinet_register_actions_wtp(struct cw_actiondef *def)
|
|
{
|
|
|
|
int rc;
|
|
rc = cw_actionlist_in_register_actions(def->in, actions_in);
|
|
rc += cw_actionlist_out_register_actions(def->out, actions_out);
|
|
|
|
rc += cw_strheap_register_strings(def->strmsg, capwap_strings_msg);
|
|
rc += cw_strheap_register_strings(def->strelem, cipwap_strings_elem);
|
|
|
|
rc += cw_itemdefheap_register(def->items, _capwap_itemdefs);
|
|
rc += cw_itemdefheap_register(def->radioitems, capwap_radioitemdefs);
|
|
|
|
// intavltree_add(def->wbids, 0);
|
|
|
|
|
|
|
|
return rc;
|
|
}
|
|
|
|
|
|
|
|
int fortinet_register_actions80211_wtp(struct cw_actiondef *def)
|
|
{
|
|
|
|
int rc;
|
|
rc=0;
|
|
// rc = cw_actionlist_in_register_actions(def->in, actions80211_in);
|
|
/* rc += cw_actionlist_out_register_actions(def->out, actions_out);
|
|
|
|
rc += cw_strheap_register_strings(def->strmsg, capwap_strings_msg);
|
|
rc += cw_strheap_register_strings(def->strelem, cipwap_strings_elem);
|
|
|
|
rc += cw_itemdefheap_register(def->items, _capwap_itemdefs);
|
|
rc += cw_itemdefheap_register(def->radioitems, capwap_radioitemdefs);
|
|
|
|
intavltree_add(def->wbids, 0);
|
|
*/
|
|
|
|
|
|
return rc;
|
|
}
|
|
|
|
|