toxcore/toxcore/network.h

160 lines
4.2 KiB
C
Raw Normal View History

/* network.h
*
* Datatypes, functions and includes for the core networking.
*
* Copyright (C) 2013 Tox project All Rights Reserved.
*
* This file is part of Tox.
*
* Tox is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Tox is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Tox. If not, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef NETWORK_H
#define NETWORK_H
#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
#include <string.h>
#include <time.h>
#ifdef WIN32 /* Put win32 includes here */
2013-08-12 02:17:02 +08:00
#ifndef WINVER
2013-07-23 13:46:45 +08:00
//Windows XP
#define WINVER 0x0501
2013-08-12 02:17:02 +08:00
#endif
#include <winsock2.h>
#include <windows.h>
2013-07-23 13:46:45 +08:00
#include <ws2tcpip.h>
#undef VANILLA_NACL /* Make sure on Windows we use libsodium. */
#else // Linux includes
#include <fcntl.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <errno.h>
#include <sys/time.h>
#include <sys/types.h>
#include <netdb.h>
#include <unistd.h>
#endif
#ifndef VANILLA_NACL
/* We use libsodium by default. */
#include <sodium.h>
#else
2013-07-30 22:00:55 +08:00
#include <crypto_box.h>
#define crypto_box_MACBYTES (crypto_box_ZEROBYTES - crypto_box_BOXZEROBYTES)
#endif
#define MAX_UDP_PACKET_SIZE 65507
#define NET_PACKET_PING_REQUEST 0 /* Ping request packet ID. */
#define NET_PACKET_PING_RESPONSE 1 /* Ping response packet ID. */
#define NET_PACKET_GET_NODES 2 /* Get nodes request packet ID. */
#define NET_PACKET_SEND_NODES 3 /* Send nodes response packet ID. */
#define NET_PACKET_HANDSHAKE 16 /* Handshake packet ID. */
#define NET_PACKET_SYNC 17 /* SYNC packet ID. */
#define NET_PACKET_DATA 18 /* Data packet ID. */
#define NET_PACKET_CRYPTO 32 /* Encrypted data packet ID. */
#define NET_PACKET_LAN_DISCOVERY 33 /* LAN discovery packet ID. */
2013-08-21 15:55:43 +08:00
2013-08-08 22:59:22 +08:00
/* Current time, unix format */
#define unix_time() ((uint64_t)time(NULL))
2013-07-27 20:48:50 +08:00
typedef union {
2013-08-30 15:02:11 +08:00
uint8_t uint8[4];
uint16_t uint16[2];
uint32_t uint32;
2013-07-27 20:48:50 +08:00
} IP;
2013-08-30 14:51:15 +08:00
typedef union {
struct {
IP ip;
uint16_t port;
/* Not used for anything right now. */
uint16_t padding;
};
uint8_t uint8[8];
2013-07-27 20:48:50 +08:00
} IP_Port;
typedef struct {
int16_t family;
uint16_t port;
IP ip;
uint8_t zeroes[8];
#ifdef ENABLE_IPV6
2013-07-27 20:48:50 +08:00
uint8_t zeroes2[12];
#endif
2013-07-27 20:48:50 +08:00
} ADDR;
/* Function to receive data, ip and port of sender is put into ip_port.
* Packet data is put into data.
* Packet length is put into length.
*/
typedef int (*packet_handler_callback)(void *object, IP_Port ip_port, uint8_t *data, uint32_t len);
2013-08-10 07:30:18 +08:00
2013-08-20 11:54:28 +08:00
typedef struct {
packet_handler_callback function;
void *object;
} Packet_Handles;
2013-08-20 11:54:28 +08:00
typedef struct {
Packet_Handles packethandlers[256];
/* Our UDP socket. */
2013-08-20 11:54:28 +08:00
int sock;
} Networking_Core;
2013-08-20 11:54:28 +08:00
/* return current time in milleseconds since the epoch. */
uint64_t current_time(void);
2013-07-27 20:48:50 +08:00
/* return a random number.
* NOTE: this function should probably not be used where cryptographic randomness is absolutely necessary.
*/
uint32_t random_int(void);
2013-07-27 20:48:50 +08:00
/* Basic network functions: */
/* Function to send packet(data) of length length to ip_port. */
2013-08-20 11:54:28 +08:00
int sendpacket(int sock, IP_Port ip_port, uint8_t *data, uint32_t length);
2013-07-27 20:48:50 +08:00
/* Function to call when packet beginning with byte is received. */
void networking_registerhandler(Networking_Core *net, uint8_t byte, packet_handler_callback cb, void *object);
2013-08-10 07:30:18 +08:00
/* Call this several times a second. */
void networking_poll(Networking_Core *net);
2013-07-27 20:48:50 +08:00
/* Initialize networking.
* bind to ip and port.
* ip must be in network order EX: 127.0.0.1 = (7F000001).
* port is in host byte order (this means don't worry about it).
*
* returns 0 if no problems.
* returns -1 if there were problems.
*/
Networking_Core *new_networking(IP ip, uint16_t port);
2013-07-27 20:48:50 +08:00
/* Function to cleanup networking stuff (doesn't do much right now). */
void kill_networking(Networking_Core *net);
2013-07-27 20:48:50 +08:00
2013-07-23 06:06:24 +08:00
#endif