2024-04-30 18:17:17 +02:00
|
|
|
#include "packet.h"
|
2024-09-16 14:11:01 +02:00
|
|
|
#include "key.h"
|
|
|
|
#include "util.h"
|
2024-04-30 18:17:17 +02:00
|
|
|
|
|
|
|
/*
|
2024-09-18 09:38:44 +02:00
|
|
|
* Requires manually free packet data
|
2024-09-16 14:11:01 +02:00
|
|
|
* pkt: packet to fill data in (must be created via create_packet)
|
|
|
|
* fd: file descriptor to read data from
|
|
|
|
* required_type: Required packet type to receive, set 0 to not check
|
2024-04-30 18:17:17 +02:00
|
|
|
*/
|
2024-09-18 09:38:44 +02:00
|
|
|
int recv_packet(packet_t *pkt, int fd, uint8_t required_type)
|
2024-04-30 18:17:17 +02:00
|
|
|
{
|
|
|
|
int status = ZSM_STA_SUCCESS;
|
2024-09-20 18:06:03 +02:00
|
|
|
size_t bytes_read = 0;
|
2024-04-30 18:17:17 +02:00
|
|
|
|
2024-09-20 18:06:03 +02:00
|
|
|
/* Buffer to store header (status, type, length) */
|
|
|
|
size_t header_len = sizeof(pkt->status) + sizeof(pkt->type) + sizeof(pkt->length);
|
|
|
|
uint8_t header[header_len];
|
|
|
|
|
|
|
|
/* Read the entire packet header in one system call */
|
|
|
|
if ((bytes_read = recv(fd, header, header_len, 0)) != header_len) {
|
|
|
|
status = (bytes_read == 0) ? ZSM_STA_CLOSED_CONNECTION : ZSM_STA_READING_SOCKET;
|
|
|
|
error(0, "Error reading packet header from socket, bytes_read(%d)!=header_len(%d), status => %d",
|
|
|
|
bytes_read, header_len, status);
|
|
|
|
return status;
|
2024-04-30 18:17:17 +02:00
|
|
|
}
|
|
|
|
|
2024-09-20 18:06:03 +02:00
|
|
|
/* Unpack the header */
|
|
|
|
memcpy(&pkt->status, &header[0], sizeof(pkt->status));
|
|
|
|
memcpy(&pkt->type, &header[sizeof(pkt->status)], sizeof(pkt->type));
|
|
|
|
memcpy(&pkt->length, &header[sizeof(pkt->status) + sizeof(pkt->type)], sizeof(pkt->length));
|
|
|
|
|
2024-04-30 18:17:17 +02:00
|
|
|
#if DEBUG == 1
|
2024-09-20 18:06:03 +02:00
|
|
|
printf("==========PACKET RECEIVED========\n");
|
|
|
|
printf("Status: %d\n", pkt->status);
|
2024-09-16 14:11:01 +02:00
|
|
|
printf("Type: %d\n", pkt->type);
|
2024-09-20 18:06:03 +02:00
|
|
|
printf("Length: %d\n", pkt->length);
|
2024-04-30 18:17:17 +02:00
|
|
|
#endif
|
|
|
|
|
2024-09-20 18:06:03 +02:00
|
|
|
/* Validate the packet type and length */
|
|
|
|
if (pkt->type > 0xFF || pkt->type < 0x0 || pkt->type != required_type) {
|
2024-09-16 14:11:01 +02:00
|
|
|
status = ZSM_STA_INVALID_TYPE;
|
2024-09-20 18:06:03 +02:00
|
|
|
error(0, "Invalid packet type: %d", pkt->type);
|
2024-09-16 14:11:01 +02:00
|
|
|
goto failure;
|
|
|
|
}
|
|
|
|
|
2024-09-18 09:38:44 +02:00
|
|
|
if (pkt->length > MAX_DATA_LENGTH) {
|
2024-04-30 18:17:17 +02:00
|
|
|
status = ZSM_STA_TOO_LONG;
|
2024-09-18 09:38:44 +02:00
|
|
|
error(0, "Data too long: %d", pkt->length);
|
2024-04-30 18:17:17 +02:00
|
|
|
goto failure;
|
|
|
|
}
|
|
|
|
|
2024-09-16 14:11:01 +02:00
|
|
|
/* If packet's length is 0, ignore its data and signature as it is information from server */
|
|
|
|
if (pkt->type != ZSM_TYP_INFO && pkt->length > 0) {
|
2024-09-20 18:06:03 +02:00
|
|
|
pkt->data = memalloc(pkt->length + 1);
|
|
|
|
pkt->signature = memalloc(SIGN_SIZE);
|
2024-04-30 18:17:17 +02:00
|
|
|
|
2024-09-20 18:06:03 +02:00
|
|
|
if (!pkt->data || !pkt->signature) {
|
2024-09-16 14:11:01 +02:00
|
|
|
status = ZSM_STA_MEMORY_ALLOCATION;
|
|
|
|
goto failure;
|
|
|
|
}
|
2024-09-20 18:06:03 +02:00
|
|
|
|
|
|
|
size_t payload_len = pkt->length + SIGN_SIZE;
|
|
|
|
uint8_t payload[payload_len];
|
2024-09-16 14:11:01 +02:00
|
|
|
|
2024-09-20 18:06:03 +02:00
|
|
|
/* Read data and signature from the socket in one sys call */
|
|
|
|
if ((bytes_read = recv(fd, payload, payload_len, 0)) != payload_len) {
|
|
|
|
status = (bytes_read == 0) ? ZSM_STA_CLOSED_CONNECTION : ZSM_STA_READING_SOCKET;
|
|
|
|
error(0, "Error reading from socket, status => %d", status);
|
2024-09-16 14:11:01 +02:00
|
|
|
free(pkt->data);
|
2024-09-20 18:06:03 +02:00
|
|
|
free(pkt->signature);
|
2024-09-16 14:11:01 +02:00
|
|
|
goto failure;
|
|
|
|
}
|
2024-09-20 18:06:03 +02:00
|
|
|
|
|
|
|
/* Unpack paylaod */
|
|
|
|
memcpy(pkt->data, payload, pkt->length);
|
|
|
|
memcpy(pkt->signature, payload + pkt->length, SIGN_SIZE);
|
|
|
|
/* Null terminate data so it can be print */
|
|
|
|
pkt->data[pkt->length] = '\0';
|
2024-09-16 14:11:01 +02:00
|
|
|
|
|
|
|
#if DEBUG == 1
|
2024-09-20 18:06:03 +02:00
|
|
|
printf("Data:\n");
|
|
|
|
print_bin(pkt->data, pkt->length);
|
|
|
|
printf("Signature:\n");
|
|
|
|
print_bin(pkt->signature, SIGN_SIZE);
|
|
|
|
#endif
|
2024-09-16 14:11:01 +02:00
|
|
|
}
|
|
|
|
#if DEBUG == 1
|
2024-09-20 18:06:03 +02:00
|
|
|
printf("==========END RECEIVING==========\n");
|
2024-04-30 18:17:17 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return status;
|
2024-09-16 14:11:01 +02:00
|
|
|
|
2024-04-30 18:17:17 +02:00
|
|
|
failure:;
|
2024-09-18 09:38:44 +02:00
|
|
|
packet_t *error_pkt = create_packet(status, ZSM_TYP_ERROR, 0, NULL,
|
2024-09-16 14:11:01 +02:00
|
|
|
create_signature(NULL, 0, NULL));
|
|
|
|
|
|
|
|
if (send_packet(error_pkt, fd) != ZSM_STA_SUCCESS) {
|
2024-04-30 18:17:17 +02:00
|
|
|
/* Resend it? */
|
2024-09-16 14:11:01 +02:00
|
|
|
error(0, "Failed to send error packet. Error status => %d", status);
|
2024-04-30 18:17:17 +02:00
|
|
|
}
|
2024-09-16 14:11:01 +02:00
|
|
|
free_packet(error_pkt);
|
2024-04-30 18:17:17 +02:00
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2024-09-16 14:11:01 +02:00
|
|
|
/*
|
|
|
|
* Creates a packet for receive or send
|
|
|
|
* Requires heap allocated data
|
|
|
|
*/
|
2024-09-18 09:38:44 +02:00
|
|
|
packet_t *create_packet(uint8_t status, uint8_t type, uint32_t length, uint8_t *data, uint8_t *signature)
|
2024-04-30 18:17:17 +02:00
|
|
|
{
|
2024-09-18 09:38:44 +02:00
|
|
|
packet_t *pkt = memalloc(sizeof(packet_t));
|
2024-09-16 14:11:01 +02:00
|
|
|
pkt->status = status;
|
|
|
|
pkt->type = type;
|
|
|
|
pkt->length = length;
|
|
|
|
pkt->data = data;
|
|
|
|
pkt->signature = signature;
|
|
|
|
return pkt;
|
2024-04-30 18:17:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2024-09-16 14:11:01 +02:00
|
|
|
* Sends packet to fd
|
|
|
|
* Requires heap allocated data
|
|
|
|
* Close file descriptor and free data on failure
|
2024-04-30 18:17:17 +02:00
|
|
|
*/
|
2024-09-18 09:38:44 +02:00
|
|
|
int send_packet(packet_t *pkt, int fd)
|
2024-04-30 18:17:17 +02:00
|
|
|
{
|
2024-09-16 14:11:01 +02:00
|
|
|
int status = ZSM_STA_SUCCESS;
|
2024-09-20 18:06:03 +02:00
|
|
|
size_t bytes_sent = 0;
|
|
|
|
|
|
|
|
/* Buffer to store header (status, type, length) */
|
|
|
|
size_t header_len = sizeof(pkt->status) + sizeof(pkt->type) + sizeof(pkt->length);
|
|
|
|
uint8_t header[header_len];
|
|
|
|
|
|
|
|
/* Pack the header */
|
|
|
|
memcpy(&header[0], &pkt->status, sizeof(pkt->status));
|
|
|
|
memcpy(&header[sizeof(pkt->status)], &pkt->type, sizeof(pkt->type));
|
|
|
|
memcpy(&header[sizeof(pkt->status) + sizeof(pkt->type)], &pkt->length, sizeof(pkt->length));
|
|
|
|
|
|
|
|
/* Send the packet header in one system call */
|
|
|
|
if ((bytes_sent = send(fd, header, header_len, 0)) != header_len) {
|
|
|
|
status = ZSM_STA_WRITING_SOCKET;
|
|
|
|
error(0, "Error writing packet header to socket, bytes_sent(%d)!=header_len(%d), status => %d",
|
|
|
|
bytes_sent, header_len, status);
|
2024-09-16 14:11:01 +02:00
|
|
|
goto failure;
|
2024-09-20 18:06:03 +02:00
|
|
|
}
|
|
|
|
|
2024-09-16 14:11:01 +02:00
|
|
|
if (pkt->type != ZSM_TYP_INFO && pkt->length > 0 && pkt->data != NULL) {
|
2024-09-20 18:06:03 +02:00
|
|
|
/* Buffer to store payload (data + signature) */
|
|
|
|
size_t payload_len = pkt->length + SIGN_SIZE;
|
|
|
|
uint8_t payload[payload_len];
|
|
|
|
|
|
|
|
/* Pack the payload */
|
|
|
|
memcpy(payload, pkt->data, pkt->length);
|
|
|
|
memcpy(payload + pkt->length, pkt->signature, SIGN_SIZE);
|
|
|
|
|
|
|
|
/* Send the payload (data + signature) in one system call */
|
|
|
|
if ((bytes_sent = send(fd, payload, payload_len, 0)) != payload_len) {
|
|
|
|
status = ZSM_STA_WRITING_SOCKET;
|
|
|
|
error(0, "Error writing packet body to socket, bytes_sent(%d)!=payload_len(%d), status => %d",
|
|
|
|
bytes_sent, payload_len, status);
|
|
|
|
goto failure;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#if DEBUG == 1
|
2024-09-16 14:11:01 +02:00
|
|
|
printf("==========PACKET SENT============\n");
|
2024-09-20 18:06:03 +02:00
|
|
|
printf("Status: %d\n", pkt->status);
|
|
|
|
printf("Type: %d\n", pkt->type);
|
|
|
|
printf("Length: %d\n", pkt->length);
|
|
|
|
if (pkt->length > 0) {
|
|
|
|
printf("Data:\n");
|
|
|
|
print_bin(pkt->data, pkt->length);
|
|
|
|
printf("Signature:\n");
|
|
|
|
print_bin(pkt->signature, SIGN_SIZE);
|
|
|
|
}
|
2024-09-16 14:11:01 +02:00
|
|
|
printf("==========END SENT===============\n");
|
|
|
|
#endif
|
2024-09-20 18:06:03 +02:00
|
|
|
|
2024-09-16 14:11:01 +02:00
|
|
|
return status;
|
|
|
|
|
|
|
|
failure:
|
|
|
|
/* Or we could resend it? */
|
|
|
|
status = ZSM_STA_WRITING_SOCKET;
|
|
|
|
error(0, "Error writing to socket");
|
2024-09-20 18:06:03 +02:00
|
|
|
free_packet(pkt);
|
2024-09-16 14:11:01 +02:00
|
|
|
close(fd);
|
|
|
|
return status;
|
2024-04-30 18:17:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2024-09-16 14:11:01 +02:00
|
|
|
* Free allocated memory in packet
|
|
|
|
*/
|
2024-09-18 09:38:44 +02:00
|
|
|
void free_packet(packet_t *pkt)
|
2024-09-16 14:11:01 +02:00
|
|
|
{
|
2024-09-18 09:38:44 +02:00
|
|
|
if (pkt->type != ZSM_TYP_AUTH && pkt->type != ZSM_TYP_ERROR) {
|
2024-09-16 14:11:01 +02:00
|
|
|
if (pkt->signature != NULL) {
|
|
|
|
free(pkt->signature);
|
|
|
|
}
|
|
|
|
}
|
2024-09-18 09:38:44 +02:00
|
|
|
if (pkt->data != NULL) {
|
|
|
|
free(pkt->data);
|
2024-09-16 14:11:01 +02:00
|
|
|
}
|
2024-09-18 09:38:44 +02:00
|
|
|
free(pkt);
|
2024-09-16 14:11:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Wrapper for recv_packet to verify packet
|
|
|
|
* Reads packet from fd, stores in pkt
|
|
|
|
* TODO: pkt is unncessary
|
|
|
|
*/
|
2024-09-18 09:38:44 +02:00
|
|
|
int verify_packet(packet_t *pkt, int fd)
|
2024-09-16 14:11:01 +02:00
|
|
|
{
|
2024-09-20 18:38:00 +02:00
|
|
|
int status = recv_packet(pkt, fd, ZSM_TYP_MESSAGE);
|
|
|
|
if (status != ZSM_STA_SUCCESS) {
|
2024-09-16 14:11:01 +02:00
|
|
|
close(fd);
|
2024-09-20 18:38:00 +02:00
|
|
|
if (status == ZSM_STA_CLOSED_CONNECTION) {
|
|
|
|
error(1, "Server closed connection");
|
|
|
|
}
|
|
|
|
|
2024-09-18 09:38:44 +02:00
|
|
|
return ZSM_STA_ERROR_INTEGRITY;
|
2024-09-16 14:11:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t from[MAX_NAME], to[MAX_NAME];
|
|
|
|
memcpy(from, pkt->data, MAX_NAME);
|
2024-09-18 09:38:44 +02:00
|
|
|
|
2024-09-16 14:11:01 +02:00
|
|
|
/* TODO: replace with db operations */
|
2024-09-20 18:06:03 +02:00
|
|
|
keypair_t *kp_from = get_keypair(from);
|
2024-09-16 14:11:01 +02:00
|
|
|
|
2024-09-18 09:38:44 +02:00
|
|
|
/* Verify data confidentiality by signature */
|
|
|
|
/* Verify data integrity by hash */
|
|
|
|
uint8_t hash[HASH_SIZE];
|
|
|
|
crypto_generichash(hash, HASH_SIZE, pkt->data, pkt->length, NULL, 0);
|
|
|
|
|
2024-09-20 18:06:03 +02:00
|
|
|
if (crypto_sign_verify_detached(pkt->signature, hash, HASH_SIZE, kp_from->pk.raw) != 0) {
|
2024-09-18 09:38:44 +02:00
|
|
|
/* Not match */
|
|
|
|
error(0, "Cannot verify data integrity");
|
|
|
|
packet_t *error_pkt = create_packet(ZSM_STA_ERROR_INTEGRITY, ZSM_TYP_ERROR, 0, NULL,
|
2024-09-16 14:11:01 +02:00
|
|
|
create_signature(NULL, 0, NULL));
|
|
|
|
send_packet(error_pkt, fd);
|
|
|
|
free_packet(error_pkt);
|
2024-09-18 09:38:44 +02:00
|
|
|
return ZSM_STA_ERROR_INTEGRITY;
|
2024-04-30 18:17:17 +02:00
|
|
|
}
|
2024-09-18 09:38:44 +02:00
|
|
|
return ZSM_STA_SUCCESS;
|
2024-04-30 18:17:17 +02:00
|
|
|
}
|
|
|
|
|
2024-09-16 14:11:01 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Create signature for packet
|
|
|
|
* When data, secret is null, length is 0, empty siganture is created
|
|
|
|
*/
|
|
|
|
uint8_t *create_signature(uint8_t *data, uint32_t length, secret_key *sk)
|
|
|
|
{
|
2024-09-20 18:22:08 +02:00
|
|
|
uint8_t *signature = memalloc(SIGN_SIZE);
|
2024-09-16 14:11:01 +02:00
|
|
|
if (data == NULL && length == 0 && sk == NULL) {
|
|
|
|
/* From server, give fake signature */
|
2024-09-20 18:22:08 +02:00
|
|
|
memset(signature, 0, SIGN_SIZE);
|
2024-09-16 14:11:01 +02:00
|
|
|
} else {
|
|
|
|
uint8_t hash[HASH_SIZE];
|
|
|
|
|
|
|
|
/* Hash data to check if matches user provided correct signature */
|
|
|
|
crypto_generichash(hash, HASH_SIZE,
|
|
|
|
data, length,
|
|
|
|
NULL, 0);
|
2024-09-20 18:06:03 +02:00
|
|
|
crypto_sign_detached(signature, NULL, hash, HASH_SIZE, sk->raw);
|
2024-09-16 14:11:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return signature;
|
2024-04-30 18:17:17 +02:00
|
|
|
}
|