tor_multipath_voip/src/packet.h

92 lines
1.9 KiB
C
Raw Normal View History

#pragma once
2019-05-13 08:02:43 +00:00
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdint.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <errno.h>
#include <netinet/in.h>
#include <arpa/inet.h>
/*
* man 7 udp about receive operation on UDP sockets:
*
* > All receive operations return only one packet. When the packet is smaller than the passed
* > buffer, only that much data is returned; when it is bigger, the packet is truncated and the
* > MSG_TRUNC flag is set. MSG_WAITALL is not supported.
*/
enum FD_STATE {
FDS_READY,
FDS_AGAIN,
FDS_ERR
};
enum BP_MODE {
BP_READING,
2019-02-18 20:55:53 +00:00
BP_WRITING
};
2019-05-13 08:02:43 +00:00
enum PKT_CMD {
CMD_HEALTH,
CMD_CLEAR,
CMD_XOR
2019-03-15 15:44:47 +00:00
};
2019-05-14 09:23:23 +00:00
union abstract_packet {
char raw;
struct {
2019-05-13 08:02:43 +00:00
struct {
2019-05-14 09:23:23 +00:00
uint16_t size;
enum PKT_CMD cmd;
} headers;
union {
struct {
uint16_t id;
uint8_t bitfield;
uint8_t prevlink;
uint16_t deltat;
uint16_t min_blocked_pkt;
} health;
struct {
uint16_t id;
uint16_t port;
char payload;
} clear;
} content;
} fmt;
};
struct internet_packet {
2019-05-14 09:23:23 +00:00
union abstract_packet ap;
2019-05-09 17:53:47 +00:00
char rest[1499]; // MTU = 1500, 1 byte in the union as payload
};
struct buffer_packet {
2019-05-09 17:53:47 +00:00
enum BP_MODE mode;
uint8_t ap_count;
uint16_t aread;
uint16_t awrite;
struct internet_packet ip;
};
2019-02-14 16:15:13 +00:00
struct udp_target {
struct sockaddr_in addr;
socklen_t addrlen;
int set;
2019-02-19 14:17:47 +00:00
int ref_count;
2019-02-14 16:15:13 +00:00
};
2019-05-24 12:48:16 +00:00
size_t get_full_size(struct buffer_packet* bp);
enum FD_STATE read_packet_from_tcp(int fd, struct buffer_packet* bp);
enum FD_STATE write_packet_to_tcp(int fd, struct buffer_packet* bp);
2019-02-19 13:49:44 +00:00
enum FD_STATE write_packet_to_udp(int fd, struct buffer_packet* bp, struct udp_target* udp_t);
enum FD_STATE read_packet_from_udp (int fd, struct buffer_packet* bp, struct udp_target* udp_t);
2019-05-24 09:46:23 +00:00
void dump_buffer_packet(struct buffer_packet* bp);
void dump_abstract_packet(union abstract_packet* ap);