2014-08-16 08:24:38 +02:00
|
|
|
/*
|
|
|
|
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/>.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2014-07-11 22:12:11 +02:00
|
|
|
#include <stdlib.h>
|
2014-07-28 06:56:37 +02:00
|
|
|
#include <string.h>
|
2015-04-10 17:14:55 +02:00
|
|
|
#include <errno.h>
|
2014-07-11 22:12:11 +02:00
|
|
|
|
2016-03-11 22:23:00 +01:00
|
|
|
#include "cw.h"
|
2015-04-10 17:14:55 +02:00
|
|
|
#include "dbg.h"
|
|
|
|
|
2015-04-10 17:52:01 +02:00
|
|
|
#include "log.h"
|
2014-08-17 18:39:48 +02:00
|
|
|
#include "cw_util.h"
|
|
|
|
|
2014-07-11 22:12:11 +02:00
|
|
|
#include "conn.h"
|
2014-08-16 08:24:38 +02:00
|
|
|
#include "sock.h"
|
2014-07-11 22:12:11 +02:00
|
|
|
|
2016-02-26 18:52:29 +01:00
|
|
|
#include "stravltree.h"
|
2016-03-08 01:20:22 +01:00
|
|
|
#include "mod.h"
|
2016-02-26 18:52:29 +01:00
|
|
|
|
2015-04-10 17:14:55 +02:00
|
|
|
|
|
|
|
int conn_send_msg(struct conn *conn, uint8_t * rawmsg);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Init response message header
|
|
|
|
*/
|
|
|
|
void cw_init_response(struct conn *conn, uint8_t * req)
|
|
|
|
{
|
|
|
|
uint8_t *buffer = conn->resp_buffer;
|
|
|
|
int shbytes = cw_get_hdr_msg_offset(req);
|
|
|
|
int dhbytes;
|
|
|
|
memcpy(buffer, req, shbytes);
|
2015-04-18 11:20:24 +02:00
|
|
|
|
|
|
|
|
2016-02-21 09:25:36 +01:00
|
|
|
cw_set_hdr_rmac(buffer, conn->base_rmac);
|
|
|
|
// cw_set_hdr_hlen(buffer, 2);
|
|
|
|
// cw_set_hdr_flags(buffer, CW_FLAG_HDR_M, 1);
|
2015-04-18 11:20:24 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2015-04-10 17:14:55 +02:00
|
|
|
dhbytes = cw_get_hdr_msg_offset(buffer);
|
|
|
|
|
|
|
|
uint8_t *msgptr = req + shbytes;
|
|
|
|
uint8_t *dmsgptr = buffer + dhbytes;
|
|
|
|
|
|
|
|
cw_set_msg_type(dmsgptr, cw_get_msg_type(msgptr) + 1);
|
|
|
|
cw_set_msg_seqnum(dmsgptr, cw_get_msg_seqnum(msgptr));
|
|
|
|
cw_set_msg_flags(dmsgptr, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cw_init_request(struct conn *conn, int msg_id)
|
|
|
|
{
|
|
|
|
uint8_t *buffer = conn->req_buffer;
|
|
|
|
|
2015-04-12 16:57:00 +02:00
|
|
|
/* zero the first 8 bytes */
|
2015-04-10 17:14:55 +02:00
|
|
|
cw_put_dword(buffer + 0, 0);
|
|
|
|
cw_put_dword(buffer + 4, 0);
|
2015-04-12 16:57:00 +02:00
|
|
|
|
|
|
|
/* unencrypted */
|
2018-02-23 09:12:39 +01:00
|
|
|
cw_set_hdr_preamble(buffer, CAPWAP_VERSION << 4 | 0);
|
2016-02-21 09:25:36 +01:00
|
|
|
|
|
|
|
cw_set_hdr_rmac(buffer, conn->base_rmac);
|
2015-04-18 11:20:24 +02:00
|
|
|
//cw_set_hdr_hlen(buffer, 2);
|
|
|
|
|
2015-04-12 16:57:00 +02:00
|
|
|
|
2016-03-09 18:39:09 +01:00
|
|
|
|
|
|
|
cw_set_hdr_wbid(buffer, conn->wbid);
|
2015-04-10 17:14:55 +02:00
|
|
|
cw_set_hdr_rid(buffer, 0);
|
2015-04-18 11:20:24 +02:00
|
|
|
|
|
|
|
|
2015-04-10 17:14:55 +02:00
|
|
|
uint8_t *msgptr = cw_get_hdr_msg_offset(buffer) + buffer;
|
|
|
|
cw_set_msg_type(msgptr, msg_id);
|
|
|
|
cw_set_msg_flags(msgptr, 0);
|
|
|
|
cw_set_msg_elems_len(msgptr, 0);
|
|
|
|
}
|
2014-07-11 22:12:11 +02:00
|
|
|
|
2016-03-27 04:50:04 +02:00
|
|
|
void cw_init_data_msg(struct conn *conn)
|
2016-03-21 08:25:32 +01:00
|
|
|
{
|
|
|
|
uint8_t *buffer = conn->req_buffer;
|
|
|
|
cw_put_dword(buffer + 0, 0);
|
|
|
|
cw_put_dword(buffer + 4, 0);
|
|
|
|
|
2016-03-27 04:50:04 +02:00
|
|
|
/* unencrypted */
|
2018-02-23 09:12:39 +01:00
|
|
|
cw_set_hdr_preamble(buffer, CAPWAP_VERSION << 4 | 0);
|
2016-03-27 04:50:04 +02:00
|
|
|
|
|
|
|
|
2016-03-21 08:25:32 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-04-10 17:14:55 +02:00
|
|
|
/**
|
|
|
|
* send a response
|
|
|
|
*/
|
|
|
|
int cw_send_response(struct conn *conn, uint8_t * rawmsg, int len)
|
2014-07-11 22:12:11 +02:00
|
|
|
{
|
2015-04-10 17:14:55 +02:00
|
|
|
cw_init_response(conn, rawmsg);
|
|
|
|
if (cw_put_msg(conn, conn->resp_buffer) == -1)
|
2014-07-11 22:12:11 +02:00
|
|
|
return 0;
|
2015-04-10 17:14:55 +02:00
|
|
|
conn_send_msg(conn, conn->resp_buffer);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-07-11 22:12:11 +02:00
|
|
|
|
2015-04-10 17:14:55 +02:00
|
|
|
/**
|
|
|
|
* Special case error message, which is sent when an unexpected messages
|
2016-02-16 08:13:34 +01:00
|
|
|
* was received or something else happened.
|
2015-04-10 17:14:55 +02:00
|
|
|
* @param conn conection
|
|
|
|
* @param rawmsg the received request message, which the response belongs to
|
2016-03-07 18:56:02 +01:00
|
|
|
* @param result_code result code to send
|
2015-04-10 17:14:55 +02:00
|
|
|
* @return 1
|
|
|
|
*/
|
|
|
|
int cw_send_error_response(struct conn *conn, uint8_t * rawmsg, uint32_t result_code)
|
|
|
|
{
|
|
|
|
cw_init_response(conn, rawmsg);
|
|
|
|
|
|
|
|
uint8_t *out = conn->resp_buffer;
|
|
|
|
|
|
|
|
uint8_t *dst = cw_get_hdr_msg_elems_ptr(out);
|
|
|
|
int l = cw_put_elem_result_code(dst, result_code);
|
2014-07-24 23:54:53 +02:00
|
|
|
|
2015-04-10 17:14:55 +02:00
|
|
|
cw_set_msg_elems_len(out + cw_get_hdr_msg_offset(out), l);
|
|
|
|
|
|
|
|
conn_send_msg(conn, conn->resp_buffer);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
2014-07-24 23:54:53 +02:00
|
|
|
|
2016-03-07 09:57:14 +01:00
|
|
|
static int check_len(struct conn *conn, struct cw_action_in *a, uint8_t * data, int len,
|
|
|
|
struct sockaddr *from)
|
|
|
|
{
|
|
|
|
if (!a->max_len)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (len < a->min_len) {
|
|
|
|
cw_dbg(DBG_ELEM_ERR,
|
|
|
|
"%d (%s) message element too short, len=%d, min len=%d",
|
|
|
|
a->elem_id, cw_strelemp(conn->actions, a->elem_id), len,
|
|
|
|
a->min_len);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (len > a->max_len) {
|
|
|
|
cw_dbg(DBG_ELEM_ERR,
|
|
|
|
"%d (%s) message element too big, len=%d, max len=%d", a->elem_id,
|
|
|
|
cw_strelemp(conn->actions, a->elem_id), len, a->max_len);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-03-13 18:38:51 +01:00
|
|
|
static struct mod_ac *detect_mod(struct conn *conn, uint8_t * rawmsg, int len,
|
2016-03-08 01:20:22 +01:00
|
|
|
int elems_len, struct sockaddr *from, int mode)
|
|
|
|
{
|
|
|
|
if (conn->mods) {
|
|
|
|
struct mod_ac **mods = (struct mod_ac **) conn->mods;
|
|
|
|
int i;
|
|
|
|
for (i = 0; mods[i]; i++) {
|
|
|
|
if (mods[i]->detect) {
|
2016-03-13 18:38:51 +01:00
|
|
|
if (mods[i]->detect
|
|
|
|
(conn, rawmsg, len, elems_len, from, mode)) {
|
2016-03-08 01:20:22 +01:00
|
|
|
return mods[i];
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return MOD_NULL;
|
|
|
|
}
|
|
|
|
|
2016-03-13 18:38:51 +01:00
|
|
|
static struct cw_actiondef *load_mods(struct conn *conn, uint8_t * rawmsg, int len,
|
|
|
|
int elems_len, struct sockaddr *from)
|
2016-03-08 01:20:22 +01:00
|
|
|
{
|
|
|
|
|
2016-03-13 18:38:51 +01:00
|
|
|
struct mod_ac *cmod =
|
|
|
|
detect_mod(conn, rawmsg, len, elems_len, from, MOD_MODE_CAPWAP);
|
2016-03-08 01:20:22 +01:00
|
|
|
if (cmod == MOD_NULL) {
|
2016-03-13 18:38:51 +01:00
|
|
|
cw_dbg(DBG_MSG_ERR,
|
2016-03-21 13:32:02 +01:00
|
|
|
"Can't find mod to handle connection from %s , discarding message",
|
2016-03-08 01:20:22 +01:00
|
|
|
sock_addr2str_p(from));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2016-03-13 18:38:51 +01:00
|
|
|
struct mod_ac *bmod =
|
|
|
|
detect_mod(conn, rawmsg, len, elems_len, from, MOD_MODE_BINDINGS);
|
2016-03-08 01:20:22 +01:00
|
|
|
|
2016-03-13 18:38:51 +01:00
|
|
|
cw_dbg(DBG_INFO, "Mods deteced: %s,%s", cmod->name, bmod->name);
|
2016-03-08 01:20:22 +01:00
|
|
|
|
2016-03-27 04:50:04 +02:00
|
|
|
struct cw_actiondef *ad = mod_cache_add(conn,cmod, bmod);
|
2016-03-08 01:20:22 +01:00
|
|
|
|
|
|
|
return ad;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
if (bindins_mod) {
|
|
|
|
cw_dbg(DBG_INFO, "Using mod '%s' to handle CAWPAP for %s", mod->name,
|
|
|
|
sock_addr2str_p(from));
|
|
|
|
conn->detected=1;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
// errno = EAGAIN;
|
|
|
|
// return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
mod = detect_mod(conn, rawmsg, len, elems_len, from, MOD_DETECT_BINDINGS);
|
|
|
|
if (mod) {
|
|
|
|
cw_dbg(DBG_INFO, "Using bindings '%s' to handle %s", mod->name,
|
|
|
|
sock_addr2str_p(from));
|
|
|
|
conn->detected=1;
|
|
|
|
}
|
|
|
|
else{
|
2016-03-21 13:32:02 +01:00
|
|
|
cw_dbg(DBG_MSG_ERR, "Can't detect bindings ... for %s",
|
2016-03-08 01:20:22 +01:00
|
|
|
sock_addr2str_p(from));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
2016-03-19 12:57:47 +01:00
|
|
|
int cw_in_check_generic(struct conn *conn, struct cw_action_in *a, uint8_t * data,
|
|
|
|
int len,struct sockaddr *from)
|
|
|
|
{
|
|
|
|
if (cw_is_request(a->msg_id)){
|
|
|
|
return cw_in_check_generic_req(conn,a,data,len,from);
|
|
|
|
}
|
|
|
|
return cw_in_check_generic_resp(conn,a,data,len,from);
|
|
|
|
|
|
|
|
}
|
2016-03-08 01:20:22 +01:00
|
|
|
|
|
|
|
|
2014-08-17 18:39:48 +02:00
|
|
|
|
2016-02-21 09:25:36 +01:00
|
|
|
static int process_elements(struct conn *conn, uint8_t * rawmsg, int len,
|
|
|
|
struct sockaddr *from)
|
2015-04-10 17:14:55 +02:00
|
|
|
{
|
|
|
|
struct cw_action_in as, *af, *afm;
|
2014-08-17 18:39:48 +02:00
|
|
|
|
2016-02-21 09:25:36 +01:00
|
|
|
int offset = cw_get_hdr_msg_offset(rawmsg);
|
2015-04-12 16:57:00 +02:00
|
|
|
|
|
|
|
uint8_t *msg_ptr = rawmsg + offset;
|
2014-08-17 18:39:48 +02:00
|
|
|
|
2015-04-10 17:14:55 +02:00
|
|
|
int elems_len = cw_get_msg_elems_len(msg_ptr);
|
2014-07-11 22:12:11 +02:00
|
|
|
|
2016-02-21 09:25:36 +01:00
|
|
|
int payloadlen = len - offset;
|
|
|
|
|
2016-03-01 19:10:08 +01:00
|
|
|
|
2015-04-12 16:57:00 +02:00
|
|
|
/* pre-check message */
|
2016-02-21 09:25:36 +01:00
|
|
|
if (payloadlen - 8 != elems_len) {
|
2015-04-12 16:57:00 +02:00
|
|
|
|
2015-04-13 11:00:46 +02:00
|
|
|
if (conn->strict_hdr) {
|
2015-04-12 16:57:00 +02:00
|
|
|
cw_dbg(DBG_MSG_ERR,
|
|
|
|
"Discarding message from %s, msgelems len=%d, payload len=%d, (Strict CAPWAP) ",
|
2016-02-21 09:25:36 +01:00
|
|
|
sock_addr2str(&conn->addr), elems_len, payloadlen - 8);
|
|
|
|
errno = EAGAIN;
|
2015-04-12 16:57:00 +02:00
|
|
|
return -1;
|
2014-08-17 18:39:48 +02:00
|
|
|
}
|
2016-03-01 19:10:08 +01:00
|
|
|
|
|
|
|
|
2016-02-21 09:25:36 +01:00
|
|
|
if (elems_len < payloadlen - 8) {
|
2015-04-12 16:57:00 +02:00
|
|
|
cw_dbg(DBG_RFC,
|
|
|
|
"Packet from from %s has %d bytes of extra data, ignoring.",
|
2016-02-21 09:25:36 +01:00
|
|
|
sock_addr2str(&conn->addr), payloadlen - 8 - elems_len);
|
2015-04-12 16:57:00 +02:00
|
|
|
elems_len = len - 8;
|
2014-08-17 18:39:48 +02:00
|
|
|
}
|
2014-07-11 22:12:11 +02:00
|
|
|
|
2016-02-21 09:25:36 +01:00
|
|
|
if (elems_len > payloadlen - 8) {
|
2016-03-01 19:10:08 +01:00
|
|
|
|
2015-04-12 16:57:00 +02:00
|
|
|
cw_dbg(DBG_RFC,
|
|
|
|
"Packet from from %s has msgelems len of %d bytes, but has only %d bytes of data, truncating.",
|
|
|
|
sock_addr2str(&conn->addr), elems_len, payloadlen - 8);
|
2016-02-21 09:25:36 +01:00
|
|
|
elems_len = payloadlen - 8;
|
2014-08-17 18:39:48 +02:00
|
|
|
}
|
|
|
|
}
|
2014-07-11 22:12:11 +02:00
|
|
|
|
|
|
|
|
2016-03-01 19:10:08 +01:00
|
|
|
|
2016-02-23 08:58:05 +01:00
|
|
|
if (!conn->detected) {
|
2016-03-08 01:20:22 +01:00
|
|
|
//struct mod_ac *mod;
|
2016-03-13 18:38:51 +01:00
|
|
|
struct cw_actiondef *ad = load_mods(conn, rawmsg, len, elems_len, from);
|
2016-03-08 01:20:22 +01:00
|
|
|
if (!ad) {
|
2016-03-27 04:50:04 +02:00
|
|
|
cw_log(LOG_ERR, "Error");
|
2016-03-13 18:38:51 +01:00
|
|
|
errno = EAGAIN;
|
2016-03-08 01:20:22 +01:00
|
|
|
return -1;
|
2016-02-23 08:58:05 +01:00
|
|
|
}
|
2016-03-08 01:20:22 +01:00
|
|
|
conn->actions = ad;
|
2016-03-13 18:38:51 +01:00
|
|
|
conn->detected = 1;
|
2016-02-27 05:35:25 +01:00
|
|
|
|
2016-02-23 19:38:10 +01:00
|
|
|
}
|
|
|
|
|
2016-02-23 08:58:05 +01:00
|
|
|
|
2014-07-11 22:12:11 +02:00
|
|
|
|
2015-04-10 17:14:55 +02:00
|
|
|
/* prepare struct for search operation */
|
|
|
|
as.capwap_state = conn->capwap_state;
|
|
|
|
as.msg_id = cw_get_msg_id(msg_ptr);
|
|
|
|
as.vendor_id = 0;
|
|
|
|
as.elem_id = 0;
|
|
|
|
as.proto = 0;
|
2015-03-31 08:04:03 +02:00
|
|
|
|
|
|
|
|
2015-04-10 17:14:55 +02:00
|
|
|
/* Search for state/message combination */
|
|
|
|
afm = cw_actionlist_in_get(conn->actions->in, &as);
|
2015-03-31 08:04:03 +02:00
|
|
|
|
2015-04-10 17:14:55 +02:00
|
|
|
if (!afm) {
|
|
|
|
/* Throw away unexpected response messages */
|
|
|
|
if (!(as.msg_id & 1)) {
|
|
|
|
cw_dbg(DBG_MSG_ERR,
|
2016-02-20 16:21:32 +01:00
|
|
|
"Message type %d (%s) unexpected/illegal in %s State, discarding.",
|
2015-04-10 17:14:55 +02:00
|
|
|
as.msg_id, cw_strmsg(as.msg_id),
|
|
|
|
cw_strstate(conn->capwap_state));
|
2015-04-12 16:57:00 +02:00
|
|
|
errno = EAGAIN;
|
2015-04-11 19:00:51 +02:00
|
|
|
return -1;
|
2015-04-10 17:14:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Request message not found in current state, check if we know
|
|
|
|
anything else about this message type */
|
|
|
|
const char *str = cw_strheap_get(conn->actions->strmsg, as.msg_id);
|
|
|
|
int result_code = 0;
|
|
|
|
if (str) {
|
|
|
|
/* Message found, but it was in wrong state */
|
|
|
|
cw_dbg(DBG_MSG_ERR,
|
|
|
|
"Message type %d (%s) not allowed in %s State.", as.msg_id,
|
|
|
|
cw_strmsg(as.msg_id), cw_strstate(as.capwap_state));
|
|
|
|
result_code = CW_RESULT_MSG_INVALID_IN_CURRENT_STATE;
|
|
|
|
} else {
|
|
|
|
/* Message is unknown */
|
|
|
|
cw_dbg(DBG_MSG_ERR, "Message type %d (%s) unknown.",
|
|
|
|
as.msg_id, cw_strmsg(as.msg_id),
|
|
|
|
cw_strstate(as.capwap_state));
|
|
|
|
result_code = CW_RESULT_MSG_UNRECOGNIZED;
|
|
|
|
|
|
|
|
}
|
|
|
|
cw_send_error_response(conn, rawmsg, result_code);
|
2015-04-28 10:21:48 +02:00
|
|
|
errno = EAGAIN;
|
|
|
|
return -1;
|
2014-07-11 22:12:11 +02:00
|
|
|
}
|
|
|
|
|
2016-03-27 04:50:04 +02:00
|
|
|
|
|
|
|
if (conn->msg_start){
|
|
|
|
conn->msg_start(conn, afm, rawmsg, len, from);
|
|
|
|
}
|
2014-07-11 22:12:11 +02:00
|
|
|
|
2015-04-10 17:14:55 +02:00
|
|
|
/* Execute start processor for message */
|
|
|
|
if (afm->start) {
|
2016-02-21 09:25:36 +01:00
|
|
|
afm->start(conn, afm, rawmsg, len, from);
|
2015-04-10 17:14:55 +02:00
|
|
|
}
|
2015-03-31 08:04:03 +02:00
|
|
|
|
2015-04-10 17:14:55 +02:00
|
|
|
uint8_t *elems_ptr = cw_get_msg_elems_ptr(msg_ptr);
|
|
|
|
uint8_t *elem;
|
2014-07-11 22:12:11 +02:00
|
|
|
|
2015-04-20 21:28:22 +02:00
|
|
|
/* Create an avltree to catch the found mandatory elements */
|
2016-02-26 18:52:29 +01:00
|
|
|
conn->mand = stravltree_create();
|
2014-07-11 22:12:11 +02:00
|
|
|
|
2016-03-08 01:20:22 +01:00
|
|
|
int unrecognized = 0;
|
2016-03-06 21:50:01 +01:00
|
|
|
|
2015-04-10 17:14:55 +02:00
|
|
|
/* iterate through message elements */
|
|
|
|
cw_foreach_elem(elem, elems_ptr, elems_len) {
|
|
|
|
|
|
|
|
as.elem_id = cw_get_elem_id(elem);
|
|
|
|
int elem_len = cw_get_elem_len(elem);
|
|
|
|
|
|
|
|
|
|
|
|
af = cw_actionlist_in_get(conn->actions->in, &as);
|
|
|
|
|
|
|
|
if (!af) {
|
2016-03-06 21:50:01 +01:00
|
|
|
unrecognized++;
|
2015-04-12 16:57:00 +02:00
|
|
|
cw_dbg(DBG_ELEM_ERR,
|
2015-04-12 23:28:55 +02:00
|
|
|
"Element %d (%s) not allowed in msg of type %d (%s), ignoring.",
|
2016-02-21 09:25:36 +01:00
|
|
|
as.elem_id, cw_strelemp(conn->actions, as.elem_id),
|
|
|
|
as.msg_id, cw_strmsg(as.msg_id));
|
2015-04-10 17:14:55 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2016-03-08 01:20:22 +01:00
|
|
|
if (!check_len(conn, af, cw_get_elem_data(elem), elem_len, from)) {
|
2016-03-07 09:57:14 +01:00
|
|
|
continue;
|
|
|
|
}
|
2016-04-11 18:02:30 +02:00
|
|
|
cw_dbg_elem(DBG_ELEM, conn, as.msg_id, as.elem_id, cw_get_elem_data(elem),
|
|
|
|
elem_len);
|
|
|
|
|
|
|
|
|
2016-03-07 09:57:14 +01:00
|
|
|
|
2015-04-12 16:57:00 +02:00
|
|
|
int afrc = 1;
|
|
|
|
if (af->start) {
|
2016-02-21 09:25:36 +01:00
|
|
|
afrc =
|
|
|
|
af->start(conn, af, cw_get_elem_data(elem), elem_len, from);
|
2015-04-12 16:57:00 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (af->mand && afrc) {
|
2015-04-10 17:14:55 +02:00
|
|
|
/* add found mandatory message element
|
|
|
|
to mand list */
|
2016-02-26 18:52:29 +01:00
|
|
|
stravltree_add(conn->mand, af->item_id);
|
2015-04-10 17:14:55 +02:00
|
|
|
}
|
|
|
|
|
2016-04-11 18:02:30 +02:00
|
|
|
if(conn->elem_end){
|
|
|
|
afrc = conn->elem_end(conn,af,afrc,cw_get_elem_data(elem), elem_len,from);
|
|
|
|
}
|
|
|
|
|
2014-07-11 22:12:11 +02:00
|
|
|
}
|
|
|
|
|
2015-04-12 19:19:29 +02:00
|
|
|
/* all message elements are processed, do now after processing
|
|
|
|
by calling the "end" function for the message */
|
|
|
|
|
2015-04-10 17:14:55 +02:00
|
|
|
int result_code = 0;
|
2016-03-07 18:56:02 +01:00
|
|
|
|
2016-03-19 12:57:47 +01:00
|
|
|
|
2016-04-11 18:02:30 +02:00
|
|
|
|
|
|
|
int rct = cw_in_check_generic(conn, afm, rawmsg, len, from);
|
|
|
|
|
2016-03-19 12:57:47 +01:00
|
|
|
if (rct && conn->strict_capwap)
|
|
|
|
{
|
|
|
|
result_code = rct;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
|
|
|
|
if (afm->end) {
|
|
|
|
result_code = afm->end(conn, afm, rawmsg, len, from);
|
|
|
|
|
|
|
|
}
|
2016-03-27 04:50:04 +02:00
|
|
|
if (conn->msg_end){
|
|
|
|
conn->msg_end(conn, afm, rawmsg, len, from);
|
|
|
|
}
|
2015-04-10 17:14:55 +02:00
|
|
|
}
|
2014-07-11 22:12:11 +02:00
|
|
|
|
2016-03-08 01:20:22 +01:00
|
|
|
if (unrecognized) {
|
|
|
|
cw_dbg(DBG_RFC, "Message has %d unrecognized message elements.",
|
|
|
|
unrecognized);
|
2016-03-13 18:38:51 +01:00
|
|
|
/* set only resultcode for request messages */
|
|
|
|
|
|
|
|
if ( (!result_code) && ((afm->msg_id & 1))) {
|
2016-03-19 12:57:47 +01:00
|
|
|
if (conn->strict_capwap) {
|
|
|
|
result_code = CW_RESULT_UNRECOGNIZED_MESSAGE_ELEMENT;
|
|
|
|
}
|
2016-03-06 21:50:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-04-10 17:14:55 +02:00
|
|
|
/* if we've got a request message, we always have to send a response message */
|
|
|
|
if (as.msg_id & 1) {
|
|
|
|
if (result_code > 0) {
|
2015-04-21 08:24:59 +02:00
|
|
|
/* the end method gave us an result code>0, so
|
2015-04-10 17:14:55 +02:00
|
|
|
send an error message */
|
|
|
|
cw_send_error_response(conn, rawmsg, result_code);
|
2016-02-21 09:25:36 +01:00
|
|
|
} else if (result_code == 0) {
|
2015-04-12 19:19:29 +02:00
|
|
|
/* All ok, send regular response message */
|
2015-04-10 17:14:55 +02:00
|
|
|
cw_send_response(conn, rawmsg, len);
|
2015-04-12 19:19:29 +02:00
|
|
|
} else {
|
|
|
|
/* the request message is ignored, no response
|
2015-04-21 08:24:59 +02:00
|
|
|
will be sent */
|
2016-02-21 09:25:36 +01:00
|
|
|
errno = EAGAIN;
|
2015-04-10 17:14:55 +02:00
|
|
|
}
|
2015-04-12 16:57:00 +02:00
|
|
|
} else {
|
2015-04-12 19:19:29 +02:00
|
|
|
/*
|
|
|
|
* Whe have got a response message.
|
|
|
|
* Put further actions here, if needed.
|
|
|
|
*/
|
2014-07-11 22:12:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-26 18:52:29 +01:00
|
|
|
stravltree_destroy(conn->mand);
|
2015-04-10 17:14:55 +02:00
|
|
|
|
|
|
|
return result_code;
|
|
|
|
|
2014-07-11 22:12:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-08-17 18:39:48 +02:00
|
|
|
|
2015-04-10 17:14:55 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-02-21 09:25:36 +01:00
|
|
|
int process_message(struct conn *conn, uint8_t * rawmsg, int rawlen,
|
2016-02-27 05:35:25 +01:00
|
|
|
struct sockaddr *from)
|
2014-08-17 18:39:48 +02:00
|
|
|
{
|
2016-03-01 19:10:08 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
2015-04-10 17:14:55 +02:00
|
|
|
uint8_t *msgptr = rawmsg + cw_get_hdr_msg_offset(rawmsg);
|
|
|
|
|
|
|
|
|
|
|
|
uint32_t type = cw_get_msg_type(msgptr);
|
2014-08-17 18:39:48 +02:00
|
|
|
|
2015-04-10 17:14:55 +02:00
|
|
|
if (!(type & 0x1)) {
|
|
|
|
/* It's a response message, no further examination required. */
|
2015-04-12 23:28:55 +02:00
|
|
|
return process_elements(conn, rawmsg, rawlen, from);
|
2015-04-10 17:14:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* It's a request message, check if seqnum is right and if
|
|
|
|
* we have already sent a response message*/
|
2015-03-23 07:48:27 +01:00
|
|
|
|
2015-04-10 17:14:55 +02:00
|
|
|
uint8_t seqnum = cw_get_msg_seqnum(msgptr);
|
2014-08-17 18:39:48 +02:00
|
|
|
|
2015-04-10 17:14:55 +02:00
|
|
|
int s1 = conn->last_seqnum_received;
|
|
|
|
int s2 = seqnum;
|
|
|
|
int sd = s2 - s1;
|
2014-08-17 18:39:48 +02:00
|
|
|
|
2015-04-10 17:14:55 +02:00
|
|
|
if ((sd > 0 && sd < 128) || (sd < 0 && sd < -128) || s1 < 0) {
|
|
|
|
/* seqnum is ok, normal message processing */
|
|
|
|
conn->last_seqnum_received = seqnum;
|
2016-02-21 09:25:36 +01:00
|
|
|
return process_elements(conn, rawmsg, rawlen, from);
|
2015-04-10 17:14:55 +02:00
|
|
|
}
|
2014-08-17 18:39:48 +02:00
|
|
|
|
2015-04-10 17:14:55 +02:00
|
|
|
if (sd != 0) {
|
|
|
|
cw_dbg(DBG_MSG_ERR,
|
|
|
|
"Discarding message from %s, old seqnum, seqnum = %d, last seqnum=%d",
|
|
|
|
sock_addr2str(&conn->addr), s2, s1);
|
|
|
|
errno = EAGAIN;
|
|
|
|
return -1;
|
2014-08-17 18:39:48 +02:00
|
|
|
}
|
|
|
|
|
2015-04-10 17:14:55 +02:00
|
|
|
/* the received request message was retransmittet by our peer,
|
|
|
|
* let's retransmit our response message if we have one*/
|
|
|
|
|
2016-03-01 19:10:08 +01:00
|
|
|
|
2015-04-10 17:14:55 +02:00
|
|
|
cw_dbg(DBG_MSG_ERR,
|
|
|
|
"Retransmitted request message from %s detected, seqnum=%d, type=%d",
|
|
|
|
sock_addr2str(&conn->addr), s2, type);
|
|
|
|
|
2014-08-17 18:39:48 +02:00
|
|
|
|
2015-04-10 17:14:55 +02:00
|
|
|
if (cw_get_hdr_msg_type(conn->resp_buffer) - 1 != type) {
|
|
|
|
cw_dbg(DBG_MSG_ERR,
|
|
|
|
"No cached response for retransmission, request seqnum=%d,in cache=%d",
|
|
|
|
s2, conn->resp_msg.type);
|
|
|
|
errno = EAGAIN;
|
|
|
|
return -1;
|
|
|
|
}
|
2014-08-17 18:39:48 +02:00
|
|
|
|
2015-04-10 17:14:55 +02:00
|
|
|
cw_dbg(DBG_MSG_ERR, "Retransmitting response message to %s, seqnum=%d",
|
|
|
|
sock_addr2str(&conn->addr), s2);
|
2015-04-12 16:57:00 +02:00
|
|
|
|
|
|
|
// XXX untested
|
|
|
|
conn_send_msg(conn, conn->resp_buffer);
|
2015-04-10 17:14:55 +02:00
|
|
|
errno = EAGAIN;
|
|
|
|
return -1;
|
2014-08-17 18:39:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-04-12 16:57:00 +02:00
|
|
|
/*
|
|
|
|
* Process an incomming CAPWAP packet, assuming the packet is already decrypted
|
2015-04-28 10:21:48 +02:00
|
|
|
* @param conn conection object
|
2015-04-12 16:57:00 +02:00
|
|
|
* @param packet pointer to packet data
|
|
|
|
* @param len lenght of packet data
|
|
|
|
*/
|
2016-04-10 16:01:13 +02:00
|
|
|
int conn_process_packet2(struct conn *conn, uint8_t * packet, int len,
|
2016-02-21 09:25:36 +01:00
|
|
|
struct sockaddr *from)
|
2014-07-11 22:12:11 +02:00
|
|
|
{
|
|
|
|
|
2015-04-11 19:00:51 +02:00
|
|
|
|
2015-04-10 17:14:55 +02:00
|
|
|
if (len < 8) {
|
2014-07-11 22:12:11 +02:00
|
|
|
/* packet too short */
|
2015-04-11 19:00:51 +02:00
|
|
|
cw_dbg(DBG_PKT_ERR,
|
2015-04-12 16:57:00 +02:00
|
|
|
"Discarding packet from %s, packet too short, len=%d, at least 8 expected.",
|
2015-04-10 17:14:55 +02:00
|
|
|
sock_addr2str(&conn->addr), len);
|
2015-04-11 19:00:51 +02:00
|
|
|
errno = EAGAIN;
|
|
|
|
return -1;
|
2014-07-11 22:12:11 +02:00
|
|
|
}
|
|
|
|
|
2015-03-31 08:04:03 +02:00
|
|
|
int preamble = cw_get_hdr_preamble(packet);
|
2014-07-11 22:12:11 +02:00
|
|
|
|
2018-02-23 09:12:39 +01:00
|
|
|
if ((preamble & 0xf0) != (CAPWAP_VERSION << 4)) {
|
2014-07-11 22:12:11 +02:00
|
|
|
/* wrong version */
|
2015-04-11 19:00:51 +02:00
|
|
|
cw_dbg(DBG_PKT_ERR,
|
2015-04-12 16:57:00 +02:00
|
|
|
"Discarding packet from %s, wrong version, version=%d, version %d expected.",
|
|
|
|
sock_addr2str(&conn->addr), (preamble & 0xf0) >> 4,
|
2018-02-23 09:12:39 +01:00
|
|
|
CAPWAP_VERSION);
|
2015-04-12 16:57:00 +02:00
|
|
|
errno = EAGAIN;
|
2015-04-11 19:00:51 +02:00
|
|
|
return -1;
|
2014-07-11 22:12:11 +02:00
|
|
|
}
|
|
|
|
|
2015-04-10 17:14:55 +02:00
|
|
|
if (preamble & 0xf) {
|
2015-04-12 16:57:00 +02:00
|
|
|
/* Encrypted data, this shuold never happen here */
|
2015-04-11 19:00:51 +02:00
|
|
|
cw_dbg(DBG_PKT_ERR,
|
2015-04-12 16:57:00 +02:00
|
|
|
"Discarding packet from %s, encrypted data after decryption ...",
|
|
|
|
sock_addr2str(&conn->addr));
|
2015-04-11 19:00:51 +02:00
|
|
|
errno = EAGAIN;
|
|
|
|
return -1;
|
2014-07-11 22:12:11 +02:00
|
|
|
}
|
|
|
|
|
2015-03-23 07:48:27 +01:00
|
|
|
|
2015-04-10 17:14:55 +02:00
|
|
|
int offs = cw_get_hdr_msg_offset(packet);
|
2015-03-23 07:48:27 +01:00
|
|
|
|
2014-07-24 23:54:53 +02:00
|
|
|
|
2015-03-31 08:04:03 +02:00
|
|
|
int payloadlen = len - offs;
|
2015-04-10 17:14:55 +02:00
|
|
|
if (payloadlen < 0) {
|
2015-04-12 16:57:00 +02:00
|
|
|
/* Eleminate messages with wrong header size */
|
2015-04-11 19:00:51 +02:00
|
|
|
cw_dbg(DBG_PKT_ERR,
|
2015-04-12 16:57:00 +02:00
|
|
|
"Discarding packet from %s, header length (%d) greater than packet len (%d).",
|
|
|
|
sock_addr2str(&conn->addr), offs, len);
|
|
|
|
errno = EAGAIN;
|
|
|
|
return -1;
|
2014-07-11 22:12:11 +02:00
|
|
|
}
|
|
|
|
|
2016-02-21 09:25:36 +01:00
|
|
|
/* Check if Radio MAC is present */
|
2015-04-10 17:14:55 +02:00
|
|
|
if (cw_get_hdr_flag_m(packet)) {
|
|
|
|
|
|
|
|
if (cw_get_hdr_rmac_len(packet) + 8 > offs) {
|
2014-07-11 22:12:11 +02:00
|
|
|
/* wrong rmac size */
|
2015-04-11 19:00:51 +02:00
|
|
|
cw_dbg(DBG_PKT_ERR,
|
2015-04-12 16:57:00 +02:00
|
|
|
"Discarding packet from %s, wrong R-MAC size, size=%d",
|
|
|
|
sock_addr2str(&conn->addr), *(packet + 8));
|
|
|
|
errno = EAGAIN;
|
|
|
|
return -1;
|
2014-07-11 22:12:11 +02:00
|
|
|
}
|
2015-04-12 16:57:00 +02:00
|
|
|
|
2014-07-24 23:54:53 +02:00
|
|
|
}
|
2014-07-11 22:12:11 +02:00
|
|
|
|
|
|
|
|
2015-04-12 16:57:00 +02:00
|
|
|
if (cw_get_hdr_flag_f(packet)) {
|
|
|
|
/* fragmented, add the packet to fragman */
|
2015-04-10 17:14:55 +02:00
|
|
|
uint8_t *f;
|
|
|
|
f = fragman_add(conn->fragman, packet, offs, payloadlen);
|
2016-02-21 09:25:36 +01:00
|
|
|
if (f == NULL) {
|
|
|
|
errno = EAGAIN;
|
2015-04-19 16:44:20 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2014-08-16 08:24:38 +02:00
|
|
|
|
2015-04-28 10:21:48 +02:00
|
|
|
|
2016-02-21 09:25:36 +01:00
|
|
|
cw_dbg_pkt(DBG_PKT_IN, conn, f + 4, *(uint32_t *) f, from);
|
|
|
|
cw_dbg_msg(DBG_MSG_IN, conn, f + 4, *(uint32_t *) f, from);
|
2015-04-28 10:21:48 +02:00
|
|
|
|
|
|
|
// XXX: Modify fragman to not throw away CAPWAP headers
|
|
|
|
|
2016-02-21 09:25:36 +01:00
|
|
|
int rc = conn->process_message(conn, f + 4, *(uint32_t *) f, from);
|
2015-03-31 08:04:03 +02:00
|
|
|
|
2015-04-10 17:14:55 +02:00
|
|
|
free(f);
|
|
|
|
return rc;
|
2014-07-11 22:12:11 +02:00
|
|
|
}
|
2015-04-11 19:00:51 +02:00
|
|
|
|
2015-04-12 16:57:00 +02:00
|
|
|
/* not fragmented, we have a complete message */
|
2016-02-21 09:25:36 +01:00
|
|
|
cw_dbg_msg(DBG_MSG_IN, conn, packet, len, from);
|
|
|
|
return conn->process_message(conn, packet, len, from);
|
2014-07-11 22:12:11 +02:00
|
|
|
}
|
|
|
|
|
2016-04-10 16:01:13 +02:00
|
|
|
int conn_process_packet(struct conn *conn, uint8_t * packet, int len,
|
|
|
|
struct sockaddr *from){
|
|
|
|
|
|
|
|
/* show this packet in debug output */
|
|
|
|
cw_dbg_pkt(DBG_PKT_IN, conn, packet, len, from);
|
|
|
|
|
|
|
|
return conn_process_packet2(conn,packet,len,from);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int conn_process_data_packet(struct conn *conn, uint8_t * packet, int len,
|
|
|
|
struct sockaddr *from){
|
|
|
|
|
|
|
|
/* show this packet in debug output */
|
|
|
|
cw_dbg_pkt(DBG_PKT_IN, conn, packet, len, from);
|
|
|
|
|
|
|
|
return conn_process_packet2(conn,packet,len,from);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-04-07 07:42:36 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Used as main message loop
|
2015-04-10 17:14:55 +02:00
|
|
|
*/
|
2015-04-07 07:42:36 +02:00
|
|
|
int cw_read_messages(struct conn *conn)
|
|
|
|
{
|
2015-04-10 17:14:55 +02:00
|
|
|
uint8_t buf[2024];
|
|
|
|
int len = 2024;
|
2015-04-07 07:42:36 +02:00
|
|
|
|
2015-04-10 17:14:55 +02:00
|
|
|
int n = conn->read(conn, buf, len);
|
|
|
|
if (n < 0)
|
2015-04-07 07:42:36 +02:00
|
|
|
return n;
|
|
|
|
|
2015-04-10 17:14:55 +02:00
|
|
|
if (n > 0) {
|
2016-02-21 09:25:36 +01:00
|
|
|
return conn->process_packet(conn, buf, n,
|
|
|
|
(struct sockaddr *) &conn->addr);
|
2015-04-10 17:14:55 +02:00
|
|
|
}
|
|
|
|
errno = EAGAIN;
|
|
|
|
return -1;
|
2015-04-12 23:28:55 +02:00
|
|
|
}
|
|
|
|
|
2016-02-21 09:25:36 +01:00
|
|
|
int cw_read_from(struct conn *conn)
|
2015-04-12 23:28:55 +02:00
|
|
|
{
|
2016-02-21 09:25:36 +01:00
|
|
|
if (!conn->readfrom) {
|
|
|
|
cw_log(LOG_ERR, "Fatal error, no readfrom method available.");
|
2015-04-12 23:28:55 +02:00
|
|
|
errno = EPROTO;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
uint8_t buf[2024];
|
|
|
|
int len = 2024;
|
|
|
|
|
|
|
|
struct sockaddr_storage from;
|
2016-02-21 09:25:36 +01:00
|
|
|
int n = conn->readfrom(conn, buf, len, &from);
|
2015-04-12 23:28:55 +02:00
|
|
|
if (n < 0)
|
|
|
|
return n;
|
|
|
|
|
|
|
|
if (n > 0) {
|
2016-02-21 09:25:36 +01:00
|
|
|
return conn->process_packet(conn, buf, n, (struct sockaddr *) &from);
|
2015-04-12 23:28:55 +02:00
|
|
|
}
|
|
|
|
errno = EAGAIN;
|
|
|
|
return -1;
|
2015-04-10 17:14:55 +02:00
|
|
|
}
|