handle reading the requested number of bytes, and secio fix
Some transmissions are sent by multiple sends. Loop through until you get them all. NOTE: We'll have to come back to this to handle a timeout. Also, fixed the random handshake issue with the GO version.
This commit is contained in:
parent
6c19984368
commit
a10c7ef5e9
5 changed files with 125 additions and 48 deletions
|
@ -28,6 +28,13 @@ int libp2p_logger_initialized();
|
||||||
|
|
||||||
int libp2p_logger_free();
|
int libp2p_logger_free();
|
||||||
|
|
||||||
|
/***
|
||||||
|
* Checks to see if we're watching for a particular class
|
||||||
|
* @param area the "class" to look for
|
||||||
|
* @returns true(1) if found, false(0) otherwise
|
||||||
|
*/
|
||||||
|
int libp2p_logger_watching_class(const char* area);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Log a message to the console
|
* Log a message to the console
|
||||||
* @param area the class it is coming from
|
* @param area the class it is coming from
|
||||||
|
|
|
@ -47,6 +47,8 @@ int libp2p_net_multistream_write(void* stream_context, const unsigned char* data
|
||||||
varint_encode(data_length, &varint[0], 12, &varint_size);
|
varint_encode(data_length, &varint[0], 12, &varint_size);
|
||||||
// now put the size with the data
|
// now put the size with the data
|
||||||
unsigned char* buffer = (unsigned char*)malloc(data_length + varint_size);
|
unsigned char* buffer = (unsigned char*)malloc(data_length + varint_size);
|
||||||
|
if (buffer == NULL)
|
||||||
|
return 0;
|
||||||
memset(buffer, 0, data_length + varint_size);
|
memset(buffer, 0, data_length + varint_size);
|
||||||
memcpy(buffer, varint, varint_size);
|
memcpy(buffer, varint, varint_size);
|
||||||
memcpy(&buffer[varint_size], data, data_length);
|
memcpy(&buffer[varint_size], data, data_length);
|
||||||
|
@ -54,14 +56,17 @@ int libp2p_net_multistream_write(void* stream_context, const unsigned char* data
|
||||||
if (session_context->secure_stream == NULL) {
|
if (session_context->secure_stream == NULL) {
|
||||||
// do a "raw" write
|
// do a "raw" write
|
||||||
num_bytes = socket_write(*((int*)stream->socket_descriptor), (char*)varint, varint_size, 0);
|
num_bytes = socket_write(*((int*)stream->socket_descriptor), (char*)varint, varint_size, 0);
|
||||||
if (num_bytes == 0)
|
if (num_bytes == 0) {
|
||||||
|
free(buffer);
|
||||||
return 0;
|
return 0;
|
||||||
|
}
|
||||||
// then send the actual data
|
// then send the actual data
|
||||||
num_bytes += socket_write(*((int*)stream->socket_descriptor), (char*)data, data_length, 0);
|
num_bytes += socket_write(*((int*)stream->socket_descriptor), (char*)data, data_length, 0);
|
||||||
} else {
|
} else {
|
||||||
// write using secio
|
// write using secio
|
||||||
num_bytes = stream->write(stream_context, buffer, data_length + varint_size);
|
num_bytes = stream->write(stream_context, buffer, data_length + varint_size);
|
||||||
}
|
}
|
||||||
|
free(buffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
return num_bytes;
|
return num_bytes;
|
||||||
|
@ -128,16 +133,25 @@ int libp2p_net_multistream_read(void* stream_context, unsigned char** results, s
|
||||||
return 0;
|
return 0;
|
||||||
memcpy(*results, buffer, num_bytes_requested);
|
memcpy(*results, buffer, num_bytes_requested);
|
||||||
*results_size = num_bytes_requested;
|
*results_size = num_bytes_requested;
|
||||||
} else { // we should use secio instead of raw read/writes
|
} else { // use secio instead of raw read/writes
|
||||||
|
unsigned char* read_from_stream;
|
||||||
if (session_context->default_stream->read(session_context, (unsigned char**)&pos, &buffer_size, timeout_secs) == 0) {
|
size_t size_read_from_stream;
|
||||||
|
if (session_context->default_stream->read(session_context, &read_from_stream, &size_read_from_stream, timeout_secs) == 0) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
// pull out num_bytes_requested
|
// pull out num_bytes_requested
|
||||||
num_bytes_requested = varint_decode((unsigned char*)pos, strlen(pos), &left);
|
num_bytes_requested = varint_decode(read_from_stream, size_read_from_stream, &left);
|
||||||
if (num_bytes_requested > buffer_size - left) {
|
memcpy(buffer, read_from_stream, size_read_from_stream);
|
||||||
libp2p_logger_error("multistream", "multistream wants to read %lu bytes from buffer of %lu bytes.\n", num_bytes_requested, buffer_size);
|
free(read_from_stream);
|
||||||
return 0;
|
buffer_size = size_read_from_stream;
|
||||||
|
while (num_bytes_requested > buffer_size - left) {
|
||||||
|
// need to read more into buffer
|
||||||
|
if (session_context->default_stream->read(session_context, &read_from_stream, &size_read_from_stream, timeout_secs) == 0) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
memcpy(&buffer[buffer_size], read_from_stream, size_read_from_stream);
|
||||||
|
free(read_from_stream);
|
||||||
|
buffer_size += size_read_from_stream;
|
||||||
}
|
}
|
||||||
*results = malloc(num_bytes_requested);
|
*results = malloc(num_bytes_requested);
|
||||||
*results_size = num_bytes_requested;
|
*results_size = num_bytes_requested;
|
||||||
|
@ -145,7 +159,7 @@ int libp2p_net_multistream_read(void* stream_context, unsigned char** results, s
|
||||||
libp2p_logger_error("multistream", "Unable to allocate %lu bytes of memory.", num_bytes_requested);
|
libp2p_logger_error("multistream", "Unable to allocate %lu bytes of memory.", num_bytes_requested);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
memcpy(*results, &pos[left], num_bytes_requested);
|
memcpy(*results, &buffer[left], num_bytes_requested);
|
||||||
}
|
}
|
||||||
|
|
||||||
return num_bytes_requested;
|
return num_bytes_requested;
|
||||||
|
|
|
@ -63,6 +63,21 @@ int libp2p_secio_generate_nonce(unsigned char* results, int length) {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***
|
||||||
|
* Used for debugging. Turns an incoming byte array into a decimal string
|
||||||
|
* @param incoming the incoming byte array
|
||||||
|
* @param incoming_size the size of the byte array
|
||||||
|
* @returns the string
|
||||||
|
*/
|
||||||
|
char* secio_to_hex(unsigned char* incoming, size_t incoming_size) {
|
||||||
|
static char str[3000];
|
||||||
|
memset(str, 0, 3000);
|
||||||
|
for(int i = 0; i < incoming_size; i++) {
|
||||||
|
sprintf(&str[i * 4], "%03d ", incoming[i]);
|
||||||
|
}
|
||||||
|
return str;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Compute a hash based on a Propose struct
|
* Compute a hash based on a Propose struct
|
||||||
* @param in the struct Propose
|
* @param in the struct Propose
|
||||||
|
@ -71,12 +86,12 @@ int libp2p_secio_generate_nonce(unsigned char* results, int length) {
|
||||||
*/
|
*/
|
||||||
int libp2p_secio_hash(unsigned char* key, size_t key_size, unsigned char* nonce, size_t nonce_size, unsigned char result[32]) {
|
int libp2p_secio_hash(unsigned char* key, size_t key_size, unsigned char* nonce, size_t nonce_size, unsigned char result[32]) {
|
||||||
// append public key and nonce
|
// append public key and nonce
|
||||||
mbedtls_sha256_context ctx;
|
unsigned char* appended = malloc(key_size + nonce_size);
|
||||||
libp2p_crypto_hashing_sha256_init(&ctx);
|
memcpy(appended, key, key_size);
|
||||||
libp2p_crypto_hashing_sha256_update(&ctx, key, key_size);
|
memcpy(&appended[key_size], nonce, nonce_size);
|
||||||
libp2p_crypto_hashing_sha256_update(&ctx, nonce, nonce_size);
|
// hash it
|
||||||
libp2p_crypto_hashing_sha256_finish(&ctx, result);
|
libp2p_crypto_hashing_sha256(appended, key_size+nonce_size, result);
|
||||||
libp2p_crypto_hashing_sha256_free(&ctx);
|
free(appended);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -97,17 +112,36 @@ int libp2p_secio_bytes_compare(const unsigned char* a, const unsigned char* b, i
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Used for debugging keys
|
||||||
|
*/
|
||||||
|
/*
|
||||||
|
int libp2p_secio_log_keys(struct SessionContext* session) {
|
||||||
|
if (libp2p_logger_watching_class("secio")) {
|
||||||
|
libp2p_logger_debug("secio", "Shared: %s\n", secio_to_hex(session->shared_key, session->shared_key_size));
|
||||||
|
libp2p_logger_debug("secio", "k1 IV: %s\n", secio_to_hex(session->local_stretched_key->iv, session->local_stretched_key->iv_size));
|
||||||
|
libp2p_logger_debug("secio", "k1 MAC: %s\n", secio_to_hex(session->local_stretched_key->cipher_key, session->local_stretched_key->cipher_size));
|
||||||
|
libp2p_logger_debug("secio", "k1 CIPHER: %s\n", secio_to_hex(session->local_stretched_key->mac_key, session->local_stretched_key->mac_size));
|
||||||
|
libp2p_logger_debug("secio", "k2 IV: %s\n", secio_to_hex(session->remote_stretched_key->iv, session->remote_stretched_key->iv_size));
|
||||||
|
libp2p_logger_debug("secio", "k2 MAC: %s\n", secio_to_hex(session->remote_stretched_key->cipher_key, session->remote_stretched_key->cipher_size));
|
||||||
|
libp2p_logger_debug("secio", "k2 CIPHER: %s\n", secio_to_hex(session->remote_stretched_key->mac_key, session->remote_stretched_key->mac_size));
|
||||||
|
}
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
/***
|
/***
|
||||||
* Using values in the Propose struct, determine the order that will be used for the MACs
|
* Using values in the Propose struct, determine the order that will be used for the MACs
|
||||||
* @param remote the struct from the remote side
|
* @param remote the struct from the remote side
|
||||||
* @param local the struct from this side
|
* @param local the struct from this side
|
||||||
* @returns -1 or 1 that will be used to determine who is first
|
* @returns -1 or 1 that will be used to determine who is first
|
||||||
*/
|
*/
|
||||||
int libp2p_secio_determine_order(struct Propose*remote, struct Propose* local) {
|
int libp2p_secio_determine_order(struct Propose* remote, struct Propose* local) {
|
||||||
unsigned char hash1[32];
|
unsigned char hash1[32];
|
||||||
unsigned char hash2[32];
|
unsigned char hash2[32];
|
||||||
libp2p_secio_hash(remote->public_key, remote->public_key_size, local->rand, local->rand_size, hash1);
|
libp2p_secio_hash(remote->public_key, remote->public_key_size, local->rand, local->rand_size, hash1);
|
||||||
libp2p_secio_hash(local->public_key, local->public_key_size, remote->rand, remote->rand_size, hash2);
|
libp2p_secio_hash(local->public_key, local->public_key_size, remote->rand, remote->rand_size, hash2);
|
||||||
|
|
||||||
return libp2p_secio_bytes_compare(hash1, hash2, 32);
|
return libp2p_secio_bytes_compare(hash1, hash2, 32);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -252,7 +286,8 @@ int libp2p_secio_sign(struct PrivateKey* private_key, const char* in, size_t in_
|
||||||
* @param k2 one of the resultant keys
|
* @param k2 one of the resultant keys
|
||||||
* @returns true(1) on success, otherwise 0 (false)
|
* @returns true(1) on success, otherwise 0 (false)
|
||||||
*/
|
*/
|
||||||
int libp2p_secio_stretch_keys(char* cipherType, char* hashType, unsigned char* secret, size_t secret_size, struct StretchedKey** k1_ptr, struct StretchedKey** k2_ptr) {
|
int libp2p_secio_stretch_keys(char* cipherType, char* hashType, unsigned char* secret, size_t secret_size,
|
||||||
|
struct StretchedKey** k1_ptr, struct StretchedKey** k2_ptr) {
|
||||||
int retVal = 0, num_filled = 0, hmac_size = 20;
|
int retVal = 0, num_filled = 0, hmac_size = 20;
|
||||||
struct StretchedKey* k1;
|
struct StretchedKey* k1;
|
||||||
struct StretchedKey* k2;
|
struct StretchedKey* k2;
|
||||||
|
@ -649,6 +684,10 @@ int libp2p_secio_decrypt(struct SessionContext* session, const unsigned char* in
|
||||||
if (retVal != 0) {
|
if (retVal != 0) {
|
||||||
// MAC verification failed
|
// MAC verification failed
|
||||||
libp2p_logger_error("secio", "libp2p_secio_decrypt: MAC verification failed.\n");
|
libp2p_logger_error("secio", "libp2p_secio_decrypt: MAC verification failed.\n");
|
||||||
|
// copy the raw bytes into outgoing for further analysis
|
||||||
|
*outgoing = (unsigned char*)malloc(incoming_size);
|
||||||
|
*outgoing_size = incoming_size;
|
||||||
|
memcpy(*outgoing, incoming, incoming_size);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -690,8 +729,9 @@ int libp2p_secio_encrypted_read(void* stream_context, unsigned char** bytes, siz
|
||||||
// read the data
|
// read the data
|
||||||
unsigned char* incoming = NULL;
|
unsigned char* incoming = NULL;
|
||||||
size_t incoming_size = 0;
|
size_t incoming_size = 0;
|
||||||
if (libp2p_secio_unencrypted_read(session, &incoming, &incoming_size, timeout_secs) <= 0)
|
if (libp2p_secio_unencrypted_read(session, &incoming, &incoming_size, timeout_secs) <= 0) {
|
||||||
goto exit;
|
goto exit;
|
||||||
|
}
|
||||||
retVal = libp2p_secio_decrypt(session, incoming, incoming_size, bytes, num_bytes);
|
retVal = libp2p_secio_decrypt(session, incoming, incoming_size, bytes, num_bytes);
|
||||||
exit:
|
exit:
|
||||||
if (incoming != NULL)
|
if (incoming != NULL)
|
||||||
|
@ -928,10 +968,13 @@ int libp2p_secio_handshake(struct SessionContext* local_session, struct RsaPriva
|
||||||
memcpy(local_session->shared_key, local_session->ephemeral_private_key->public_key->shared_key, local_session->shared_key_size);
|
memcpy(local_session->shared_key, local_session->ephemeral_private_key->public_key->shared_key, local_session->shared_key_size);
|
||||||
|
|
||||||
// generate 2 sets of keys (stretching)
|
// generate 2 sets of keys (stretching)
|
||||||
if (!libp2p_secio_stretch_keys(local_session->chosen_cipher, local_session->chosen_hash, local_session->shared_key, local_session->shared_key_size, &k1, &k2))
|
if (!libp2p_secio_stretch_keys(local_session->chosen_cipher, local_session->chosen_hash, local_session->shared_key, local_session->shared_key_size, &k1, &k2)) {
|
||||||
|
libp2p_logger_error("secio", "Unable to stretch keys.\n");
|
||||||
goto exit;
|
goto exit;
|
||||||
|
}
|
||||||
|
|
||||||
if (order > 1) {
|
//libp2p_logger_debug("secio", "Order value is %d.\n", order);
|
||||||
|
if (order > 0) {
|
||||||
local_session->local_stretched_key = k1;
|
local_session->local_stretched_key = k1;
|
||||||
local_session->remote_stretched_key = k2;
|
local_session->remote_stretched_key = k2;
|
||||||
} else {
|
} else {
|
||||||
|
@ -950,6 +993,8 @@ int libp2p_secio_handshake(struct SessionContext* local_session, struct RsaPriva
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// this doesn't do much. It is here to match the GO code and maybe eventually remind us
|
||||||
|
// that there is more work to do for compatibility to GO
|
||||||
libp2p_secio_make_mac_and_cipher(local_session, local_session->local_stretched_key);
|
libp2p_secio_make_mac_and_cipher(local_session, local_session->local_stretched_key);
|
||||||
libp2p_secio_make_mac_and_cipher(local_session, local_session->remote_stretched_key);
|
libp2p_secio_make_mac_and_cipher(local_session, local_session->remote_stretched_key);
|
||||||
|
|
||||||
|
@ -957,7 +1002,7 @@ int libp2p_secio_handshake(struct SessionContext* local_session, struct RsaPriva
|
||||||
|
|
||||||
libp2p_secio_initialize_crypto(local_session);
|
libp2p_secio_initialize_crypto(local_session);
|
||||||
|
|
||||||
// send expected message (their nonce) to verify encryption works
|
// send their nonce to verify encryption works
|
||||||
libp2p_logger_log("secio", LOGLEVEL_DEBUG, "Sending their nonce\n");
|
libp2p_logger_log("secio", LOGLEVEL_DEBUG, "Sending their nonce\n");
|
||||||
if (libp2p_secio_encrypted_write(local_session, (unsigned char*)local_session->remote_nonce, 16) <= 0) {
|
if (libp2p_secio_encrypted_write(local_session, (unsigned char*)local_session->remote_nonce, 16) <= 0) {
|
||||||
libp2p_logger_error("secio", "Encrytped write returned 0 or less.\n");
|
libp2p_logger_error("secio", "Encrytped write returned 0 or less.\n");
|
||||||
|
@ -966,6 +1011,7 @@ int libp2p_secio_handshake(struct SessionContext* local_session, struct RsaPriva
|
||||||
|
|
||||||
// receive our nonce to verify encryption works
|
// receive our nonce to verify encryption works
|
||||||
libp2p_logger_log("secio", LOGLEVEL_DEBUG, "Receiving our nonce\n");
|
libp2p_logger_log("secio", LOGLEVEL_DEBUG, "Receiving our nonce\n");
|
||||||
|
results = NULL;
|
||||||
int bytes_read = libp2p_secio_encrypted_read(local_session, &results, &results_size, 10);
|
int bytes_read = libp2p_secio_encrypted_read(local_session, &results, &results_size, 10);
|
||||||
if (bytes_read <= 0) {
|
if (bytes_read <= 0) {
|
||||||
libp2p_logger_log("secio", LOGLEVEL_DEBUG, "Encrypted read returned %d\n", bytes_read);
|
libp2p_logger_log("secio", LOGLEVEL_DEBUG, "Encrypted read returned %d\n", bytes_read);
|
||||||
|
@ -977,14 +1023,6 @@ int libp2p_secio_handshake(struct SessionContext* local_session, struct RsaPriva
|
||||||
}
|
}
|
||||||
if (libp2p_secio_bytes_compare(results, (unsigned char*)local_session->local_nonce, 16) != 0) {
|
if (libp2p_secio_bytes_compare(results, (unsigned char*)local_session->local_nonce, 16) != 0) {
|
||||||
libp2p_logger_log("secio", LOGLEVEL_DEBUG, "Bytes of nonce did not match\n");
|
libp2p_logger_log("secio", LOGLEVEL_DEBUG, "Bytes of nonce did not match\n");
|
||||||
// Debug JMJ
|
|
||||||
fprintf(stderr, "Expected: ");
|
|
||||||
for(int i = 0; i < 16; i++)
|
|
||||||
fprintf(stderr, "%03d ", local_session->local_nonce[i]);
|
|
||||||
fprintf(stderr, "\nActual : ");
|
|
||||||
for(int i = 0; i < 16; i++)
|
|
||||||
fprintf(stderr, "%03d ", results[i]);
|
|
||||||
fprintf(stderr, "\n");
|
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -81,7 +81,7 @@ int test_secio_handshake() {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!libp2p_secio_handshake(&secure_session, rsa_private_key, 0)) {
|
if (!libp2p_secio_handshake(&secure_session, rsa_private_key, 0)) {
|
||||||
/*
|
fprintf(stderr, "test_secio_handshake: Unable to do handshake\n");
|
||||||
fprintf(stdout, "Shared key: ");
|
fprintf(stdout, "Shared key: ");
|
||||||
for(int i = 0; i < secure_session.shared_key_size; i++)
|
for(int i = 0; i < secure_session.shared_key_size; i++)
|
||||||
fprintf(stdout, "%d ", secure_session.shared_key[i]);
|
fprintf(stdout, "%d ", secure_session.shared_key[i]);
|
||||||
|
@ -90,8 +90,6 @@ int test_secio_handshake() {
|
||||||
fprintf(stdout, "\nRemote stretched key: ");
|
fprintf(stdout, "\nRemote stretched key: ");
|
||||||
print_stretched_key(secure_session.remote_stretched_key);
|
print_stretched_key(secure_session.remote_stretched_key);
|
||||||
fprintf(stdout, "\n");
|
fprintf(stdout, "\n");
|
||||||
*/
|
|
||||||
fprintf(stderr, "test_secio_handshake: Unable to do handshake\n");
|
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -112,6 +110,26 @@ int test_secio_handshake() {
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// now attempt an "ls"
|
||||||
|
if (libp2p_net_multistream_write(&secure_session, "ls\n", 3) == 0) {
|
||||||
|
fprintf(stdout, "Unable to send ls to multistream\n");
|
||||||
|
goto exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
// retrieve the response
|
||||||
|
unsigned char* results;
|
||||||
|
size_t results_size;
|
||||||
|
if (libp2p_net_multistream_read(&secure_session, &results, &results_size, 30) == 0) {
|
||||||
|
fprintf(stdout, "Unable to read ls results from multistream\n");
|
||||||
|
free(results);
|
||||||
|
goto exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
fprintf(stdout, "Results of ls: %.*s", (int)results_size, results);
|
||||||
|
|
||||||
|
free(results);
|
||||||
|
results = NULL;
|
||||||
|
|
||||||
retVal = 1;
|
retVal = 1;
|
||||||
exit:
|
exit:
|
||||||
if (secure_session.insecure_stream != NULL)
|
if (secure_session.insecure_stream != NULL)
|
||||||
|
|
|
@ -50,6 +50,19 @@ void libp2p_logger_add_class(const char* str) {
|
||||||
libp2p_utils_vector_add(logger_classes, ptr);
|
libp2p_utils_vector_add(logger_classes, ptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determines if this "class" is to be logged
|
||||||
|
* @param str the "class" to check
|
||||||
|
* @returns true(1) if found, false(0) otherwise
|
||||||
|
*/
|
||||||
|
int libp2p_logger_watching_class(const char* str) {
|
||||||
|
for(int i = 0; i < logger_classes->total; i++) {
|
||||||
|
if (strcmp(libp2p_utils_vector_get(logger_classes, i), str) == 0)
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Log a message to the console
|
* Log a message to the console
|
||||||
* @param area the class it is coming from
|
* @param area the class it is coming from
|
||||||
|
@ -61,14 +74,7 @@ void libp2p_logger_log(const char* area, int log_level, const char* format, ...)
|
||||||
if (!libp2p_logger_initialized())
|
if (!libp2p_logger_initialized())
|
||||||
libp2p_logger_init();
|
libp2p_logger_init();
|
||||||
if (log_level <= CURRENT_LOGLEVEL) {
|
if (log_level <= CURRENT_LOGLEVEL) {
|
||||||
int found = 0;
|
if (libp2p_logger_watching_class(area)) {
|
||||||
for (int i = 0; i < logger_classes->total; i++) {
|
|
||||||
if (strcmp(libp2p_utils_vector_get(logger_classes, i), area) == 0) {
|
|
||||||
found = 1;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (found) {
|
|
||||||
va_list argptr;
|
va_list argptr;
|
||||||
va_start(argptr, format);
|
va_start(argptr, format);
|
||||||
vfprintf(stderr, format, argptr);
|
vfprintf(stderr, format, argptr);
|
||||||
|
@ -93,14 +99,8 @@ void libp2p_logger_vlog(const char* area, int log_level, const char* format, va_
|
||||||
// error should always be printed for now. We need to think about this more...
|
// error should always be printed for now. We need to think about this more...
|
||||||
if (log_level <= LOGLEVEL_ERROR )
|
if (log_level <= LOGLEVEL_ERROR )
|
||||||
found = 1;
|
found = 1;
|
||||||
else {
|
else
|
||||||
for (int i = 0; i < logger_classes->total; i++) {
|
found = libp2p_logger_watching_class(area);
|
||||||
if (strcmp(libp2p_utils_vector_get(logger_classes, i), area) == 0) {
|
|
||||||
found = 1;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (found) {
|
if (found) {
|
||||||
vfprintf(stderr, format, argptr);
|
vfprintf(stderr, format, argptr);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue