cw_in_wtp_board_data completed.

FossilOrigin-Name: 6475dd3ea1609b3c41571e7d3ae360dbb3e6e6ecd9af7bdb7a8a2ba2f96401f5
This commit is contained in:
7u83@mail.ru
2015-03-31 17:26:25 +00:00
parent b63692f46e
commit ec6602f5ec
5 changed files with 88 additions and 27 deletions

View File

@ -6,66 +6,92 @@
#include "wtpinfo.h"
#include "capwap.h"
#include "capwap_items.h"
#include "itemstore.h"
#include "cw_util.h"
#include "cw_log.h"
static void wtpinfo_readsubelems_wtp_board_data(struct wtpinfo * wtpinfo,uint8_t * msgelem,int len)
static void readsubelems_wtp_board_data(cw_itemstore_t itemstore, uint8_t * msgelem,
int len)
{
int i=0;
int i = 0;
uint32_t val;
do {
val = ntohl(*((uint32_t*)(msgelem+i)));
int subtype= (val>>16)&0xffff;
int sublen = val&0xffff;
i+=4;
if (sublen+i>len){
cw_dbg(DBG_ELEM,"WTP Board data sub-element too long, type=%d,len=%d",subtype,sublen);
val = ntohl(*((uint32_t *) (msgelem + i)));
int subtype = (val >> 16) & 0xffff;
int sublen = val & 0xffff;
i += 4;
if (sublen + i > len) {
cw_dbg(DBG_ELEM, "WTP Board data sub-element too long, type=%d,len=%d",
subtype, sublen);
return;
}
cw_dbg(DBG_ELEM,"Reading WTP board data sub-element, type=%d, len=%d",subtype,sublen);
switch(subtype){
cw_dbg(DBG_ELEM, "Reading WTP board data sub-element, type=%d, len=%d", subtype,
sublen);
switch (subtype) {
case CWBOARDDATA_MODELNO:
bstr_replace(&wtpinfo->model_no,bstr_create(msgelem+i,sublen));
cw_itemstore_set_bstrn(itemstore, CW_ITEM_WTP_BOARD_MODELNO,
msgelem + i, sublen);
break;
case CWBOARDDATA_SERIALNO:
bstr_replace(&wtpinfo->serial_no,bstr_create(msgelem+i,sublen));
cw_itemstore_set_bstrn(itemstore, CW_ITEM_WTP_BOARD_SERIALNO,
msgelem + i, sublen);
// bstr_replace(&wtpinfo->serial_no, bstr_create(msgelem + i, sublen));
break;
case CWBOARDDATA_MACADDRESS:
wtpinfo->macaddress=realloc(wtpinfo->macaddress,sublen);
memcpy(wtpinfo->macaddress,msgelem+i,sublen);
wtpinfo->macaddress_len=sublen;
cw_itemstore_set_bstrn(itemstore, CW_ITEM_WTP_BOARD_MACADDRESS,
msgelem + i, sublen);
/*
wtpinfo->macaddress = realloc(wtpinfo->macaddress, sublen);
memcpy(wtpinfo->macaddress, msgelem + i, sublen);
wtpinfo->macaddress_len = sublen;
*/
break;
case CWBOARDDATA_BOARDID:
bstr_replace(&wtpinfo->board_id,bstr_create(msgelem+i,sublen));
cw_itemstore_set_bstrn(itemstore, CW_ITEM_WTP_BOARD_ID,
msgelem + i, sublen);
// bstr_replace(&wtpinfo->board_id, bstr_create(msgelem + i, sublen));
break;
case CWBOARDDATA_REVISION:
bstr_replace(&wtpinfo->board_revision,bstr_create(msgelem+i,sublen));
cw_itemstore_set_bstrn(itemstore, CW_ITEM_WTP_BOARD_REVISION,
msgelem + i, sublen);
// bstr_replace(&wtpinfo->board_revision,
// bstr_create(msgelem + i, sublen));
default:
break;
}
i+=sublen;
i += sublen;
}while(i<len);
} while (i < len);
}
int cw_in_wtp_board_data(struct conn *conn,struct cw_action * a,uint8_t *data,int len)
int cw_in_wtp_board_data(struct conn *conn, struct cw_action *a, uint8_t * data, int len)
{
if (len<4){
cw_dbg(DBG_ELEM_ERR,"Discarding WTP_BOARD_DATA msgelem, wrong size, type=%d, len=%d\n",type,len);
if (len < 4) {
cw_dbg(DBG_ELEM_ERR,
"Discarding WTP_BOARD_DATA msgelem, wrong size, type=%d, len=%d", a->elem_id,
len);
return 1;
}
cw_itemstore_t itemstore = conn->itemstore;
cw_itemstore_set_dword(itemstore, CW_ITEM_WTP_BOARD_VENDOR,get_dword(data));
/*
wtpinfo->vendor_id = ntohl(*((uint32_t*)msgelem));
wtpinfo_readsubelems_wtp_board_data(wtpinfo,msgelem+4,len-4);
*/
readsubelems_wtp_board_data(itemstore,data+4,len-4);
return 1;
}