2024-04-30 18:17:17 +02:00
|
|
|
#ifndef PACKET_H
|
|
|
|
#define PACKET_H
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdarg.h>
|
2024-09-16 14:11:01 +02:00
|
|
|
#include <stdbool.h>
|
2024-04-30 18:17:17 +02:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <signal.h>
|
2024-09-16 14:11:01 +02:00
|
|
|
#include <time.h>
|
2024-04-30 18:17:17 +02:00
|
|
|
#include <sys/socket.h>
|
2024-09-16 14:11:01 +02:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/epoll.h>
|
2024-04-30 18:17:17 +02:00
|
|
|
#include <arpa/inet.h>
|
2024-09-16 14:11:01 +02:00
|
|
|
#include <netinet/in.h>
|
2024-04-30 18:17:17 +02:00
|
|
|
#include <netdb.h>
|
2024-09-16 14:11:01 +02:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <pthread.h>
|
2024-04-30 18:17:17 +02:00
|
|
|
#include <sodium.h>
|
2024-09-16 14:11:01 +02:00
|
|
|
#include <libgen.h>
|
|
|
|
#include <wchar.h>
|
|
|
|
|
|
|
|
#include "config.h"
|
2024-04-30 18:17:17 +02:00
|
|
|
|
2024-09-16 14:11:01 +02:00
|
|
|
#define ZSM_TYP_AUTH 0x1
|
|
|
|
#define ZSM_TYP_MESSAGE 0x2
|
2024-04-30 18:17:17 +02:00
|
|
|
#define ZSM_TYP_UPDATE_MESSAGE 0x3
|
|
|
|
#define ZSM_TYP_DELETE_MESSAGE 0x4
|
2024-09-16 14:11:01 +02:00
|
|
|
#define ZSM_TYP_ERROR 0x5
|
|
|
|
#define ZSM_TYP_INFO 0x6
|
2024-04-30 18:17:17 +02:00
|
|
|
|
|
|
|
#define ZSM_STA_SUCCESS 0x1
|
|
|
|
#define ZSM_STA_INVALID_TYPE 0x2
|
|
|
|
#define ZSM_STA_INVALID_LENGTH 0x3
|
|
|
|
#define ZSM_STA_TOO_LONG 0x4
|
|
|
|
#define ZSM_STA_READING_SOCKET 0x5
|
|
|
|
#define ZSM_STA_WRITING_SOCKET 0x6
|
|
|
|
#define ZSM_STA_UNKNOWN_USER 0x7
|
|
|
|
#define ZSM_STA_MEMORY_ALLOCATION 0x8
|
2024-09-16 14:11:01 +02:00
|
|
|
#define ZSM_STA_ERROR_ENCRYPT 0x9
|
|
|
|
#define ZSM_STA_ERROR_DECRYPT 0xA
|
|
|
|
#define ZSM_STA_ERROR_AUTHENTICATE 0xB
|
|
|
|
#define ZSM_STA_ERROR_INTEGRITY 0xC
|
|
|
|
#define ZSM_STA_UNAUTHORISED 0xD
|
|
|
|
#define ZSM_STA_AUTHORISED 0xE
|
2024-09-20 18:06:03 +02:00
|
|
|
#define ZSM_STA_CLOSED_CONNECTION 0xF
|
2024-04-30 18:17:17 +02:00
|
|
|
|
2024-09-24 20:05:49 +02:00
|
|
|
#define PORT 20247
|
|
|
|
#define MAX_NAME 32 /* Max username length */
|
|
|
|
#define MAX_DATA_LENGTH 8192
|
|
|
|
|
2024-09-16 14:11:01 +02:00
|
|
|
#define ADDRESS_SIZE MAX_NAME + 1 + 255 /* 1 for @, 255 for domain, defined in RFC 5321, Section 4.5.3.1.2 */
|
2024-09-25 23:31:10 +02:00
|
|
|
#define CHALLENGE_SIZE 32
|
2024-09-16 14:11:01 +02:00
|
|
|
#define HASH_SIZE crypto_generichash_BYTES
|
2024-09-24 20:05:49 +02:00
|
|
|
#define NONCE_SIZE crypto_box_NONCEBYTES /* 24 */
|
|
|
|
#define ADDITIONAL_SIZE crypto_box_MACBYTES /* 16 */
|
2024-09-18 09:37:34 +02:00
|
|
|
#define MAX_MESSAGE_LENGTH MAX_DATA_LENGTH - MAX_NAME * 2 - NONCE_SIZE
|
2024-04-30 18:17:17 +02:00
|
|
|
|
2024-09-18 09:37:34 +02:00
|
|
|
typedef struct packet_t {
|
2024-09-16 14:11:01 +02:00
|
|
|
uint8_t status;
|
2024-04-30 18:17:17 +02:00
|
|
|
uint8_t type;
|
2024-09-16 14:11:01 +02:00
|
|
|
uint32_t length;
|
|
|
|
uint8_t *data;
|
|
|
|
uint8_t *signature;
|
2024-09-18 09:37:34 +02:00
|
|
|
} packet_t;
|
|
|
|
|
|
|
|
typedef struct message_t {
|
|
|
|
uint8_t author[MAX_NAME];
|
|
|
|
uint8_t recipient[MAX_NAME];
|
|
|
|
uint8_t *content;
|
|
|
|
time_t creation;
|
|
|
|
} message_t;
|
2024-09-16 14:11:01 +02:00
|
|
|
|
|
|
|
#include "key.h"
|
2024-04-30 18:17:17 +02:00
|
|
|
|
|
|
|
/* Utilities functions */
|
2024-09-24 20:05:49 +02:00
|
|
|
void print_packet(packet_t *pkt);
|
2024-09-18 09:37:34 +02:00
|
|
|
int recv_packet(packet_t *pkt, int fd, uint8_t required_type);
|
2024-09-20 18:16:59 +02:00
|
|
|
packet_t *create_packet(uint8_t status, uint8_t type, uint32_t length, uint8_t *data, uint8_t *signature);
|
2024-09-24 20:05:49 +02:00
|
|
|
int send_packet(packet_t *pkt, int fd);
|
|
|
|
void free_packet(packet_t *pkt);
|
2024-09-18 09:37:34 +02:00
|
|
|
int verify_packet(packet_t *pkt, int fd);
|
2024-09-24 20:05:49 +02:00
|
|
|
uint8_t *create_signature(uint8_t *data, uint32_t length, uint8_t *sk);
|
2024-04-30 18:17:17 +02:00
|
|
|
|
|
|
|
#endif
|