]> git.sesse.net Git - jam/blob - jam.c
Move the receiver stuff into its own thread, starting before the senders.
[jam] / jam.c
1 #include <stdio.h>
2 #include <math.h>
3 #include <string.h>
4 #include <stdlib.h>
5 #include <getopt.h>
6 #include <netdb.h>
7 #include <unistd.h>
8 #include <pthread.h>
9 #include <sys/socket.h>
10 #include <netinet/in.h>
11
12 unsigned short port = 2007;
13
14 struct in_addr *destinations = NULL;
15 unsigned num_destinations = 0;
16 unsigned room_destinations = 0;
17
18 struct in_addr *sources = NULL;
19 unsigned num_sources = 0;
20 unsigned room_sources = 0;
21
22 unsigned num_senders = 128;
23 unsigned do_listen = 1;
24
25 unsigned long long total_bytes_received = 0;
26 pthread_mutex_t receive_mutex = PTHREAD_MUTEX_INITIALIZER;
27
28 unsigned long long total_bytes_sent = 0;
29 pthread_mutex_t send_mutex = PTHREAD_MUTEX_INITIALIZER;
30
31 const static struct option longopts[] = {
32         { "source-list", required_argument, NULL, 's' },
33         { "destination-list", required_argument, NULL, 'd' },
34         { "num-senders", required_argument, NULL, 'n' },
35         { "port", required_argument, NULL, 'p' },
36         { "sender-only", no_argument, NULL, 'o' },
37         { NULL, 0, NULL, 0 }
38 };
39
40 // generates from [0,1>
41 double gen_uniform_random()
42 {
43         return rand() / (RAND_MAX+1.0);
44 }
45
46 double gen_pareto_random(double min, double k)
47 {
48         double u = gen_uniform_random();
49         return min * pow(u, -1.0 / k);
50 }
51
52 void read_ip_list(char *filename, struct in_addr **addr_list, unsigned *num, unsigned *room)
53 {
54         char buf[256];
55         FILE *in = fopen(filename, "r");
56         if (in == NULL) {
57                 perror(filename);
58                 exit(1);
59         }
60
61         for ( ;; ) {
62                 char *ptr;
63                 struct in_addr addr;
64                 struct hostent *he;
65
66                 if (fgets(buf, 256, in) == NULL)
67                         break;
68
69                 ptr = strchr(buf, '\n');
70                 if (ptr != NULL)
71                         *ptr = 0;
72
73                 ptr = strchr(buf, '\r');
74                 if (ptr != NULL)
75                         *ptr = 0;
76                 
77                 ptr = buf + strspn(buf, " \t");
78
79                 if (ptr[0] == '#' || ptr[0] == 0)
80                         continue;
81
82                 he = gethostbyname(ptr);
83                 if (he == NULL) {
84                         perror(ptr);
85                         exit(1);
86                 }
87
88                 // just pick the first for now
89                 memcpy(&addr.s_addr, he->h_addr_list[0], sizeof(addr.s_addr));
90
91                 if (*num >= *room) {
92                         if (*room == 0) {
93                                 *room = 16;
94                         } else {
95                                 *room <<= 1;
96                         }
97                         *addr_list = (struct in_addr *)realloc(*addr_list, *room * sizeof(struct in_addr));
98                 }
99
100                 (*addr_list)[*num] = addr;
101                 ++*num;
102         }
103
104         fclose(in);
105 }
106
107 void parse_options(int argc, char **argv)
108 {
109         int option_index = 0;
110
111         for ( ;; ) {
112                 int c = getopt_long(argc, argv, "s:d:n:p:o", longopts, &option_index); 
113                 switch (c) {
114                 case 's':
115                         read_ip_list(optarg, &sources, &num_sources, &room_sources);
116                         break;
117                 case 'd':
118                         read_ip_list(optarg, &destinations, &num_destinations, &room_destinations);
119                         break;
120                 case 'n':
121                         num_senders = atoi(optarg);
122                         break;
123                 case 'p':
124                         port = atoi(optarg);
125                         break;
126                 case 'o':
127                         do_listen = 0;
128                         break;
129                 case -1:
130                         return;       // end of argument list
131                 default:
132                         fprintf(stderr, "Invalid option\n");
133                         exit(1);
134                 }
135         }
136 }
137
138 void *sender_worker(void *arg)
139 {
140         unsigned i;
141         int sock;
142         char buf[65536];
143         unsigned long long bytes_sent = 0;
144
145         for (i = 0; i < 65536; ++i)
146                 buf[i] = rand() & 0xff;
147
148         for (i = 0; i < 1000; ++i) {
149                 unsigned src_num = (unsigned)(num_sources * gen_uniform_random());
150                 unsigned dst_num = (unsigned)(num_destinations * gen_uniform_random());
151                 unsigned num_bytes = (unsigned)gen_pareto_random(1048576.0, 1.0);
152                 struct sockaddr_in sin;
153
154                 sock = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP);
155                 if (sock == -1) {
156                         perror("socket()");
157                         exit(1);
158                 }
159                 
160                 // FIXME: bind to the right source
161                 
162                 sin.sin_family = AF_INET;
163                 sin.sin_port = htons(port);
164                 sin.sin_addr = destinations[dst_num];
165         
166                 fprintf(stderr, "connecting %u\n", i);
167
168                 if (connect(sock, (struct sockaddr *)&sin, sizeof(sin)) == -1) {
169                         perror("connect()");
170                         exit(1);
171                 }
172                 
173                 fprintf(stderr, "connected\n");
174
175                 while (num_bytes > 0) {
176                         unsigned bytes_to_send = num_bytes;
177                         unsigned ret;
178
179                         if (bytes_to_send > 65536) {
180                                 bytes_to_send = 65536;  
181                         }
182
183                         ret = send(sock, buf, bytes_to_send, MSG_NOSIGNAL);
184                         if (ret == -1) {
185                                 perror("send()");
186                                 exit(1);
187                         }
188
189                         num_bytes -= ret;
190                         bytes_sent += ret;
191
192                         // update the central counter after every 1MB (8ms
193                         // at gigabit speeds, should be enough) of sent data
194                         if (bytes_sent > 1048576) {
195                                 pthread_mutex_lock(&send_mutex);
196                                 total_bytes_sent += bytes_sent;
197                                 pthread_mutex_unlock(&send_mutex);
198
199                                 bytes_sent = 0;
200                         }
201                 }
202
203                 close(sock);
204         }
205                         
206         pthread_mutex_lock(&send_mutex);
207         total_bytes_sent += bytes_sent;
208         pthread_mutex_unlock(&send_mutex);
209
210         pthread_exit(0);
211 }
212
213 void *receiver_worker(void *arg)
214 {
215         int sock = (int)arg;
216         char buf[65536];
217         unsigned long long bytes_received = 0;
218
219         fprintf(stderr, "Receiver started\n");
220
221         for ( ;; ) {
222                 int ret = read(sock, buf, 65536);
223                 if (ret == 0)
224                         break;
225
226                 // update the central counter after every 1MB (8ms
227                 // at gigabit speeds, should be enough) of received data
228                 if (bytes_received > 1048576) {
229                         pthread_mutex_lock(&receive_mutex);
230                         total_bytes_sent += bytes_received;
231                         pthread_mutex_unlock(&receive_mutex);
232
233                         bytes_received = 0;
234                 }
235         }
236         
237         if (close(sock) == -1) {
238                 perror("close()");
239                 exit(1);
240         }
241                         
242         pthread_mutex_lock(&receive_mutex);
243         total_bytes_received += bytes_received;
244         pthread_mutex_unlock(&receive_mutex);
245
246         pthread_exit(0);
247 }
248         
249 void *receiver_dispatcher(void *arg)
250 {
251         int server_sock = (int)arg;
252         pthread_attr_t attr;
253         
254         // FIXME: these do not really set errno
255         if (pthread_attr_init(&attr) != 0) {
256                 perror("pthread_attr_init()");
257                 exit(1);
258         }
259
260         if (pthread_attr_setstacksize(&attr, PTHREAD_STACK_MIN + 65536 + 0x4000) != 0) {
261                 perror("pthread_attr_setstacksize");
262                 exit(1);
263         }
264
265         if (pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED) != 0) {
266                 perror("pthread_attr_setdetachstate");
267                 exit(1);
268         }
269
270         /*
271          * Listen for incoming connections, spawning off one receiver
272          * thread for each (which will just gobble up the data until
273          * we're done).
274          */
275         for ( ;; ) {
276                 struct sockaddr_in addr;
277                 socklen_t addr_len = sizeof(addr);
278                 pthread_t thread;
279
280                 int sock = accept(server_sock, (struct sockaddr *)&addr, &addr_len);
281                 if (sock == -1) {
282                         perror("accept()");
283                         exit(1);
284                 }
285
286                 if (pthread_create(&thread, &attr, receiver_worker, (void *)sock) != 0) {
287                         perror("pthread_create()");
288                         exit(1);
289                 }
290         }
291 }
292
293 int get_server_socket(unsigned short port)
294 {
295         int server_sock;
296         struct sockaddr_in sin;
297         unsigned one = 1;
298
299         server_sock = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP);
300         if (server_sock == -1) {
301                 perror("socket()");
302                 exit(1);
303         }
304
305         if (setsockopt(server_sock, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one)) == -1) {
306                 perror("setsocket(SO_REUSEADDR)");
307                 exit(1);
308         }
309
310         sin.sin_family = AF_INET;
311         sin.sin_port = htons(port);
312         sin.sin_addr.s_addr = INADDR_ANY;
313
314         if (bind(server_sock, (struct sockaddr *)&sin, sizeof(struct sockaddr)) == -1) {
315                 perror("bind()");
316                 exit(1);
317         }
318
319         if (listen(server_sock, 255) == -1) {
320                 perror("listen()");
321                 exit(1);
322         }
323
324         return server_sock;
325 }
326
327 int main(int argc, char **argv)
328 {
329         int server_sock;
330         unsigned i;
331         pthread_attr_t attr;
332
333         parse_options(argc, argv);
334
335         if (destinations == NULL || sources == NULL) {
336                 fprintf(stderr, "Missing or empty source or destination host list. Aborting.\n");
337         }
338
339         if (do_listen) {
340                 server_sock = get_server_socket(port);
341         }
342         
343         printf("Sending data on port %u from %u sources to %u destinations.\n\n",
344                 port, num_sources, num_destinations);
345                 
346         // FIXME: these do not really set errno
347         if (pthread_attr_init(&attr) != 0) {
348                 perror("pthread_attr_init()");
349                 exit(1);
350         }
351
352         if (pthread_attr_setstacksize(&attr, PTHREAD_STACK_MIN + 65536 + 0x4000) != 0) {
353                 perror("pthread_attr_setstacksize");
354                 exit(1);
355         }
356
357         if (pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED) != 0) {
358                 perror("pthread_attr_setdetachstate");
359                 exit(1);
360         }
361                 
362         // Fire off the master receiver.
363         if (do_listen) {
364                 pthread_t thread;
365                 if (pthread_create(&thread, &attr, receiver_dispatcher, (void *)server_sock) != 0) {
366                         perror("pthread_create()");
367                         exit(1);
368                 }
369         }
370
371         // Fire off sender workers.
372         for (i = 0; i < num_senders; ++i) {
373                 pthread_t thread;
374                 
375                 if (pthread_create(&thread, &attr, sender_worker, NULL) != 0) {
376                         perror("pthread_create()");
377                         exit(1);
378                 }
379         }
380
381         sleep(3600);
382
383         exit(0);
384 }