aboutsummaryrefslogtreecommitdiff
path: root/server.c
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2020-06-08 01:20:31 +0200
committerToni Uhlig <matzeton@googlemail.com>2020-06-08 01:20:31 +0200
commit6c10fd5e3e563791008a22803a536e7436fee073 (patch)
tree15515ede47c465a29facb2d4be34ebee23ea2711 /server.c
parent2d8bfaab51c2dd42d73c348e238802912e870b22 (diff)
log_bin2hex_sodium cares about logging prio set, fixed missing cleanup on bufferevent failure
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'server.c')
-rw-r--r--server.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/server.c b/server.c
index 86a43e4..f0b7b2e 100644
--- a/server.c
+++ b/server.c
@@ -65,7 +65,7 @@ enum recv_return protocol_request_client_auth(struct connection * const state,
return RECV_FATAL_UNAUTH;
}
- log_bin2hex_sodium("Client AUTH with PublicKey", auth_pkt->client_publickey, sizeof(auth_pkt->client_publickey));
+ log_bin2hex_sodium(NOTICE, "Client AUTH with PublicKey", auth_pkt->client_publickey, sizeof(auth_pkt->client_publickey));
if (init_crypto_server(state, auth_pkt->server_rx_header, sizeof(auth_pkt->server_rx_header)) != 0) {
LOG(ERROR, "Client session keypair generation failed");
return RECV_FATAL;
@@ -104,7 +104,7 @@ enum recv_return protocol_request_data(struct connection * const state,
(void)state;
(void)processed;
LOG(NOTICE, "Received DATA with size: %u", data_pkt->header.body_size);
- log_bin2hex_sodium("DATA", data_pkt->payload, data_pkt->header.body_size);
+ log_bin2hex_sodium(LP_DEBUG, "DATA", data_pkt->payload, data_pkt->header.body_size);
recv_data(data_pkt->payload, data_pkt->header.body_size);
snprintf(response, sizeof(response), "DATA OK: RECEIVED %u BYTES", data_pkt->header.body_size);
if (ev_protocol_data(state, (uint8_t *)response, sizeof(response)) != 0) {
@@ -168,6 +168,7 @@ static void event_cb(struct bufferevent * bev, short events, void * con)
if (events & BEV_EVENT_ERROR) {
LOG(ERROR, "Error from bufferevent: %s", strerror(errno));
+ ev_disconnect(c);
return;
}
if (events & (BEV_EVENT_EOF | BEV_EVENT_ERROR)) {
@@ -327,9 +328,9 @@ int main(int argc, char ** argv)
cleanup_and_exit(&ev_base, &ev_listener, &ev_sig, &my_keypair, 4);
}
if (opts.key_string == NULL) {
- log_bin2hex_sodium("Server PrivateKey", my_keypair->secretkey, sizeof(my_keypair->secretkey));
+ log_bin2hex_sodium(NOTICE, "Server PrivateKey", my_keypair->secretkey, sizeof(my_keypair->secretkey));
}
- log_bin2hex_sodium("Server PublicKey", my_keypair->publickey, sizeof(my_keypair->publickey));
+ log_bin2hex_sodium(NOTICE, "Server PublicKey", my_keypair->publickey, sizeof(my_keypair->publickey));
ev_base = event_base_new();
if (ev_base == NULL) {