mobile-offloading/offloading_binaries/UDPSender/main.c

126 lines
3.3 KiB
C

/*
* This program 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.
*/
//#define _BSD_SOURCE
#include <arpa/inet.h>
//#include <linux/if_packet.h>
#include <unistd.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <net/if.h>
#include <net/ethernet.h>
//#include <socket.h>
//#include <netinet/ether.h>
//#include <sys/sendfile.h>
//#include <sys/socket.h>
#include <sys/types.h>
#include <sys/uio.h>
#include <errno.h>
#include <sys/time.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <signal.h>
#include <math.h>
#define ETH_P_IP 0x0800 /* Internet Protocol packet */
#define ETH_ALEN 6 /* from <net/ethernet.h> */
#define ETH_P_ALL 0x0003
//ca:e0:eb:61:b7:64
#define MY_DEST_MAC0 0xca
#define MY_DEST_MAC1 0xe0
#define MY_DEST_MAC2 0xeb
#define MY_DEST_MAC3 0x61
#define MY_DEST_MAC4 0xb7
#define MY_DEST_MAC5 0x64
#define DEFAULT_IF "wlan0"
#define BUF_SIZ 8192
int main(int argc, char *argv[])
{
int slotLength = 10000; // in microseconds
int quota = 1000000000; // Bytes per slot, default 1GB/slot
int sentInSlot = 0, slot = 1;
double elapsedTime;
double packetPerSlot;
struct iovec iov;
int sockfd, listenfd;
struct ifreq if_idx;
struct ifreq if_mac;
int tx_len = 0;
char sendbuf[BUF_SIZ];
struct ether_header *eh = (struct ether_header *) sendbuf;
struct iphdr *iph = (struct iphdr *) (sendbuf + sizeof(struct ether_header));
// struct sockaddr_ll socket_address;
char ifName[IFNAMSIZ];
int i, j, ret, sendsize=1458, packet_num=1000000000, offset = 0, port;
//int fd; /* file descriptor for file to send */
struct sockaddr_in servaddr,cliaddr;
socklen_t clilen;
struct timeval t_start,t_end,t_now;
signal(SIGPIPE, SIG_IGN);
if (argc > 1)
quota = atoi(argv[1]) / (1000000 / slotLength);
else
{
printf("Usage: UDPSender rate");
exit(1);
}
for (i = 0; i < sendsize; i++) sendbuf[i] = '0';
// fix packet size problem
packetPerSlot = ceil(((double)quota) / sendsize);
slotLength = (int)(packetPerSlot * sendsize / quota * slotLength);
quota = (int)packetPerSlot * sendsize;
//printf("TESThere1");
sockfd=socket(AF_INET, SOCK_DGRAM, 0);
bzero(&servaddr,sizeof(servaddr));
servaddr.sin_family = AF_INET;
servaddr.sin_addr.s_addr=inet_addr("192.168.2.2");
servaddr.sin_port=htons(4444);
//printf("testhere1");
gettimeofday(&t_start, NULL);
while (offset < packet_num)
{
if ((packet_num - offset) < quota)
{
quota = packet_num - offset;
}
while (sentInSlot < quota)
{
ret = sendto(sockfd, sendbuf, sendsize, 0, (struct sockaddr *)&servaddr, sizeof(servaddr));
if (ret < sendsize)
{
printf("send fail\n");
usleep(100);
}
offset += ret;
sentInSlot = sentInSlot + ret;
}
//printf("here3");
gettimeofday(&t_now, NULL);
elapsedTime = (t_now.tv_sec-t_start.tv_sec)*1000000.0+(t_now.tv_usec-t_start.tv_usec);
//printf("sent %d, quota %d, packet_num %d, usleep %lf\n", offset, quota, packet_num, slotLength * slot - elapsedTime);
if (elapsedTime < slotLength * slot)
{
usleep((int)(slotLength * slot - elapsedTime));
}
sentInSlot = 0;
slot++;
}
//close(fd);
return 0;
}