]> git.proxmox.com Git - ovs.git/blob - utilities/ovs-dpctl.c
Factor out common code from utilities that multiplex commands.
[ovs.git] / utilities / ovs-dpctl.c
1 /*
2 * Copyright (c) 2008, 2009 Nicira Networks.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 #include <config.h>
18 #include <arpa/inet.h>
19 #include <errno.h>
20 #include <getopt.h>
21 #include <inttypes.h>
22 #include <net/if.h>
23 #include <netinet/in.h>
24 #include <signal.h>
25 #include <stdarg.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <unistd.h>
29 #include <sys/stat.h>
30 #include <sys/time.h>
31
32 #include "command-line.h"
33 #include "compiler.h"
34 #include "dirs.h"
35 #include "dpif.h"
36 #include "dynamic-string.h"
37 #include "netdev.h"
38 #include "odp-util.h"
39 #include "svec.h"
40 #include "timeval.h"
41 #include "util.h"
42
43 #include "vlog.h"
44 #define THIS_MODULE VLM_dpctl
45
46 static const struct command all_commands[];
47
48 static void usage(void) NO_RETURN;
49 static void parse_options(int argc, char *argv[]);
50
51 int
52 main(int argc, char *argv[])
53 {
54 set_program_name(argv[0]);
55 time_init();
56 vlog_init();
57 parse_options(argc, argv);
58 signal(SIGPIPE, SIG_IGN);
59 run_command(argc - optind, argv + optind, all_commands);
60 return 0;
61 }
62
63 static void
64 parse_options(int argc, char *argv[])
65 {
66 static struct option long_options[] = {
67 {"timeout", required_argument, 0, 't'},
68 {"verbose", optional_argument, 0, 'v'},
69 {"help", no_argument, 0, 'h'},
70 {"version", no_argument, 0, 'V'},
71 {0, 0, 0, 0},
72 };
73 char *short_options = long_options_to_short_options(long_options);
74
75 for (;;) {
76 unsigned long int timeout;
77 int c;
78
79 c = getopt_long(argc, argv, short_options, long_options, NULL);
80 if (c == -1) {
81 break;
82 }
83
84 switch (c) {
85 case 't':
86 timeout = strtoul(optarg, NULL, 10);
87 if (timeout <= 0) {
88 ovs_fatal(0, "value %s on -t or --timeout is not at least 1",
89 optarg);
90 } else {
91 time_alarm(timeout);
92 }
93 break;
94
95 case 'h':
96 usage();
97
98 case 'V':
99 OVS_PRINT_VERSION(0, 0);
100 exit(EXIT_SUCCESS);
101
102 case 'v':
103 vlog_set_verbosity(optarg);
104 break;
105
106 case '?':
107 exit(EXIT_FAILURE);
108
109 default:
110 abort();
111 }
112 }
113 free(short_options);
114 }
115
116 static void
117 usage(void)
118 {
119 printf("%s: Open vSwitch datapath management utility\n"
120 "usage: %s [OPTIONS] COMMAND [ARG...]\n"
121 " add-dp DP [IFACE...] add new datapath DP (with IFACEs)\n"
122 " del-dp DP delete local datapath DP\n"
123 " add-if DP IFACE... add each IFACE as a port on DP\n"
124 " del-if DP IFACE... delete each IFACE from DP\n"
125 " dump-dps display names of all datapaths\n"
126 " show show basic info on all datapaths\n"
127 " show DP... show basic info on each DP\n"
128 " dump-flows DP display flows in DP\n"
129 " del-flows DP delete all flows from DP\n"
130 " dump-groups DP display port groups in DP\n",
131 program_name, program_name);
132 vlog_usage();
133 printf("\nOther options:\n"
134 " -t, --timeout=SECS give up after SECS seconds\n"
135 " -h, --help display this help message\n"
136 " -V, --version display version information\n");
137 exit(EXIT_SUCCESS);
138 }
139
140 static void run(int retval, const char *message, ...)
141 PRINTF_FORMAT(2, 3);
142
143 static void run(int retval, const char *message, ...)
144 {
145 if (retval) {
146 va_list args;
147
148 fprintf(stderr, "%s: ", program_name);
149 va_start(args, message);
150 vfprintf(stderr, message, args);
151 va_end(args);
152 if (retval == EOF) {
153 fputs(": unexpected end of file\n", stderr);
154 } else {
155 fprintf(stderr, ": %s\n", strerror(retval));
156 }
157
158 exit(EXIT_FAILURE);
159 }
160 }
161 \f
162 static void do_add_if(int argc, char *argv[]);
163
164 static int if_up(const char *netdev_name)
165 {
166 struct netdev *netdev;
167 int retval;
168
169 retval = netdev_open(netdev_name, NETDEV_ETH_TYPE_NONE, &netdev);
170 if (!retval) {
171 retval = netdev_turn_flags_on(netdev, NETDEV_UP, true);
172 netdev_close(netdev);
173 }
174 return retval;
175 }
176
177 static void
178 do_add_dp(int argc UNUSED, char *argv[])
179 {
180 struct dpif *dpif;
181 run(dpif_create(argv[1], &dpif), "add_dp");
182 dpif_close(dpif);
183 if (argc > 2) {
184 do_add_if(argc, argv);
185 }
186 }
187
188 static void
189 do_del_dp(int argc UNUSED, char *argv[])
190 {
191 struct dpif *dpif;
192 run(dpif_open(argv[1], &dpif), "opening datapath");
193 run(dpif_delete(dpif), "del_dp");
194 dpif_close(dpif);
195 }
196
197 static int
198 compare_ports(const void *a_, const void *b_)
199 {
200 const struct odp_port *a = a_;
201 const struct odp_port *b = b_;
202 return a->port < b->port ? -1 : a->port > b->port;
203 }
204
205 static void
206 query_ports(struct dpif *dpif, struct odp_port **ports, size_t *n_ports)
207 {
208 run(dpif_port_list(dpif, ports, n_ports), "listing ports");
209 qsort(*ports, *n_ports, sizeof **ports, compare_ports);
210 }
211
212 static void
213 do_add_if(int argc UNUSED, char *argv[])
214 {
215 bool failure = false;
216 struct dpif *dpif;
217 int i;
218
219 run(dpif_open(argv[1], &dpif), "opening datapath");
220 for (i = 2; i < argc; i++) {
221 char *save_ptr = NULL;
222 char *devname, *suboptions;
223 int flags = 0;
224 int error;
225
226 devname = strtok_r(argv[i], ",", &save_ptr);
227 if (!devname) {
228 ovs_error(0, "%s is not a valid network device name", argv[i]);
229 continue;
230 }
231
232 suboptions = strtok_r(NULL, "", &save_ptr);
233 if (suboptions) {
234 enum {
235 AP_INTERNAL
236 };
237 static char *options[] = {
238 "internal"
239 };
240
241 while (*suboptions != '\0') {
242 char *value;
243
244 switch (getsubopt(&suboptions, options, &value)) {
245 case AP_INTERNAL:
246 flags |= ODP_PORT_INTERNAL;
247 break;
248
249 default:
250 ovs_error(0, "unknown suboption '%s'", value);
251 break;
252 }
253 }
254 }
255
256 error = dpif_port_add(dpif, devname, flags, NULL);
257 if (error) {
258 ovs_error(error, "adding %s to %s failed", devname, argv[1]);
259 failure = true;
260 } else if (if_up(devname)) {
261 failure = true;
262 }
263 }
264 dpif_close(dpif);
265 if (failure) {
266 exit(EXIT_FAILURE);
267 }
268 }
269
270 static bool
271 get_port_number(struct dpif *dpif, const char *name, uint16_t *port)
272 {
273 struct odp_port *ports;
274 size_t n_ports;
275 size_t i;
276
277 query_ports(dpif, &ports, &n_ports);
278 for (i = 0; i < n_ports; i++) {
279 if (!strcmp(name, ports[i].devname)) {
280 *port = ports[i].port;
281 free(ports);
282 return true;
283 }
284 }
285 free(ports);
286 ovs_error(0, "no port named %s", name);
287 return false;
288 }
289
290 static void
291 do_del_if(int argc UNUSED, char *argv[])
292 {
293 bool failure = false;
294 struct dpif *dpif;
295 int i;
296
297 run(dpif_open(argv[1], &dpif), "opening datapath");
298 for (i = 2; i < argc; i++) {
299 const char *name = argv[i];
300 uint16_t port;
301 int error;
302
303 if (!name[strspn(name, "0123456789")]) {
304 port = atoi(name);
305 } else if (!get_port_number(dpif, name, &port)) {
306 failure = true;
307 continue;
308 }
309
310 error = dpif_port_del(dpif, port);
311 if (error) {
312 ovs_error(error, "deleting port %s from %s failed", name, argv[1]);
313 failure = true;
314 }
315 }
316 dpif_close(dpif);
317 if (failure) {
318 exit(EXIT_FAILURE);
319 }
320 }
321
322 static void
323 show_dpif(struct dpif *dpif)
324 {
325 struct odp_port *ports;
326 struct odp_stats stats;
327 size_t n_ports;
328 size_t i;
329
330 printf("%s:\n", dpif_name(dpif));
331 if (!dpif_get_dp_stats(dpif, &stats)) {
332 printf("\tflows: cur:%"PRIu32", soft-max:%"PRIu32", "
333 "hard-max:%"PRIu32"\n",
334 stats.n_flows, stats.cur_capacity, stats.max_capacity);
335 printf("\tports: cur:%"PRIu32", max:%"PRIu32"\n",
336 stats.n_ports, stats.max_ports);
337 printf("\tgroups: max:%"PRIu16"\n", stats.max_groups);
338 printf("\tlookups: frags:%"PRIu64", hit:%"PRIu64", missed:%"PRIu64", "
339 "lost:%"PRIu64"\n",
340 stats.n_frags, stats.n_hit, stats.n_missed, stats.n_lost);
341 printf("\tqueues: max-miss:%"PRIu16", max-action:%"PRIu16"\n",
342 stats.max_miss_queue, stats.max_action_queue);
343 }
344 query_ports(dpif, &ports, &n_ports);
345 for (i = 0; i < n_ports; i++) {
346 printf("\tport %u: %s", ports[i].port, ports[i].devname);
347 if (ports[i].flags & ODP_PORT_INTERNAL) {
348 printf(" (internal)");
349 }
350 printf("\n");
351 }
352 free(ports);
353 dpif_close(dpif);
354 }
355
356 static void
357 do_show(int argc, char *argv[])
358 {
359 bool failure = false;
360 if (argc > 1) {
361 int i;
362 for (i = 1; i < argc; i++) {
363 const char *name = argv[i];
364 struct dpif *dpif;
365 int error;
366
367 error = dpif_open(name, &dpif);
368 if (!error) {
369 show_dpif(dpif);
370 } else {
371 ovs_error(error, "opening datapath %s failed", name);
372 failure = true;
373 }
374 }
375 } else {
376 unsigned int i;
377 for (i = 0; i < ODP_MAX; i++) {
378 char name[128];
379 struct dpif *dpif;
380 int error;
381
382 sprintf(name, "dp%u", i);
383 error = dpif_open(name, &dpif);
384 if (!error) {
385 show_dpif(dpif);
386 } else if (error != ENODEV) {
387 ovs_error(error, "opening datapath %s failed", name);
388 failure = true;
389 }
390 }
391 }
392 if (failure) {
393 exit(EXIT_FAILURE);
394 }
395 }
396
397 static void
398 do_dump_dps(int argc UNUSED, char *argv[] UNUSED)
399 {
400 struct svec all_dps;
401 unsigned int i;
402 int error;
403
404 svec_init(&all_dps);
405 error = dp_enumerate(&all_dps);
406
407 for (i = 0; i < all_dps.n; i++) {
408 struct dpif *dpif;
409 if (!dpif_open(all_dps.names[i], &dpif)) {
410 printf("%s\n", dpif_name(dpif));
411 dpif_close(dpif);
412 }
413 }
414
415 svec_destroy(&all_dps);
416 if (error) {
417 exit(EXIT_FAILURE);
418 }
419 }
420
421 static void
422 do_dump_flows(int argc UNUSED, char *argv[])
423 {
424 struct odp_flow *flows;
425 struct dpif *dpif;
426 size_t n_flows;
427 struct ds ds;
428 size_t i;
429
430 run(dpif_open(argv[1], &dpif), "opening datapath");
431 run(dpif_flow_list_all(dpif, &flows, &n_flows), "listing all flows");
432
433 ds_init(&ds);
434 for (i = 0; i < n_flows; i++) {
435 struct odp_flow *f = &flows[i];
436 enum { MAX_ACTIONS = 4096 / sizeof(union odp_action) };
437 union odp_action actions[MAX_ACTIONS];
438
439 f->actions = actions;
440 f->n_actions = MAX_ACTIONS;
441 dpif_flow_get(dpif, f);
442
443 ds_clear(&ds);
444 format_odp_flow(&ds, f);
445 printf("%s\n", ds_cstr(&ds));
446 }
447 ds_destroy(&ds);
448 dpif_close(dpif);
449 }
450
451 static void
452 do_del_flows(int argc UNUSED, char *argv[])
453 {
454 struct dpif *dpif;
455
456 run(dpif_open(argv[1], &dpif), "opening datapath");
457 run(dpif_flow_flush(dpif), "deleting all flows");
458 dpif_close(dpif);
459 }
460
461 static void
462 do_dump_groups(int argc UNUSED, char *argv[])
463 {
464 struct odp_stats stats;
465 struct dpif *dpif;
466 unsigned int i;
467
468 run(dpif_open(argv[1], &dpif), "opening datapath");
469 run(dpif_get_dp_stats(dpif, &stats), "get datapath stats");
470 for (i = 0; i < stats.max_groups; i++) {
471 uint16_t *ports;
472 size_t n_ports;
473
474 if (!dpif_port_group_get(dpif, i, &ports, &n_ports) && n_ports) {
475 size_t j;
476
477 printf("group %u:", i);
478 for (j = 0; j < n_ports; j++) {
479 printf(" %"PRIu16, ports[j]);
480 }
481 printf("\n");
482 }
483 free(ports);
484 }
485 dpif_close(dpif);
486 }
487
488 static void
489 do_help(int argc UNUSED, char *argv[] UNUSED)
490 {
491 usage();
492 }
493
494 static const struct command all_commands[] = {
495 { "add-dp", 1, INT_MAX, do_add_dp },
496 { "del-dp", 1, 1, do_del_dp },
497 { "add-if", 2, INT_MAX, do_add_if },
498 { "del-if", 2, INT_MAX, do_del_if },
499 { "dump-dps", 0, 0, do_dump_dps },
500 { "show", 0, INT_MAX, do_show },
501 { "dump-flows", 1, 1, do_dump_flows },
502 { "del-flows", 1, 1, do_del_flows },
503 { "dump-groups", 1, 1, do_dump_groups },
504 { "help", 0, INT_MAX, do_help },
505 { NULL, 0, 0, NULL },
506 };