xref: /iperf/src/main.c (revision 9293ec2c)
1 /*
2  * iperf, Copyright (c) 2014, The Regents of the University of
3  * California, through Lawrence Berkeley National Laboratory (subject
4  * to receipt of any required approvals from the U.S. Dept. of
5  * Energy).  All rights reserved.
6  *
7  * If you have questions about your rights to use or distribute this
8  * software, please contact Berkeley Lab's Technology Transfer
9  * Department at [email protected].
10  *
11  * NOTICE.  This software is owned by the U.S. Department of Energy.
12  * As such, the U.S. Government has been granted for itself and others
13  * acting on its behalf a paid-up, nonexclusive, irrevocable,
14  * worldwide license in the Software to reproduce, prepare derivative
15  * works, and perform publicly and display publicly.  Beginning five
16  * (5) years after the date permission to assert copyright is obtained
17  * from the U.S. Department of Energy, and subject to any subsequent
18  * five (5) year renewals, the U.S. Government is granted for itself
19  * and others acting on its behalf a paid-up, nonexclusive,
20  * irrevocable, worldwide license in the Software to reproduce,
21  * prepare derivative works, distribute copies to the public, perform
22  * publicly and display publicly, and to permit others to do so.
23  *
24  * This code is distributed under a BSD style license, see the LICENSE
25  * file for complete information.
26  */
27 #include "iperf_config.h"
28 
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <string.h>
32 #include <getopt.h>
33 #include <errno.h>
34 #include <signal.h>
35 #include <unistd.h>
36 #ifdef HAVE_STDINT_H
37 #include <stdint.h>
38 #endif
39 #include <sys/socket.h>
40 #include <sys/types.h>
41 #include <netinet/in.h>
42 #include <arpa/inet.h>
43 #include <netdb.h>
44 #ifdef HAVE_STDINT_H
45 #include <stdint.h>
46 #endif
47 #include <netinet/tcp.h>
48 
49 #include "iperf.h"
50 #include "iperf_api.h"
51 #include "units.h"
52 #include "iperf_locale.h"
53 #include "net.h"
54 
55 
56 static int run(struct iperf_test *test);
57 
58 
59 /**************************************************************************/
60 int
61 main(int argc, char **argv)
62 {
63     struct iperf_test *test;
64 
65     // XXX: Setting the process affinity requires root on most systems.
66     //      Is this a feature we really need?
67 #ifdef TEST_PROC_AFFINITY
68     /* didnt seem to work.... */
69     /*
70      * increasing the priority of the process to minimise packet generation
71      * delay
72      */
73     int rc = setpriority(PRIO_PROCESS, 0, -15);
74 
75     if (rc < 0) {
76         perror("setpriority:");
77         fprintf(stderr, "setting priority to valid level\n");
78         rc = setpriority(PRIO_PROCESS, 0, 0);
79     }
80 
81     /* setting the affinity of the process  */
82     cpu_set_t cpu_set;
83     int affinity = -1;
84     int ncores = 1;
85 
86     sched_getaffinity(0, sizeof(cpu_set_t), &cpu_set);
87     if (errno)
88         perror("couldn't get affinity:");
89 
90     if ((ncores = sysconf(_SC_NPROCESSORS_CONF)) <= 0)
91         err("sysconf: couldn't get _SC_NPROCESSORS_CONF");
92 
93     CPU_ZERO(&cpu_set);
94     CPU_SET(affinity, &cpu_set);
95     if (sched_setaffinity(0, sizeof(cpu_set_t), &cpu_set) != 0)
96         err("couldn't change CPU affinity");
97 #endif
98 
99     test = iperf_new_test();
100     if (!test)
101         iperf_errexit(NULL, "create new test error - %s", iperf_strerror(i_errno));
102     iperf_defaults(test);	/* sets defaults */
103 
104     if (iperf_parse_arguments(test, argc, argv) < 0) {
105         iperf_err(test, "parameter error - %s", iperf_strerror(i_errno));
106         fprintf(stderr, "\n");
107         usage_long();
108         exit(1);
109     }
110 
111     if (run(test) < 0)
112         iperf_errexit(test, "error - %s", iperf_strerror(i_errno));
113 
114     iperf_free_test(test);
115 
116     return 0;
117 }
118 
119 
120 static jmp_buf sigend_jmp_buf;
121 
122 static void
123 sigend_handler(int sig)
124 {
125     longjmp(sigend_jmp_buf, 1);
126 }
127 
128 /**************************************************************************/
129 static int
130 run(struct iperf_test *test)
131 {
132     int consecutive_errors;
133 
134     /* Termination signals. */
135     iperf_catch_sigend(sigend_handler);
136     if (setjmp(sigend_jmp_buf))
137 	iperf_got_sigend(test);
138 
139     switch (test->role) {
140         case 's':
141 	    if (test->daemon) {
142 		int rc = daemon(0, 0);
143 		if (rc < 0) {
144 		    i_errno = IEDAEMON;
145 		    iperf_errexit(test, "error - %s", iperf_strerror(i_errno));
146 		}
147 	    }
148 	    consecutive_errors = 0;
149 	    if (iperf_create_pidfile(test) < 0) {
150 		i_errno = IEPIDFILE;
151 		iperf_errexit(test, "error - %s", iperf_strerror(i_errno));
152 	    }
153             for (;;) {
154 		if (iperf_run_server(test) < 0) {
155 		    iperf_err(test, "error - %s", iperf_strerror(i_errno));
156                     fprintf(stderr, "\n");
157 		    ++consecutive_errors;
158 		    if (consecutive_errors >= 5) {
159 		        fprintf(stderr, "too many errors, exiting\n");
160 			break;
161 		    }
162                 } else
163 		    consecutive_errors = 0;
164                 iperf_reset_test(test);
165                 if (iperf_get_test_one_off(test))
166                     break;
167             }
168 	    iperf_delete_pidfile(test);
169             break;
170 	case 'c':
171 	    if (iperf_run_client(test) < 0)
172 		iperf_errexit(test, "error - %s", iperf_strerror(i_errno));
173             break;
174         default:
175             usage();
176             break;
177     }
178 
179     iperf_catch_sigend(SIG_DFL);
180 
181     return 0;
182 }
183