3ed6eb6b62c654eb724fd7b4bd6750aec77cf938
[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         fatal_signal_unblock();
90         dhclient_wait(cli);
91         poll_block();
92     }
93 }
94
95 static void
96 release(void *cli_)
97 {
98     struct dhclient *cli = cli_;
99     dhclient_release(cli);
100 }
101
102 static void
103 modify_dhcp_request(struct dhcp_msg *msg, void *aux UNUSED)
104 {
105     if (vendor_class) {
106         dhcp_msg_put_string(msg, DHCP_CODE_VENDOR_CLASS, vendor_class);
107     }
108 }
109
110 static void
111 parse_options(int argc, char *argv[])
112 {
113     enum {
114         OPT_REQUEST_IP = UCHAR_MAX + 1,
115         OPT_VENDOR_CLASS
116     };
117     static struct option long_options[] = {
118         {"request-ip",  required_argument, 0, OPT_REQUEST_IP },
119         {"vendor-class", required_argument, 0, OPT_VENDOR_CLASS },
120         {"verbose",     optional_argument, 0, 'v'},
121         {"help",        no_argument, 0, 'h'},
122         {"version",     no_argument, 0, 'V'},
123         {0, 0, 0, 0},
124     };
125     char *short_options = long_options_to_short_options(long_options);
126
127     for (;;) {
128         int c;
129
130         c = getopt_long(argc, argv, short_options, long_options, NULL);
131         if (c == -1) {
132             break;
133         }
134
135         switch (c) {
136         case OPT_REQUEST_IP:
137             if (!inet_aton(optarg, &request_ip)) {
138                 fatal(0, "--request-ip argument is not a valid IP address");
139             }
140             break;
141
142         case OPT_VENDOR_CLASS:
143             vendor_class = optarg;
144             break;
145
146         case 'h':
147             usage();
148
149         case 'V':
150             printf("%s "VERSION" compiled "__DATE__" "__TIME__"\n", argv[0]);
151             exit(EXIT_SUCCESS);
152
153         case 'v':
154             vlog_set_verbosity(optarg);
155             break;
156
157         case '?':
158             exit(EXIT_FAILURE);
159
160         default:
161             abort();
162         }
163     }
164     free(short_options);
165 }
166
167 static void
168 usage(void)
169 {
170     printf("%s: standalone program for testing OpenFlow DHCP client.\n"
171            "usage: %s [OPTIONS] NETDEV\n"
172            "where NETDEV is a network device (e.g. eth0).\n"
173            "\nDHCP options:\n"
174            "  --request-ip=IP         request specified IP address (default:\n"
175            "                          do not request a specific IP)\n"
176            "  --vendor-class=STRING   use STRING as vendor class (default:\n"
177            "                          none); use OpenFlow to imitate secchan\n"
178            "\nOther options:\n"
179            "  -v, --verbose=MODULE[:FACILITY[:LEVEL]]  set logging levels\n"
180            "  -v, --verbose           set maximum verbosity level\n"
181            "  -h, --help              display this help message\n"
182            "  -V, --version           display version information\n",
183            program_name, program_name);
184     exit(EXIT_SUCCESS);
185 }
186