dhcp: Fix race condition in test-dhcp-client.
[sliver-openvswitch.git] / tests / test-dhcp-client.c
1 /* Copyright (c) 2008 The Board of Trustees of The Leland Stanford
2  * Junior University
3  *
4  * We are making the OpenFlow specification and associated documentation
5  * (Software) available for public use and benefit with the expectation
6  * that others will use, modify and enhance the Software and contribute
7  * those enhancements back to the community. However, since we would
8  * like to make the Software available for broadest use, with as few
9  * restrictions as possible permission is hereby granted, free of
10  * charge, to any person obtaining a copy of this Software to deal in
11  * the Software under the copyrights without restriction, including
12  * without limitation the rights to use, copy, modify, merge, publish,
13  * distribute, sublicense, and/or sell copies of the Software, and to
14  * permit persons to whom the Software is furnished to do so, subject to
15  * the following conditions:
16  *
17  * The above copyright notice and this permission notice shall be
18  * included in all copies or substantial portions of the Software.
19  *
20  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23  * NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
24  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
25  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
26  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27  * SOFTWARE.
28  *
29  * The name and trademarks of copyright holder(s) may NOT be used in
30  * advertising or publicity pertaining to the Software or any
31  * derivatives without specific, written prior permission.
32  */
33
34 #include <config.h>
35 #include "dhcp-client.h"
36 #include <arpa/inet.h>
37 #include <getopt.h>
38 #include <stdlib.h>
39 #include <limits.h>
40 #include "command-line.h"
41 #include "dhcp.h"
42 #include "fatal-signal.h"
43 #include "fault.h"
44 #include "poll-loop.h"
45 #include "util.h"
46 #include "vlog.h"
47
48 /* --request-ip: IP address to request from server.  If zero, then do not
49  * request a specific IP address. */
50 static struct in_addr request_ip;
51
52 /* --vendor-class: Vendor class string to include in request.  If null, no
53  * vendor class string is included. */
54 static const char *vendor_class;
55
56 static void parse_options(int argc, char *argv[]);
57 static void usage(void);
58 static void release(void *cli_);
59 static void modify_dhcp_request(struct dhcp_msg *, void *aux);
60
61 int
62 main(int argc, char *argv[])
63 {
64     struct dhclient *cli;
65     int error;
66
67     set_program_name(argv[0]);
68     register_fault_handlers();
69     vlog_init();
70     parse_options(argc, argv);
71
72     argc -= optind;
73     argv += optind;
74     if (argc != 1) {
75         fatal(0, "exactly one non-option argument required; "
76               "use --help for help");
77     }
78
79     error = dhclient_create(argv[0], modify_dhcp_request, NULL, NULL, &cli);
80     if (error) {
81         fatal(error, "dhclient_create failed");
82     }
83     dhclient_init(cli, request_ip.s_addr);
84     fatal_signal_add_hook(release, cli);
85
86     for (;;) {
87         fatal_signal_block();
88         dhclient_run(cli);
89         if (dhclient_changed(cli)) {
90             dhclient_configure_netdev(cli);
91         }
92         dhclient_wait(cli);
93         fatal_signal_unblock();
94         poll_block();
95     }
96 }
97
98 static void
99 release(void *cli_)
100 {
101     struct dhclient *cli = cli_;
102     dhclient_release(cli);
103     if (dhclient_changed(cli)) {
104         dhclient_configure_netdev(cli);
105     }
106 }
107
108 static void
109 modify_dhcp_request(struct dhcp_msg *msg, void *aux UNUSED)
110 {
111     if (vendor_class) {
112         dhcp_msg_put_string(msg, DHCP_CODE_VENDOR_CLASS, vendor_class);
113     }
114 }
115
116 static void
117 parse_options(int argc, char *argv[])
118 {
119     enum {
120         OPT_REQUEST_IP = UCHAR_MAX + 1,
121         OPT_VENDOR_CLASS
122     };
123     static struct option long_options[] = {
124         {"request-ip",  required_argument, 0, OPT_REQUEST_IP },
125         {"vendor-class", required_argument, 0, OPT_VENDOR_CLASS },
126         {"verbose",     optional_argument, 0, 'v'},
127         {"help",        no_argument, 0, 'h'},
128         {"version",     no_argument, 0, 'V'},
129         {0, 0, 0, 0},
130     };
131     char *short_options = long_options_to_short_options(long_options);
132
133     for (;;) {
134         int c;
135
136         c = getopt_long(argc, argv, short_options, long_options, NULL);
137         if (c == -1) {
138             break;
139         }
140
141         switch (c) {
142         case OPT_REQUEST_IP:
143             if (!inet_aton(optarg, &request_ip)) {
144                 fatal(0, "--request-ip argument is not a valid IP address");
145             }
146             break;
147
148         case OPT_VENDOR_CLASS:
149             vendor_class = optarg;
150             break;
151
152         case 'h':
153             usage();
154
155         case 'V':
156             printf("%s "VERSION" compiled "__DATE__" "__TIME__"\n", argv[0]);
157             exit(EXIT_SUCCESS);
158
159         case 'v':
160             vlog_set_verbosity(optarg);
161             break;
162
163         case '?':
164             exit(EXIT_FAILURE);
165
166         default:
167             abort();
168         }
169     }
170     free(short_options);
171 }
172
173 static void
174 usage(void)
175 {
176     printf("%s: standalone program for testing OpenFlow DHCP client.\n"
177            "usage: %s [OPTIONS] NETDEV\n"
178            "where NETDEV is a network device (e.g. eth0).\n"
179            "\nDHCP options:\n"
180            "  --request-ip=IP         request specified IP address (default:\n"
181            "                          do not request a specific IP)\n"
182            "  --vendor-class=STRING   use STRING as vendor class (default:\n"
183            "                          none); use OpenFlow to imitate secchan\n"
184            "\nOther options:\n"
185            "  -v, --verbose=MODULE[:FACILITY[:LEVEL]]  set logging levels\n"
186            "  -v, --verbose           set maximum verbosity level\n"
187            "  -h, --help              display this help message\n"
188            "  -V, --version           display version information\n",
189            program_name, program_name);
190     exit(EXIT_SUCCESS);
191 }
192