mosquitto/src/persist_read.c

519 lines
13 KiB
C
Raw Normal View History

2014-05-07 22:27:00 +00:00
/*
Copyright (c) 2010-2020 Roger Light <roger@atchoo.org>
2014-05-07 22:27:00 +00:00
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
and Eclipse Distribution License v1.0 which accompany this distribution.
2014-05-07 22:27:00 +00:00
The Eclipse Public License is available at
http://www.eclipse.org/legal/epl-v10.html
and the Eclipse Distribution License is available at
http://www.eclipse.org/org/documents/edl-v10.php.
2014-05-07 22:27:00 +00:00
Contributors:
Roger Light - initial implementation and documentation.
*/
2015-04-29 20:37:47 +00:00
#include "config.h"
2014-05-07 22:27:00 +00:00
#ifdef WITH_PERSISTENCE
#ifndef WIN32
#include <arpa/inet.h>
#endif
#include <assert.h>
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <string.h>
#include <sys/stat.h>
2014-09-14 17:08:09 +00:00
#include <time.h>
#include <utlist.h>
2014-05-07 22:27:00 +00:00
#include "mosquitto_broker_internal.h"
2015-04-29 20:37:47 +00:00
#include "memory_mosq.h"
#include "persist.h"
#include "time_mosq.h"
#include "misc_mosq.h"
2014-05-07 22:27:00 +00:00
#include "util_mosq.h"
uint32_t db_version;
2014-05-07 22:27:00 +00:00
const unsigned char magic[15] = {0x00, 0xB5, 0x00, 'm','o','s','q','u','i','t','t','o',' ','d','b'};
2014-05-07 22:27:00 +00:00
static int persist__restore_sub(struct mosquitto_db *db, const char *client_id, const char *sub, int qos, uint32_t identifier, int options);
2014-05-07 22:27:00 +00:00
2015-05-16 14:24:24 +00:00
static struct mosquitto *persist__find_or_add_context(struct mosquitto_db *db, const char *client_id, uint16_t last_mid)
2014-05-07 22:27:00 +00:00
{
struct mosquitto *context;
if(!client_id) return NULL;
2014-05-07 22:27:00 +00:00
context = NULL;
HASH_FIND(hh_id, db->contexts_by_id, client_id, strlen(client_id), context);
2014-05-07 22:27:00 +00:00
if(!context){
2015-05-16 14:24:24 +00:00
context = context__init(db, -1);
2014-05-07 22:27:00 +00:00
if(!context) return NULL;
context->id = mosquitto__strdup(client_id);
2014-06-29 22:16:10 +00:00
if(!context->id){
mosquitto__free(context);
return NULL;
}
2014-05-07 22:27:00 +00:00
context->clean_start = false;
2014-05-07 22:27:00 +00:00
HASH_ADD_KEYPTR(hh_id, db->contexts_by_id, context->id, strlen(context->id), context);
2014-05-07 22:27:00 +00:00
}
if(last_mid){
context->last_mid = last_mid;
}
return context;
}
int persist__read_string_len(FILE *db_fptr, char **str, uint16_t len)
2019-01-31 21:50:42 +00:00
{
char *s = NULL;
if(len){
s = mosquitto__malloc(len+1);
2019-01-31 21:50:42 +00:00
if(!s){
fclose(db_fptr);
log__printf(NULL, MOSQ_LOG_ERR, "Error: Out of memory.");
return MOSQ_ERR_NOMEM;
}
if(fread(s, 1, len, db_fptr) != len){
2019-01-31 21:50:42 +00:00
mosquitto__free(s);
return MOSQ_ERR_NOMEM;
}
s[len] = '\0';
2019-01-31 21:50:42 +00:00
}
*str = s;
return MOSQ_ERR_SUCCESS;
}
int persist__read_string(FILE *db_fptr, char **str)
{
uint16_t i16temp;
uint16_t slen;
if(fread(&i16temp, 1, sizeof(uint16_t), db_fptr) != sizeof(uint16_t)){
return MOSQ_ERR_INVAL;
}
slen = ntohs(i16temp);
return persist__read_string_len(db_fptr, str, slen);
}
static int persist__client_msg_restore(struct mosquitto_db *db, struct P_client_msg *chunk)
2014-05-07 22:27:00 +00:00
{
struct mosquitto_client_msg *cmsg;
struct mosquitto_msg_store_load *load;
2014-05-07 22:27:00 +00:00
struct mosquitto *context;
struct mosquitto_msg_data *msg_data;
2014-05-07 22:27:00 +00:00
HASH_FIND(hh, db->msg_store_load, &chunk->F.store_id, sizeof(dbid_t), load);
if(!load){
/* Can't find message - probably expired */
return MOSQ_ERR_SUCCESS;
}
cmsg = mosquitto__calloc(1, sizeof(struct mosquitto_client_msg));
2014-05-07 22:27:00 +00:00
if(!cmsg){
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_ERR, "Error: Out of memory.");
2014-05-07 22:27:00 +00:00
return MOSQ_ERR_NOMEM;
}
2014-11-17 21:58:53 +00:00
cmsg->next = NULL;
2014-05-07 22:27:00 +00:00
cmsg->store = NULL;
cmsg->mid = chunk->F.mid;
cmsg->qos = chunk->F.qos;
cmsg->retain = (chunk->F.retain_dup&0xF0)>>4;
2014-11-17 21:58:53 +00:00
cmsg->timestamp = 0;
cmsg->direction = chunk->F.direction;
cmsg->state = chunk->F.state;
cmsg->dup = chunk->F.retain_dup&0x0F;
cmsg->properties = chunk->properties;
2014-05-07 22:27:00 +00:00
cmsg->store = load->store;
db__msg_store_ref_inc(cmsg->store);
context = persist__find_or_add_context(db, chunk->client_id, 0);
2014-05-07 22:27:00 +00:00
if(!context){
mosquitto__free(cmsg);
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_ERR, "Error restoring persistent database, message store corrupt.");
2014-05-07 22:27:00 +00:00
return 1;
}
if(cmsg->direction == mosq_md_out){
msg_data = &context->msgs_out;
}else{
msg_data = &context->msgs_in;
}
if(chunk->F.state == mosq_ms_queued || (chunk->F.qos > 0 && msg_data->inflight_quota == 0)){
DL_APPEND(msg_data->queued, cmsg);
}else{
DL_APPEND(msg_data->inflight, cmsg);
if(chunk->F.qos > 0 && msg_data->inflight_quota > 0){
msg_data->inflight_quota--;
}
}
msg_data->msg_count++;
msg_data->msg_bytes += cmsg->store->payloadlen;
if(chunk->F.qos > 0){
msg_data->msg_count12++;
msg_data->msg_bytes12 += cmsg->store->payloadlen;
}
2014-05-07 22:27:00 +00:00
return MOSQ_ERR_SUCCESS;
}
2015-05-16 14:24:24 +00:00
static int persist__client_chunk_restore(struct mosquitto_db *db, FILE *db_fptr)
2014-05-07 22:27:00 +00:00
{
int rc = 0;
struct mosquitto *context;
struct P_client chunk;
2014-05-07 22:27:00 +00:00
memset(&chunk, 0, sizeof(struct P_client));
2014-05-07 22:27:00 +00:00
if(db_version == 5){
rc = persist__chunk_client_read_v5(db_fptr, &chunk);
}else{
rc = persist__chunk_client_read_v234(db_fptr, &chunk, db_version);
}
if(rc){
fclose(db_fptr);
return rc;
2014-05-07 22:27:00 +00:00
}
context = persist__find_or_add_context(db, chunk.client_id, chunk.F.last_mid);
2014-05-07 22:27:00 +00:00
if(context){
context->session_expiry_time = chunk.F.session_expiry_time;
context->session_expiry_interval = chunk.F.session_expiry_interval;
/* FIXME - we should expire clients here if they have exceeded their time */
2014-05-07 22:27:00 +00:00
}else{
rc = 1;
}
mosquitto__free(chunk.client_id);
2014-05-07 22:27:00 +00:00
return rc;
}
static int persist__client_msg_chunk_restore(struct mosquitto_db *db, FILE *db_fptr, uint32_t length)
2014-05-07 22:27:00 +00:00
{
struct P_client_msg chunk;
2014-05-07 22:27:00 +00:00
int rc;
memset(&chunk, 0, sizeof(struct P_client_msg));
if(db_version == 5){
rc = persist__chunk_client_msg_read_v5(db_fptr, &chunk, length);
}else{
rc = persist__chunk_client_msg_read_v234(db_fptr, &chunk);
}
if(rc){
2014-05-07 22:27:00 +00:00
fclose(db_fptr);
return rc;
2014-05-07 22:27:00 +00:00
}
rc = persist__client_msg_restore(db, &chunk);
mosquitto__free(chunk.client_id);
2014-05-07 22:27:00 +00:00
return rc;
}
static int persist__msg_store_chunk_restore(struct mosquitto_db *db, FILE *db_fptr, uint32_t length)
2014-05-07 22:27:00 +00:00
{
struct P_msg_store chunk;
2014-05-07 22:27:00 +00:00
struct mosquitto_msg_store *stored = NULL;
struct mosquitto_msg_store_load *load;
int64_t message_expiry_interval64;
uint32_t message_expiry_interval;
int rc = 0;
2019-02-09 13:52:09 +00:00
int i;
2014-05-07 22:27:00 +00:00
memset(&chunk, 0, sizeof(struct P_msg_store));
2019-01-31 21:50:42 +00:00
if(db_version == 5){
rc = persist__chunk_msg_store_read_v5(db_fptr, &chunk, length);
}else{
rc = persist__chunk_msg_store_read_v234(db_fptr, &chunk, db_version);
}
2019-01-31 21:50:42 +00:00
if(rc){
fclose(db_fptr);
2019-01-31 21:50:42 +00:00
return rc;
}
if(chunk.F.source_port){
for(i=0; i<db->config->listener_count; i++){
if(db->config->listeners[i].port == chunk.F.source_port){
chunk.source.listener = &db->config->listeners[i];
break;
2019-01-31 21:50:42 +00:00
}
2014-05-07 22:27:00 +00:00
}
}
load = mosquitto__calloc(1, sizeof(struct mosquitto_msg_store_load));
if(!load){
2019-01-31 21:50:42 +00:00
fclose(db_fptr);
mosquitto__free(chunk.source.id);
mosquitto__free(chunk.source.username);
mosquitto__free(chunk.topic);
UHPA_FREE(chunk.payload, chunk.F.payloadlen);
log__printf(NULL, MOSQ_LOG_ERR, "Error: Out of memory.");
return MOSQ_ERR_NOMEM;
2014-05-07 22:27:00 +00:00
}
2019-01-31 21:50:42 +00:00
if(chunk.F.expiry_time > 0){
message_expiry_interval64 = chunk.F.expiry_time - time(NULL);
2019-03-26 22:20:04 +00:00
if(message_expiry_interval64 < 0 || message_expiry_interval64 > UINT32_MAX){
/* Expired message */
mosquitto__free(chunk.source.id);
mosquitto__free(chunk.source.username);
mosquitto__free(chunk.topic);
UHPA_FREE(chunk.payload, chunk.F.payloadlen);
mosquitto__free(load);
return MOSQ_ERR_SUCCESS;
}else{
message_expiry_interval = (uint32_t)message_expiry_interval64;
}
}else{
message_expiry_interval = 0;
}
rc = db__message_store(db, &chunk.source, chunk.F.source_mid,
chunk.topic, chunk.F.qos, chunk.F.payloadlen,
&chunk.payload, chunk.F.retain, &stored, message_expiry_interval,
chunk.properties, chunk.F.store_id, mosq_mo_client);
2014-05-07 22:27:00 +00:00
mosquitto__free(chunk.source.id);
mosquitto__free(chunk.source.username);
chunk.source.id = NULL;
chunk.source.username = NULL;
if(rc == MOSQ_ERR_SUCCESS){
2019-03-26 14:00:42 +00:00
stored->source_listener = chunk.source.listener;
load->db_id = stored->db_id;
load->store = stored;
HASH_ADD(hh, db->msg_store_load, db_id, sizeof(dbid_t), load);
return MOSQ_ERR_SUCCESS;
}else{
mosquitto__free(load);
fclose(db_fptr);
return rc;
}
2014-05-07 22:27:00 +00:00
}
2015-05-16 14:24:24 +00:00
static int persist__retain_chunk_restore(struct mosquitto_db *db, FILE *db_fptr)
2014-05-07 22:27:00 +00:00
{
struct mosquitto_msg_store_load *load;
struct P_retain chunk;
int rc;
char **split_topics;
char *local_topic;
memset(&chunk, 0, sizeof(struct P_retain));
2014-05-07 22:27:00 +00:00
if(db_version == 5){
rc = persist__chunk_retain_read_v5(db_fptr, &chunk);
}else{
rc = persist__chunk_retain_read_v234(db_fptr, &chunk);
}
if(rc){
2014-05-07 22:27:00 +00:00
fclose(db_fptr);
return rc;
2014-05-07 22:27:00 +00:00
}
HASH_FIND(hh, db->msg_store_load, &chunk.F.store_id, sizeof(dbid_t), load);
if(load){
if(sub__topic_tokenise(load->store->topic, &local_topic, &split_topics, NULL)) return 1;
retain__store(db, load->store->topic, load->store, split_topics);
mosquitto__free(local_topic);
mosquitto__free(split_topics);
}else{
/* Can't find the message - probably expired */
2014-05-07 22:27:00 +00:00
}
return MOSQ_ERR_SUCCESS;
}
2015-05-16 14:24:24 +00:00
static int persist__sub_chunk_restore(struct mosquitto_db *db, FILE *db_fptr)
2014-05-07 22:27:00 +00:00
{
struct P_sub chunk;
int rc;
2014-05-07 22:27:00 +00:00
memset(&chunk, 0, sizeof(struct P_sub));
2014-11-17 21:58:53 +00:00
if(db_version == 5){
rc = persist__chunk_sub_read_v5(db_fptr, &chunk);
}else{
rc = persist__chunk_sub_read_v234(db_fptr, &chunk);
}
2019-01-31 21:50:42 +00:00
if(rc){
fclose(db_fptr);
return rc;
2014-05-07 22:27:00 +00:00
}
2014-11-17 21:58:53 +00:00
rc = persist__restore_sub(db, chunk.client_id, chunk.topic, chunk.F.qos, chunk.F.identifier, chunk.F.options);
mosquitto__free(chunk.client_id);
mosquitto__free(chunk.topic);
2014-05-07 22:27:00 +00:00
return rc;
}
int persist__chunk_header_read(FILE *db_fptr, int *chunk, int *length)
{
if(db_version == 5){
return persist__chunk_header_read_v5(db_fptr, chunk, length);
}else{
return persist__chunk_header_read_v234(db_fptr, chunk, length);
}
}
2015-05-16 14:24:24 +00:00
int persist__restore(struct mosquitto_db *db)
2014-05-07 22:27:00 +00:00
{
FILE *fptr;
char header[15];
int rc = 0;
uint32_t crc;
uint32_t i32temp;
int chunk, length;
2014-05-07 22:27:00 +00:00
ssize_t rlen;
2018-11-07 17:43:21 +00:00
char *err;
struct mosquitto_msg_store_load *load, *load_tmp;
struct PF_cfg cfg_chunk;
2014-05-07 22:27:00 +00:00
assert(db);
assert(db->config);
if(!db->config->persistence || db->config->persistence_filepath == NULL){
return MOSQ_ERR_SUCCESS;
}
2014-05-07 22:27:00 +00:00
db->msg_store_load = NULL;
2017-07-16 21:52:01 +00:00
fptr = mosquitto__fopen(db->config->persistence_filepath, "rb", false);
2014-05-07 22:27:00 +00:00
if(fptr == NULL) return MOSQ_ERR_SUCCESS;
rlen = fread(&header, 1, 15, fptr);
if(rlen == 0){
fclose(fptr);
2017-03-06 21:19:53 +00:00
log__printf(NULL, MOSQ_LOG_WARNING, "Warning: Persistence file is empty.");
return 0;
}else if(rlen != 15){
goto error;
}
2014-05-07 22:27:00 +00:00
if(!memcmp(header, magic, 15)){
// Restore DB as normal
read_e(fptr, &crc, sizeof(uint32_t));
read_e(fptr, &i32temp, sizeof(uint32_t));
db_version = ntohl(i32temp);
/* IMPORTANT - this is where compatibility checks are made.
* Is your DB change still compatible with previous versions?
*/
if(db_version > MOSQ_DB_VERSION && db_version != 0){
if(db_version == 4){
}else if(db_version == 3){
2019-01-31 21:50:42 +00:00
/* Addition of source_username and source_port to msg_store chunk in v4, v1.5.6 */
}else if(db_version == 2){
2014-05-07 22:27:00 +00:00
/* Addition of disconnect_t to client chunk in v3. */
}else{
fclose(fptr);
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_ERR, "Error: Unsupported persistent database format version %d (need version %d).", db_version, MOSQ_DB_VERSION);
2014-05-07 22:27:00 +00:00
return 1;
}
}
while(persist__chunk_header_read(fptr, &chunk, &length) == MOSQ_ERR_SUCCESS){
2014-05-07 22:27:00 +00:00
switch(chunk){
case DB_CHUNK_CFG:
if(db_version == 5){
if(persist__chunk_cfg_read_v5(fptr, &cfg_chunk)){
fclose(fptr);
return 1;
}
}else{
if(persist__chunk_cfg_read_v234(fptr, &cfg_chunk)){
fclose(fptr);
return 1;
}
}
if(cfg_chunk.dbid_size != sizeof(dbid_t)){
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_ERR, "Error: Incompatible database configuration (dbid size is %d bytes, expected %lu)",
cfg_chunk.dbid_size, (unsigned long)sizeof(dbid_t));
2014-05-07 22:27:00 +00:00
fclose(fptr);
return 1;
}
db->last_db_id = cfg_chunk.last_db_id;
2014-05-07 22:27:00 +00:00
break;
case DB_CHUNK_MSG_STORE:
if(persist__msg_store_chunk_restore(db, fptr, length)) return 1;
2014-05-07 22:27:00 +00:00
break;
case DB_CHUNK_CLIENT_MSG:
if(persist__client_msg_chunk_restore(db, fptr, length)) return 1;
2014-05-07 22:27:00 +00:00
break;
case DB_CHUNK_RETAIN:
2015-05-16 14:24:24 +00:00
if(persist__retain_chunk_restore(db, fptr)) return 1;
2014-05-07 22:27:00 +00:00
break;
case DB_CHUNK_SUB:
2015-05-16 14:24:24 +00:00
if(persist__sub_chunk_restore(db, fptr)) return 1;
2014-05-07 22:27:00 +00:00
break;
case DB_CHUNK_CLIENT:
2015-05-16 14:24:24 +00:00
if(persist__client_chunk_restore(db, fptr)) return 1;
2014-05-07 22:27:00 +00:00
break;
default:
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_WARNING, "Warning: Unsupported chunk \"%d\" in persistent database file. Ignoring.", chunk);
2014-05-07 22:27:00 +00:00
fseek(fptr, length, SEEK_CUR);
break;
}
}
if(rlen < 0) goto error;
}else{
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_ERR, "Error: Unable to restore persistent database. Unrecognised file format.");
2014-05-07 22:27:00 +00:00
rc = 1;
}
fclose(fptr);
HASH_ITER(hh, db->msg_store_load, load, load_tmp){
HASH_DELETE(hh, db->msg_store_load, load);
mosquitto__free(load);
}
2014-05-07 22:27:00 +00:00
return rc;
error:
2018-11-07 17:43:21 +00:00
err = strerror(errno);
2015-05-18 07:53:21 +00:00
log__printf(NULL, MOSQ_LOG_ERR, "Error: %s.", err);
2014-05-07 22:27:00 +00:00
if(fptr) fclose(fptr);
return 1;
}
static int persist__restore_sub(struct mosquitto_db *db, const char *client_id, const char *sub, int qos, uint32_t identifier, int options)
2014-05-07 22:27:00 +00:00
{
struct mosquitto *context;
assert(db);
assert(client_id);
assert(sub);
2015-05-16 14:24:24 +00:00
context = persist__find_or_add_context(db, client_id, 0);
2014-05-07 22:27:00 +00:00
if(!context) return 1;
return sub__add(db, context, sub, qos, identifier, options, &db->subs);
2014-05-07 22:27:00 +00:00
}
#endif