2013-07-01 05:19:15 +08:00
|
|
|
/* DHT sendfiletest
|
2013-08-17 01:11:09 +08:00
|
|
|
*
|
2013-07-01 05:19:15 +08:00
|
|
|
* Sends the data from a file to another client.
|
|
|
|
* Receives the file data that that client sends us.
|
2013-08-17 01:11:09 +08:00
|
|
|
*
|
2013-07-01 05:19:15 +08:00
|
|
|
* NOTE: this program simulates 33% packet loss.
|
2013-08-17 01:11:09 +08:00
|
|
|
*
|
2013-07-01 05:19:15 +08:00
|
|
|
* Compile with: gcc -O2 -Wall -o test ../core/DHT.c ../core/network.c ../core/Lossless_UDP.c DHT_sendfiletest.c
|
2013-08-17 01:11:09 +08:00
|
|
|
*
|
|
|
|
* Command line arguments are the ip and port of a node (for bootstrapping), the
|
2013-07-01 05:19:15 +08:00
|
|
|
* client_id (32 bytes) of the friend you want to send the data in filename to and
|
|
|
|
* the client_id this node will take.
|
2013-08-17 01:11:09 +08:00
|
|
|
*
|
2013-07-01 05:19:15 +08:00
|
|
|
* Saves all received data to: received.txt
|
2013-08-17 01:11:09 +08:00
|
|
|
*
|
2013-07-01 05:19:15 +08:00
|
|
|
* EX: ./test 127.0.0.1 33445 ABCDEFGHIJKLMNOPQRSTUVWXYZabcdef filename.txt ABCDEFGHIJKLMNOPQRSTUVWXYZabcdeg
|
2013-07-26 09:45:56 +08:00
|
|
|
*
|
|
|
|
* 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/>.
|
2013-08-17 01:11:09 +08:00
|
|
|
*
|
2013-07-01 05:19:15 +08:00
|
|
|
*/
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-07-01 05:19:15 +08:00
|
|
|
#include "../core/network.h"
|
|
|
|
#include "../core/DHT.h"
|
|
|
|
#include "../core/Lossless_UDP.h"
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
//Sleep function (x = milliseconds)
|
|
|
|
#ifdef WIN32
|
|
|
|
|
|
|
|
#define c_sleep(x) Sleep(1*x)
|
|
|
|
|
|
|
|
#else
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#define c_sleep(x) usleep(1000*x)
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define PORT 33445
|
|
|
|
|
|
|
|
void printip(IP_Port ip_port)
|
|
|
|
{
|
2013-08-17 01:11:09 +08:00
|
|
|
printf("\nIP: %u.%u.%u.%u Port: %u\n", ip_port.ip.c[0], ip_port.ip.c[1], ip_port.ip.c[2], ip_port.ip.c[3],
|
|
|
|
ntohs(ip_port.port));
|
2013-07-01 05:19:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
//memcpy(self_client_id, "qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq", 32);
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-07-01 05:19:15 +08:00
|
|
|
if (argc < 6) {
|
|
|
|
printf("usage %s ip port client_id(of friend to find ip_port of) filename(of file to send) client_id(ours)\n", argv[0]);
|
|
|
|
exit(0);
|
|
|
|
}
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-07-07 23:54:25 +08:00
|
|
|
DHT_addfriend((uint8_t *)argv[3]);
|
2013-07-01 05:19:15 +08:00
|
|
|
IP_Port friend_ip;
|
|
|
|
int connection = -1;
|
|
|
|
int inconnection = -1;
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-07-01 05:19:15 +08:00
|
|
|
//initialize networking
|
|
|
|
//bind to ip 0.0.0.0:PORT
|
|
|
|
IP ip;
|
|
|
|
ip.i = 0;
|
|
|
|
init_networking(ip, PORT);
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-07-01 05:19:15 +08:00
|
|
|
memcpy(self_client_id, argv[5], 32);
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-07-01 05:19:15 +08:00
|
|
|
|
|
|
|
perror("Initialization");
|
|
|
|
IP_Port bootstrap_ip_port;
|
|
|
|
bootstrap_ip_port.port = htons(atoi(argv[2]));
|
|
|
|
bootstrap_ip_port.ip.i = inet_addr(argv[1]);
|
2013-07-07 23:54:25 +08:00
|
|
|
DHT_bootstrap(bootstrap_ip_port);
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-07-01 05:19:15 +08:00
|
|
|
IP_Port ip_port;
|
2013-07-07 23:54:25 +08:00
|
|
|
uint8_t data[MAX_UDP_PACKET_SIZE];
|
2013-07-01 05:19:15 +08:00
|
|
|
uint32_t length;
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-07-07 23:54:25 +08:00
|
|
|
uint8_t buffer1[128];
|
2013-07-01 05:19:15 +08:00
|
|
|
int read1 = 0;
|
2013-07-07 23:54:25 +08:00
|
|
|
uint8_t buffer2[128];
|
2013-07-01 05:19:15 +08:00
|
|
|
int read2 = 0;
|
|
|
|
FILE *file1 = fopen(argv[4], "rb");
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-07-27 11:07:25 +08:00
|
|
|
if (file1 == NULL) {
|
2013-08-17 01:11:09 +08:00
|
|
|
printf("Error opening file.\n");
|
|
|
|
return 1;
|
2013-07-27 11:07:25 +08:00
|
|
|
}
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-07-01 05:19:15 +08:00
|
|
|
FILE *file2 = fopen("received.txt", "wb");
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-07-27 11:07:25 +08:00
|
|
|
if (file2 == NULL)
|
2013-08-17 01:11:09 +08:00
|
|
|
return 1;
|
|
|
|
|
2013-07-01 05:19:15 +08:00
|
|
|
read1 = fread(buffer1, 1, 128, file1);
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-07-27 11:07:25 +08:00
|
|
|
while (1) {
|
|
|
|
while (receivepacket(&ip_port, data, &length) != -1) {
|
|
|
|
if (rand() % 3 != 1) { /* simulate packet loss */
|
|
|
|
if (DHT_handlepacket(data, length, ip_port) && LosslessUDP_handlepacket(data, length, ip_port))
|
|
|
|
printf("Received unhandled packet with length: %u\n", length); /* if packet is not recognized */
|
|
|
|
else
|
2013-07-01 05:19:15 +08:00
|
|
|
printf("Received handled packet with length: %u\n", length);
|
|
|
|
}
|
|
|
|
}
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-07-07 23:54:25 +08:00
|
|
|
friend_ip = DHT_getfriendip((uint8_t *)argv[3]);
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-07-27 11:07:25 +08:00
|
|
|
if (friend_ip.ip.i != 0) {
|
|
|
|
if (connection == -1) {
|
2013-07-01 05:19:15 +08:00
|
|
|
printf("Started connecting to friend:");
|
|
|
|
printip(friend_ip);
|
|
|
|
connection = new_connection(friend_ip);
|
|
|
|
}
|
|
|
|
}
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-07-27 11:07:25 +08:00
|
|
|
if (inconnection == -1) {
|
2013-07-01 05:19:15 +08:00
|
|
|
inconnection = incoming_connection();
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-07-27 11:07:25 +08:00
|
|
|
if (inconnection != -1) {
|
2013-07-01 05:19:15 +08:00
|
|
|
printf("Someone connected to us:");
|
|
|
|
printip(connection_ip(inconnection));
|
|
|
|
}
|
|
|
|
}
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-07-26 16:02:17 +08:00
|
|
|
/* if someone connected to us write what he sends to a file */
|
|
|
|
/* also send him our file. */
|
2013-07-27 11:07:25 +08:00
|
|
|
if (inconnection != -1) {
|
|
|
|
if (write_packet(inconnection, buffer1, read1)) {
|
2013-07-01 05:19:15 +08:00
|
|
|
printf("Wrote data.\n");
|
|
|
|
read1 = fread(buffer1, 1, 128, file1);
|
|
|
|
}
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-07-01 05:19:15 +08:00
|
|
|
read2 = read_packet(inconnection, buffer2);
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-07-27 11:07:25 +08:00
|
|
|
if (read2 != 0) {
|
2013-07-01 05:19:15 +08:00
|
|
|
printf("Received data.\n");
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-07-27 11:07:25 +08:00
|
|
|
if (!fwrite(buffer2, read2, 1, file2))
|
2013-08-17 01:11:09 +08:00
|
|
|
printf("file write error\n");
|
|
|
|
|
2013-07-27 11:07:25 +08:00
|
|
|
if (read2 < 128) {
|
2013-07-01 05:19:15 +08:00
|
|
|
fclose(file2);
|
|
|
|
}
|
2013-08-17 01:11:09 +08:00
|
|
|
}
|
2013-07-01 05:19:15 +08:00
|
|
|
}
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-07-26 16:02:17 +08:00
|
|
|
/* if we are connected to a friend send him data from the file.
|
|
|
|
* also put what he sends us in a file. */
|
2013-07-27 11:07:25 +08:00
|
|
|
if (is_connected(connection) == 3) {
|
|
|
|
if (write_packet(0, buffer1, read1)) {
|
2013-07-01 05:19:15 +08:00
|
|
|
printf("Wrote data.\n");
|
|
|
|
read1 = fread(buffer1, 1, 128, file1);
|
|
|
|
}
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-07-01 05:19:15 +08:00
|
|
|
read2 = read_packet(0, buffer2);
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-07-27 11:07:25 +08:00
|
|
|
if (read2 != 0) {
|
2013-07-01 05:19:15 +08:00
|
|
|
printf("Received data.\n");
|
2013-08-17 01:11:09 +08:00
|
|
|
|
|
|
|
if (!fwrite(buffer2, read2, 1, file2))
|
|
|
|
printf("file write error\n");
|
|
|
|
|
|
|
|
if (read2 < 128)
|
2013-07-01 05:19:15 +08:00
|
|
|
fclose(file2);
|
2013-07-27 11:07:25 +08:00
|
|
|
}
|
2013-07-01 05:19:15 +08:00
|
|
|
}
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-07-01 05:19:15 +08:00
|
|
|
doDHT();
|
|
|
|
doLossless_UDP();
|
2013-07-26 16:02:17 +08:00
|
|
|
/* print_clientlist();
|
|
|
|
* print_friendlist();
|
|
|
|
* c_sleep(300); */
|
2013-07-01 05:19:15 +08:00
|
|
|
c_sleep(1);
|
|
|
|
}
|
2013-08-17 01:11:09 +08:00
|
|
|
|
2013-07-01 05:19:15 +08:00
|
|
|
shutdown_networking();
|
2013-08-17 01:11:09 +08:00
|
|
|
return 0;
|
2013-07-01 05:19:15 +08:00
|
|
|
}
|