Check broker IP conversion. Adjust state machine accordingly
The result of converting the IP address of the broker wasn't checked. As a result, the pointer was left uninitialised and the IPv6 address used for connecting was some random data. The function now returns an error. Before connect_to_broker is called, mqtt_register is executed, which memsets conn to 0, making its state 0 (MQTT_CONN_STATE_ERROR). In order to recover from this error state, the extra check was added in the MQTT_CLIENT_STATE_NEWCONFIG state. This was discovered using [CodeSonar](https://www.grammatech.com/products/codesonar)
This commit is contained in:
parent
4425a67433
commit
f15b86158b
|
@ -1333,7 +1333,9 @@ mqtt_connect(struct mqtt_connection *conn, char *host, uint16_t port,
|
||||||
conn->connect_vhdr_flags |= MQTT_VHDR_CLEAN_SESSION_FLAG;
|
conn->connect_vhdr_flags |= MQTT_VHDR_CLEAN_SESSION_FLAG;
|
||||||
|
|
||||||
/* convert the string IPv6 address to a numeric IPv6 address */
|
/* convert the string IPv6 address to a numeric IPv6 address */
|
||||||
uiplib_ip6addrconv(host, &ip6addr);
|
if(uiplib_ip6addrconv(host, &ip6addr) == 0) {
|
||||||
|
return MQTT_STATUS_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
uip_ipaddr_copy(&(conn->server_ip), ipaddr);
|
uip_ipaddr_copy(&(conn->server_ip), ipaddr);
|
||||||
|
|
||||||
|
|
|
@ -698,10 +698,15 @@ static void
|
||||||
connect_to_broker(void)
|
connect_to_broker(void)
|
||||||
{
|
{
|
||||||
/* Connect to MQTT server */
|
/* Connect to MQTT server */
|
||||||
mqtt_connect(&conn, conf->broker_ip, conf->broker_port,
|
mqtt_status_t conn_attempt_result = mqtt_connect(&conn, conf->broker_ip,
|
||||||
conf->pub_interval * 3);
|
conf->broker_port,
|
||||||
|
conf->pub_interval * 3);
|
||||||
|
|
||||||
state = MQTT_CLIENT_STATE_CONNECTING;
|
if(conn_attempt_result == MQTT_STATUS_OK) {
|
||||||
|
state = MQTT_CLIENT_STATE_CONNECTING;
|
||||||
|
} else {
|
||||||
|
state = MQTT_CLIENT_STATE_CONFIG_ERROR;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
static void
|
static void
|
||||||
|
@ -827,8 +832,8 @@ state_machine(void)
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case MQTT_CLIENT_STATE_NEWCONFIG:
|
case MQTT_CLIENT_STATE_NEWCONFIG:
|
||||||
/* Only update config after we have disconnected */
|
/* Only update config after we have disconnected or in the case of an error */
|
||||||
if(conn.state == MQTT_CONN_STATE_NOT_CONNECTED) {
|
if(conn.state == MQTT_CONN_STATE_NOT_CONNECTED || conn.state == MQTT_CONN_STATE_ERROR) {
|
||||||
update_config();
|
update_config();
|
||||||
DBG("New config\n");
|
DBG("New config\n");
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue