2016-11-17 20:07:59 +00:00
|
|
|
/***
|
|
|
|
* Here are the wrappers for the lightning database
|
2016-12-14 17:07:43 +00:00
|
|
|
* NOTE: In this implementation, the database will contain the base32 encoded value
|
|
|
|
* of the multihash key if the file exists on disk.
|
2016-11-17 20:07:59 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
2016-11-30 16:46:41 +00:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
2017-08-21 19:49:21 +00:00
|
|
|
#include <time.h>
|
2016-11-17 20:07:59 +00:00
|
|
|
|
|
|
|
#include "lmdb.h"
|
2017-08-21 19:49:21 +00:00
|
|
|
#include "libp2p/utils/logger.h"
|
2017-08-31 11:41:54 +00:00
|
|
|
#include "libp2p/crypto/encoding/base58.h"
|
2017-08-24 18:30:44 +00:00
|
|
|
#include "libp2p/os/utils.h"
|
2017-08-28 15:55:44 +00:00
|
|
|
#include "libp2p/db/datastore.h"
|
2016-11-17 20:07:59 +00:00
|
|
|
#include "ipfs/repo/fsrepo/lmdb_datastore.h"
|
2017-08-24 15:08:27 +00:00
|
|
|
#include "ipfs/repo/fsrepo/journalstore.h"
|
2017-08-28 15:55:44 +00:00
|
|
|
#include "libp2p/db/datastore.h"
|
2017-08-21 19:49:21 +00:00
|
|
|
#include "varint.h"
|
2016-11-17 20:07:59 +00:00
|
|
|
|
2017-08-21 19:49:21 +00:00
|
|
|
/**
|
|
|
|
* Build a "value" section for a datastore record
|
2017-08-28 15:55:44 +00:00
|
|
|
* @param record the data
|
|
|
|
* @param result the data (usually a base32 of the cid hash) + the timestamp as varint
|
2017-08-21 19:49:21 +00:00
|
|
|
* @param result_size the size of the result
|
|
|
|
* @returns true(1) on success, otherwise 0
|
|
|
|
*/
|
2017-08-28 15:55:44 +00:00
|
|
|
int repo_fsrepo_lmdb_encode_record(struct DatastoreRecord* record, uint8_t **result, size_t *result_size) {
|
2017-08-21 19:49:21 +00:00
|
|
|
// turn timestamp into varint
|
|
|
|
uint8_t ts_varint[8];
|
|
|
|
size_t num_bytes;
|
2017-08-28 15:55:44 +00:00
|
|
|
if (varint_encode(record->timestamp, &ts_varint[0], 8, &num_bytes) == NULL) {
|
2017-08-21 19:49:21 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
// make new structure
|
2017-08-28 15:55:44 +00:00
|
|
|
*result = (uint8_t *) malloc(num_bytes + record->value_size);
|
2017-08-21 19:49:21 +00:00
|
|
|
if (*result == NULL) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
memcpy(*result, ts_varint, num_bytes);
|
2017-08-28 15:55:44 +00:00
|
|
|
memcpy(&(*result)[num_bytes], record->value, record->value_size);
|
|
|
|
*result_size = record->value_size + num_bytes;
|
2017-08-21 19:49:21 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-08-28 15:55:44 +00:00
|
|
|
* turn lmdb components into a DatastoreRecord structure
|
|
|
|
* @param key the key that we searched for in the database
|
|
|
|
* @param value the result of the search
|
|
|
|
* @param record the complete structure
|
2017-08-21 19:49:21 +00:00
|
|
|
* @returns true(1) on success, false(0) otherwise
|
|
|
|
*/
|
2017-08-28 15:55:44 +00:00
|
|
|
int repo_fsrepo_lmdb_build_record(MDB_val *key, MDB_val *value, struct DatastoreRecord** record) {
|
|
|
|
*record = libp2p_datastore_record_new();
|
|
|
|
if (*record != NULL) {
|
|
|
|
size_t varint_size = 0;
|
|
|
|
struct DatastoreRecord *rec = *record;
|
|
|
|
// set key
|
|
|
|
rec->key_size = key->mv_size;
|
|
|
|
rec->key = (uint8_t *) malloc(rec->key_size);
|
|
|
|
if (rec->key == NULL) {
|
|
|
|
libp2p_datastore_record_free(*record);
|
|
|
|
*record = NULL;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
memcpy(rec->key, key->mv_data, key->mv_size);
|
|
|
|
// set value
|
|
|
|
rec->timestamp = varint_decode(value->mv_data, value->mv_size, &varint_size);
|
|
|
|
rec->value_size = value->mv_size - varint_size;
|
|
|
|
rec->value = (uint8_t *) malloc(rec->value_size);
|
|
|
|
if (rec->value == NULL) {
|
|
|
|
libp2p_datastore_record_free(*record);
|
|
|
|
*record = NULL;
|
|
|
|
return 0;
|
|
|
|
}
|
2017-08-31 21:41:10 +00:00
|
|
|
uint8_t *val = (uint8_t*) value->mv_data;
|
|
|
|
memcpy(rec->value, &val[varint_size], rec->value_size);
|
2017-08-28 15:55:44 +00:00
|
|
|
}
|
2017-08-31 11:41:54 +00:00
|
|
|
return 1;
|
2017-08-21 19:49:21 +00:00
|
|
|
}
|
2017-03-24 19:29:00 +00:00
|
|
|
|
2016-12-05 22:23:58 +00:00
|
|
|
/***
|
|
|
|
* retrieve a record from the database and put in a pre-sized buffer
|
|
|
|
* @param key the key to look for
|
|
|
|
* @param key_size the length of the key
|
2017-08-28 15:55:44 +00:00
|
|
|
* @param record where to put the results
|
2016-12-05 22:23:58 +00:00
|
|
|
* @param datastore where to look for the data
|
|
|
|
* @returns true(1) on success
|
|
|
|
*/
|
2017-08-28 15:55:44 +00:00
|
|
|
int repo_fsrepo_lmdb_get(const unsigned char* key, size_t key_size, struct DatastoreRecord **record, const struct Datastore* datastore) {
|
2016-12-05 22:23:58 +00:00
|
|
|
MDB_txn* mdb_txn;
|
|
|
|
MDB_dbi mdb_dbi;
|
|
|
|
struct MDB_val db_key;
|
|
|
|
struct MDB_val db_value;
|
|
|
|
|
|
|
|
MDB_env* mdb_env = (MDB_env*)datastore->handle;
|
|
|
|
if (mdb_env == NULL)
|
|
|
|
return 0;
|
|
|
|
|
2017-08-31 11:41:54 +00:00
|
|
|
// debug
|
|
|
|
size_t b58size = 100;
|
|
|
|
uint8_t *b58key = (uint8_t *) malloc(b58size);
|
|
|
|
libp2p_crypto_encoding_base58_encode(key, key_size, &b58key, &b58size);
|
|
|
|
libp2p_logger_debug("lmdb_datastore", "Looking for key %s in datastore.\n", b58key);
|
|
|
|
free(b58key);
|
|
|
|
|
2016-12-05 22:23:58 +00:00
|
|
|
// open transaction
|
2017-08-21 19:49:21 +00:00
|
|
|
if (mdb_txn_begin(mdb_env, NULL, 0, &mdb_txn) != 0)
|
2016-12-05 22:23:58 +00:00
|
|
|
return 0;
|
2017-08-21 19:49:21 +00:00
|
|
|
|
2017-08-30 16:10:14 +00:00
|
|
|
if (mdb_dbi_open(mdb_txn, "DATASTORE", MDB_DUPSORT | MDB_CREATE, &mdb_dbi) != 0) {
|
2016-12-05 22:23:58 +00:00
|
|
|
mdb_txn_commit(mdb_txn);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// prepare data
|
|
|
|
db_key.mv_size = key_size;
|
|
|
|
db_key.mv_data = (char*)key;
|
|
|
|
|
2017-08-21 19:49:21 +00:00
|
|
|
if (mdb_get(mdb_txn, mdb_dbi, &db_key, &db_value) != 0) {
|
|
|
|
mdb_txn_commit(mdb_txn);
|
|
|
|
return 0;
|
|
|
|
}
|
2016-12-15 17:38:08 +00:00
|
|
|
|
2017-08-28 15:55:44 +00:00
|
|
|
if (!repo_fsrepo_lmdb_build_record(&db_key, &db_value, record)) {
|
2016-12-05 22:23:58 +00:00
|
|
|
mdb_txn_commit(mdb_txn);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// clean up
|
|
|
|
mdb_txn_commit(mdb_txn);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-11-30 16:46:41 +00:00
|
|
|
/**
|
2016-12-05 22:23:58 +00:00
|
|
|
* Write data to the datastore with the specified key
|
2016-11-30 16:46:41 +00:00
|
|
|
* @param key the key
|
2016-12-05 22:23:58 +00:00
|
|
|
* @param key_size the length of the key
|
|
|
|
* @param data the data to be written
|
|
|
|
* @param data_size the length of the data to be written
|
|
|
|
* @param datastore the datastore to write to
|
2016-11-30 16:46:41 +00:00
|
|
|
* @returns true(1) on success
|
|
|
|
*/
|
2016-12-05 22:23:58 +00:00
|
|
|
int repo_fsrepo_lmdb_put(unsigned const char* key, size_t key_size, unsigned char* data, size_t data_size, const struct Datastore* datastore) {
|
2016-11-30 16:46:41 +00:00
|
|
|
int retVal;
|
|
|
|
MDB_txn* mdb_txn;
|
|
|
|
MDB_dbi mdb_dbi;
|
|
|
|
struct MDB_val db_key;
|
|
|
|
struct MDB_val db_value;
|
|
|
|
|
|
|
|
MDB_env* mdb_env = (MDB_env*)datastore->handle;
|
|
|
|
if (mdb_env == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
// open transaction
|
|
|
|
retVal = mdb_txn_begin(mdb_env, NULL, 0, &mdb_txn);
|
|
|
|
if (retVal != 0)
|
|
|
|
return 0;
|
2017-08-30 16:10:14 +00:00
|
|
|
retVal = mdb_dbi_open(mdb_txn, "DATASTORE", MDB_DUPSORT | MDB_CREATE, &mdb_dbi);
|
2016-11-30 16:46:41 +00:00
|
|
|
if (retVal != 0)
|
|
|
|
return 0;
|
|
|
|
|
2017-08-21 19:49:21 +00:00
|
|
|
// add the timestamp
|
2017-08-24 18:30:44 +00:00
|
|
|
unsigned long long timestamp = os_utils_gmtime();
|
2017-08-28 15:55:44 +00:00
|
|
|
struct DatastoreRecord *datastore_record = libp2p_datastore_record_new();
|
|
|
|
size_t record_size = 0;
|
2017-08-21 19:49:21 +00:00
|
|
|
uint8_t *record;
|
2017-08-28 15:55:44 +00:00
|
|
|
repo_fsrepo_lmdb_encode_record(datastore_record, &record, &record_size);
|
2017-08-21 19:49:21 +00:00
|
|
|
|
2016-12-05 19:34:10 +00:00
|
|
|
// prepare data
|
2016-12-01 18:08:30 +00:00
|
|
|
db_key.mv_size = key_size;
|
2016-11-30 16:46:41 +00:00
|
|
|
db_key.mv_data = (char*)key;
|
2016-12-05 19:34:10 +00:00
|
|
|
|
|
|
|
// write
|
2017-08-21 19:49:21 +00:00
|
|
|
db_value.mv_size = record_size;
|
|
|
|
db_value.mv_data = record;
|
|
|
|
|
2016-12-05 19:34:10 +00:00
|
|
|
retVal = mdb_put(mdb_txn, mdb_dbi, &db_key, &db_value, MDB_NODUPDATA | MDB_NOOVERWRITE);
|
2017-08-21 19:49:21 +00:00
|
|
|
if (retVal == 0) {
|
|
|
|
// the normal case
|
2017-09-04 18:33:56 +00:00
|
|
|
// add it to the journalstore
|
|
|
|
struct JournalRecord* rec = lmdb_journal_record_new();
|
|
|
|
rec->hash = (uint8_t*)key;
|
|
|
|
rec->hash_size = key_size;
|
|
|
|
rec->timestamp = timestamp;
|
|
|
|
rec->pending = 1;
|
|
|
|
rec->pin = 1;
|
|
|
|
lmdb_journalstore_journal_add(mdb_txn, rec);
|
|
|
|
lmdb_journal_record_free(rec);
|
2016-12-05 19:34:10 +00:00
|
|
|
retVal = 1;
|
2017-08-21 19:49:21 +00:00
|
|
|
} else {
|
2016-12-05 19:34:10 +00:00
|
|
|
if (retVal == MDB_KEYEXIST) // We tried to add a key that already exists. Skip.
|
|
|
|
retVal = 1;
|
2017-08-31 11:41:54 +00:00
|
|
|
else {
|
|
|
|
libp2p_logger_error("lmdb_datastore", "mdb_put returned %d.\n", retVal);
|
2016-12-05 19:34:10 +00:00
|
|
|
retVal = 0;
|
2017-08-31 11:41:54 +00:00
|
|
|
}
|
2016-12-05 19:34:10 +00:00
|
|
|
}
|
2016-11-30 16:46:41 +00:00
|
|
|
|
|
|
|
// cleanup
|
2017-08-21 19:49:21 +00:00
|
|
|
free(record);
|
2016-11-30 16:46:41 +00:00
|
|
|
mdb_txn_commit(mdb_txn);
|
2016-12-05 19:34:10 +00:00
|
|
|
return retVal;
|
2016-11-30 16:46:41 +00:00
|
|
|
}
|
|
|
|
|
2016-11-17 20:07:59 +00:00
|
|
|
/**
|
|
|
|
* Open an lmdb database with the given parameters.
|
|
|
|
* Note: for now, the parameters are not used
|
|
|
|
* @param argc number of parameters in the following array
|
|
|
|
* @param argv an array of parameters
|
|
|
|
*/
|
|
|
|
int repo_fsrepro_lmdb_open(int argc, char** argv, struct Datastore* datastore) {
|
|
|
|
// create environment
|
|
|
|
struct MDB_env* mdb_env;
|
2017-08-21 19:49:21 +00:00
|
|
|
if (mdb_env_create(&mdb_env) < 0) {
|
|
|
|
mdb_env_close(mdb_env);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// at most, 2 databases will be opened. The datastore and the journal.
|
|
|
|
MDB_dbi dbs = 2;
|
|
|
|
if (mdb_env_set_maxdbs(mdb_env, dbs) != 0) {
|
2016-11-17 20:07:59 +00:00
|
|
|
mdb_env_close(mdb_env);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// open the environment
|
2017-08-21 19:49:21 +00:00
|
|
|
if (mdb_env_open(mdb_env, datastore->path, 0, S_IRWXU) < 0) {
|
2016-11-17 20:07:59 +00:00
|
|
|
mdb_env_close(mdb_env);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
datastore->handle = (void*)mdb_env;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***
|
|
|
|
* Close an LMDB database
|
|
|
|
* NOTE: for now, argc and argv are not used
|
|
|
|
* @param argc number of parameters in the argv array
|
|
|
|
* @param argv parameters to be passed in
|
|
|
|
* @param datastore the datastore struct that contains information about the opened database
|
|
|
|
*/
|
2016-12-01 18:08:30 +00:00
|
|
|
int repo_fsrepo_lmdb_close(struct Datastore* datastore) {
|
2016-11-17 20:07:59 +00:00
|
|
|
struct MDB_env* mdb_env = (struct MDB_env*)datastore->handle;
|
|
|
|
mdb_env_close(mdb_env);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-08-21 19:49:21 +00:00
|
|
|
/***
|
|
|
|
* Create a new cursor on the datastore database
|
|
|
|
* @param datastore the place to store the cursor
|
|
|
|
* @returns true(1) on success, false(0) otherwise
|
|
|
|
*/
|
2017-03-24 19:29:00 +00:00
|
|
|
int repo_fsrepo_lmdb_cursor_open(struct Datastore* datastore) {
|
|
|
|
if (datastore->handle != NULL) {
|
|
|
|
MDB_env* mdb_env = (MDB_env*)datastore->handle;
|
|
|
|
MDB_dbi mdb_dbi;
|
|
|
|
if (datastore->cursor == NULL ) {
|
|
|
|
datastore->cursor = malloc(sizeof(struct lmdb_trans_cursor));
|
|
|
|
struct lmdb_trans_cursor* cursor = (struct lmdb_trans_cursor*)datastore->cursor;
|
|
|
|
// open transaction
|
|
|
|
if (mdb_txn_begin(mdb_env, NULL, 0, &cursor->transaction) != 0)
|
|
|
|
return 0;
|
|
|
|
MDB_txn* mdb_txn = (MDB_txn*)cursor->transaction;
|
2017-08-30 16:10:14 +00:00
|
|
|
if (mdb_dbi_open(mdb_txn, "DATASTORE", MDB_DUPSORT | MDB_CREATE, &mdb_dbi) != 0) {
|
2017-03-24 19:29:00 +00:00
|
|
|
mdb_txn_commit(mdb_txn);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
// open cursor
|
|
|
|
if (mdb_cursor_open(mdb_txn, mdb_dbi, &cursor->cursor) != 0) {
|
|
|
|
mdb_txn_commit(mdb_txn);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-08-21 19:49:21 +00:00
|
|
|
/***
|
|
|
|
* Get a record using a cursor
|
|
|
|
* @param key the key from the record
|
|
|
|
* @param key_length the length of the key
|
|
|
|
* @param value the value of the record
|
|
|
|
* @param value_length the length of the value
|
|
|
|
* @param CURSOR_FIRST or CURSOR_NEXT
|
|
|
|
* @param datastore holds the reference to the opened cursor
|
|
|
|
* @returns true(1) on success, false(0) otherwise
|
|
|
|
*/
|
2017-03-24 19:29:00 +00:00
|
|
|
int repo_fsrepo_lmdb_cursor_get(unsigned char** key, int* key_length,
|
|
|
|
unsigned char** value, int* value_length,
|
|
|
|
enum DatastoreCursorOp op, struct Datastore* datastore)
|
|
|
|
{
|
|
|
|
if (datastore->cursor != NULL) {
|
|
|
|
struct lmdb_trans_cursor* tc = (struct lmdb_trans_cursor*)datastore->cursor;
|
|
|
|
MDB_val mdb_key;
|
|
|
|
MDB_val mdb_value;
|
|
|
|
MDB_cursor_op co = MDB_FIRST;
|
|
|
|
if (op == CURSOR_FIRST)
|
|
|
|
co = MDB_FIRST;
|
|
|
|
else if (op == CURSOR_NEXT)
|
|
|
|
co = MDB_NEXT;
|
|
|
|
if (mdb_cursor_get(tc->cursor, &mdb_key, &mdb_value, co) != 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
*key = (unsigned char*)malloc(mdb_key.mv_size);
|
|
|
|
memcpy(*key, mdb_key.mv_data, mdb_key.mv_size);
|
|
|
|
*key_length = mdb_key.mv_size;
|
|
|
|
if (value != NULL) { // don't do this if a null is passed in, time saver
|
|
|
|
*value = (unsigned char*)malloc(mdb_value.mv_size);
|
|
|
|
memcpy(*value, mdb_value.mv_data, mdb_value.mv_size);
|
|
|
|
*value_length = mdb_value.mv_size;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Close an existing cursor
|
|
|
|
* @param datastore the context
|
|
|
|
* @returns true(1) on success
|
|
|
|
*/
|
|
|
|
int repo_fsrepo_lmdb_cursor_close(struct Datastore* datastore) {
|
|
|
|
if (datastore->cursor != NULL) {
|
|
|
|
struct lmdb_trans_cursor* cursor = (struct lmdb_trans_cursor*)datastore->cursor;
|
|
|
|
if (cursor->cursor != NULL) {
|
|
|
|
mdb_cursor_close(cursor->cursor);
|
|
|
|
mdb_txn_commit(cursor->transaction);
|
|
|
|
free(cursor);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
free(cursor);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-11-17 20:07:59 +00:00
|
|
|
/***
|
|
|
|
* Places the LMDB methods into the datastore's function pointers
|
|
|
|
* @param datastore the datastore to fill
|
|
|
|
* @returns true(1) on success;
|
|
|
|
*/
|
|
|
|
int repo_fsrepo_lmdb_cast(struct Datastore* datastore) {
|
|
|
|
datastore->datastore_open = &repo_fsrepro_lmdb_open;
|
|
|
|
datastore->datastore_close = &repo_fsrepo_lmdb_close;
|
2016-11-30 16:46:41 +00:00
|
|
|
datastore->datastore_put = &repo_fsrepo_lmdb_put;
|
2016-12-05 22:23:58 +00:00
|
|
|
datastore->datastore_get = &repo_fsrepo_lmdb_get;
|
2017-03-24 19:29:00 +00:00
|
|
|
datastore->datastore_cursor_open = &repo_fsrepo_lmdb_cursor_open;
|
|
|
|
datastore->datastore_cursor_get = &repo_fsrepo_lmdb_cursor_get;
|
|
|
|
datastore->datastore_cursor_close = &repo_fsrepo_lmdb_cursor_close;
|
|
|
|
datastore->cursor = NULL;
|
2016-11-17 20:07:59 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-11-30 16:46:41 +00:00
|
|
|
/***
|
|
|
|
* Creates the directory
|
|
|
|
* @param datastore contains the path that needs to be created
|
|
|
|
* @returns true(1) on success
|
|
|
|
*/
|
|
|
|
int repo_fsrepo_lmdb_create_directory(struct Datastore* datastore) {
|
2017-01-12 21:45:44 +00:00
|
|
|
#ifdef __MINGW32__
|
|
|
|
return mkdir(datastore->path) == 0;
|
|
|
|
#else
|
2016-11-30 16:46:41 +00:00
|
|
|
return mkdir(datastore->path, S_IRWXU) == 0;
|
2017-01-12 21:45:44 +00:00
|
|
|
#endif
|
2016-11-30 16:46:41 +00:00
|
|
|
}
|
|
|
|
|