X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=jam.c;h=1f2aedcf5d4d1855b3bade5776c997dbc2238a64;hb=6d92e1c84d49fdb3d785d7ffd2bad68ea39398ca;hp=7e46c21a48b5e50313d122eba00d0dfb7916197e;hpb=86e150e0c44395555a9f56d23170cf0f87f151d0;p=jam diff --git a/jam.c b/jam.c index 7e46c21..1f2aedc 100644 --- a/jam.c +++ b/jam.c @@ -8,8 +8,12 @@ #include #include #include +#include +#include +#include unsigned short port = 2007; +unsigned update_frequency = 1048576; struct in_addr *destinations = NULL; unsigned num_destinations = 0; @@ -20,6 +24,7 @@ unsigned num_sources = 0; unsigned room_sources = 0; unsigned num_senders = 128; +unsigned num_sockets_per_sender = 16; unsigned do_listen = 1; unsigned long long total_bytes_received = 0; @@ -32,6 +37,7 @@ const static struct option longopts[] = { { "source-list", required_argument, NULL, 's' }, { "destination-list", required_argument, NULL, 'd' }, { "num-senders", required_argument, NULL, 'n' }, + { "num-sockets-per-sender", required_argument, NULL, 'N' }, { "port", required_argument, NULL, 'p' }, { "sender-only", no_argument, NULL, 'o' }, { NULL, 0, NULL, 0 } @@ -109,7 +115,7 @@ void parse_options(int argc, char **argv) int option_index = 0; for ( ;; ) { - int c = getopt_long(argc, argv, "s:d:n:p:o", longopts, &option_index); + int c = getopt_long(argc, argv, "s:d:n:N:p:o", longopts, &option_index); switch (c) { case 's': read_ip_list(optarg, &sources, &num_sources, &room_sources); @@ -120,6 +126,9 @@ void parse_options(int argc, char **argv) case 'n': num_senders = atoi(optarg); break; + case 'N': + num_sockets_per_sender = atoi(optarg); + break; case 'p': port = atoi(optarg); break; @@ -135,74 +144,152 @@ void parse_options(int argc, char **argv) } } +struct sender { + int fd; + unsigned long long bytes_left; +}; + +void generate_new_sender(int ep_fd, struct sender *s) +{ + int sock, one = 1; + unsigned src_num, dst_num; + unsigned long long num_bytes; + struct sockaddr_in sin; + struct epoll_event ev; + + sock = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP); + if (sock == -1) { + perror("socket()"); + exit(1); + } + + // find the right parameters + src_num = (unsigned)(num_sources * gen_uniform_random()); + dst_num = (unsigned)(num_destinations * gen_uniform_random()); + num_bytes = (unsigned)gen_pareto_random(1048576.0, 1.0); + + // FIXME: bind to the right source + + if (ioctl(sock, FIONBIO, &one) == -1) { + perror("FIONBIO"); + exit(1); + } + + sin.sin_family = AF_INET; + sin.sin_port = htons(port); + sin.sin_addr = destinations[dst_num]; + + // non-blocking connect (will be detected by epoll later) + if (connect(sock, (struct sockaddr *)&sin, sizeof(sin)) == -1 && errno != EINPROGRESS) { + perror("connect()"); + exit(1); + } + + // stick it in the epoll set (FIXME: make edge-triggered?) + ev.events = EPOLLOUT | EPOLLHUP | EPOLLERR; + ev.data.ptr = s; + + s->fd = sock; + s->bytes_left = num_bytes; + + if (epoll_ctl(ep_fd, EPOLL_CTL_ADD, sock, &ev) == -1) { + perror("EPOLL_CTL_ADD"); + exit(1); + } +} + void *sender_worker(void *arg) { unsigned i; - int sock; char buf[65536]; unsigned long long bytes_sent = 0; + int ep_fd; + struct epoll_event *events; + + ep_fd = epoll_create(num_sockets_per_sender); + if (ep_fd == -1) { + perror("epoll_create"); + exit(1); + } + + // malloc, since there might not be enough room on the stack + events = (struct epoll_event *)malloc(sizeof(struct epoll_event) * num_sockets_per_sender); + if (events == NULL) { + perror("malloc"); + exit(1); + } + // fill the buffer with random junk for (i = 0; i < 65536; ++i) buf[i] = rand() & 0xff; - for (i = 0; i < 1000; ++i) { - unsigned src_num = (unsigned)(num_sources * gen_uniform_random()); - unsigned dst_num = (unsigned)(num_destinations * gen_uniform_random()); - unsigned num_bytes = (unsigned)gen_pareto_random(1048576.0, 1.0); - struct sockaddr_in sin; - - sock = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP); - if (sock == -1) { - perror("socket()"); + // allocate all the senders + for (i = 0; i < num_sockets_per_sender; ++i) { + struct sender *s = (struct sender *)malloc(sizeof(struct sender)); + if (s == NULL) { + perror("malloc()"); exit(1); } - - // FIXME: bind to the right source - - sin.sin_family = AF_INET; - sin.sin_port = htons(port); - sin.sin_addr = destinations[dst_num]; - - if (connect(sock, (struct sockaddr *)&sin, sizeof(sin)) == -1) { - perror("connect()"); + + generate_new_sender(ep_fd, s); + } + + for ( ;; ) { + int num_active = epoll_wait(ep_fd, events, num_sockets_per_sender, -1); + if (num_active == -1) { + perror("epoll_wait"); exit(1); } - - while (num_bytes > 0) { - unsigned bytes_to_send = num_bytes; + + for (i = 0; i < num_active; ++i) { + struct sender *s = (struct sender *)events[i].data.ptr; + unsigned long long bytes_to_send = s->bytes_left; unsigned ret; if (bytes_to_send > 65536) { bytes_to_send = 65536; } - ret = send(sock, buf, bytes_to_send, MSG_NOSIGNAL); + ret = send(s->fd, buf, bytes_to_send, MSG_NOSIGNAL); if (ret == -1) { + if (errno == EAGAIN) + continue; + perror("send()"); exit(1); } - num_bytes -= ret; + s->bytes_left -= ret; bytes_sent += ret; // update the central counter after every 1MB (8ms // at gigabit speeds, should be enough) of sent data - if (bytes_sent > 1048576) { + if (bytes_sent > update_frequency) { pthread_mutex_lock(&send_mutex); total_bytes_sent += bytes_sent; pthread_mutex_unlock(&send_mutex); bytes_sent = 0; } + + if (s->bytes_left == 0) { + if (epoll_ctl(ep_fd, EPOLL_CTL_DEL, s->fd, NULL) == -1) { + perror("EPOLL_CTL_ADD"); + exit(1); + } + close(s->fd); + generate_new_sender(ep_fd, s); + } } - - close(sock); } - + pthread_mutex_lock(&send_mutex); total_bytes_sent += bytes_sent; pthread_mutex_unlock(&send_mutex); + free(events); + close(ep_fd); + pthread_exit(0); } @@ -217,11 +304,13 @@ void *receiver_worker(void *arg) if (ret == 0) break; + bytes_received += ret; + // update the central counter after every 1MB (8ms // at gigabit speeds, should be enough) of received data - if (bytes_received > 1048576) { + if (bytes_received > update_frequency) { pthread_mutex_lock(&receive_mutex); - total_bytes_sent += bytes_received; + total_bytes_received += bytes_received; pthread_mutex_unlock(&receive_mutex); bytes_received = 0; @@ -328,6 +417,7 @@ int main(int argc, char **argv) if (destinations == NULL || sources == NULL) { fprintf(stderr, "Missing or empty source or destination host list. Aborting.\n"); + exit(1); } if (do_listen) { @@ -362,6 +452,9 @@ int main(int argc, char **argv) } } + printf("Waiting five seconds before starting senders...\n"); + sleep(5); + // Fire off sender workers. for (i = 0; i < num_senders; ++i) { pthread_t thread; @@ -372,7 +465,31 @@ int main(int argc, char **argv) } } - sleep(3600); + // Just stay around collecting statistics until we're done. + for ( ;; ) { + unsigned long long sent, received; + static unsigned long long last_sent = 0, last_received = 0; + double recv_rate, send_rate; + + pthread_mutex_lock(&send_mutex); + sent = total_bytes_sent; + pthread_mutex_unlock(&send_mutex); + + pthread_mutex_lock(&receive_mutex); + received = total_bytes_received; + pthread_mutex_unlock(&receive_mutex); + + send_rate = (sent - last_sent) * 8.0 / 1048576.0; + recv_rate = (received - last_received) * 8.0 / 1048576.0; + + printf("%12llu %12llu %5.0f Mbit/sec %5.0f Mbit/sec\n", sent, received, + send_rate, recv_rate); + + last_sent = sent; + last_received = received; + + sleep(1); + } exit(0); }