ofproto: Add support for flow cookies (OpenFlow 1.0)
[sliver-openvswitch.git] / utilities / ovs-ofctl.c
1 /*
2  * Copyright (c) 2008, 2009, 2010 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 "netlink.h"
39 #include "odp-util.h"
40 #include "ofp-print.h"
41 #include "ofpbuf.h"
42 #include "openflow/nicira-ext.h"
43 #include "openflow/openflow.h"
44 #include "packets.h"
45 #include "random.h"
46 #include "socket-util.h"
47 #include "timeval.h"
48 #include "util.h"
49 #include "vconn-ssl.h"
50 #include "vconn.h"
51 #include "xtoxll.h"
52
53 #include "vlog.h"
54 #define THIS_MODULE VLM_ofctl
55
56 #define DEFAULT_IDLE_TIMEOUT 60
57
58 #define MOD_PORT_CMD_UP      "up"
59 #define MOD_PORT_CMD_DOWN    "down"
60 #define MOD_PORT_CMD_FLOOD   "flood"
61 #define MOD_PORT_CMD_NOFLOOD "noflood"
62
63
64 /* Settings that may be configured by the user. */
65 struct settings {
66     bool strict;        /* Use strict matching for flow mod commands */
67 };
68
69 struct command {
70     const char *name;
71     int min_args;
72     int max_args;
73     void (*handler)(const struct settings *, int argc, char *argv[]);
74 };
75
76 static struct command all_commands[];
77
78 static void usage(void) NO_RETURN;
79 static void parse_options(int argc, char *argv[], struct settings *);
80
81 int main(int argc, char *argv[])
82 {
83     struct settings s;
84     struct command *p;
85
86     set_program_name(argv[0]);
87     time_init();
88     vlog_init();
89     parse_options(argc, argv, &s);
90     signal(SIGPIPE, SIG_IGN);
91
92     argc -= optind;
93     argv += optind;
94     if (argc < 1)
95         ovs_fatal(0, "missing command name; use --help for help");
96
97     for (p = all_commands; p->name != NULL; p++) {
98         if (!strcmp(p->name, argv[0])) {
99             int n_arg = argc - 1;
100             if (n_arg < p->min_args)
101                 ovs_fatal(0, "'%s' command requires at least %d arguments",
102                           p->name, p->min_args);
103             else if (n_arg > p->max_args)
104                 ovs_fatal(0, "'%s' command takes at most %d arguments",
105                           p->name, p->max_args);
106             else {
107                 p->handler(&s, argc, argv);
108                 if (ferror(stdout)) {
109                     ovs_fatal(0, "write to stdout failed");
110                 }
111                 if (ferror(stderr)) {
112                     ovs_fatal(0, "write to stderr failed");
113                 }
114                 exit(0);
115             }
116         }
117     }
118     ovs_fatal(0, "unknown command '%s'; use --help for help", argv[0]);
119
120     return 0;
121 }
122
123 static void
124 parse_options(int argc, char *argv[], struct settings *s)
125 {
126     enum {
127         OPT_STRICT = UCHAR_MAX + 1,
128         VLOG_OPTION_ENUMS
129     };
130     static struct option long_options[] = {
131         {"timeout", required_argument, 0, 't'},
132         {"strict", no_argument, 0, OPT_STRICT},
133         {"help", no_argument, 0, 'h'},
134         {"version", no_argument, 0, 'V'},
135         VLOG_LONG_OPTIONS,
136         VCONN_SSL_LONG_OPTIONS
137         {0, 0, 0, 0},
138     };
139     char *short_options = long_options_to_short_options(long_options);
140
141     /* Set defaults that we can figure out before parsing options. */
142     s->strict = false;
143
144     for (;;) {
145         unsigned long int timeout;
146         int c;
147
148         c = getopt_long(argc, argv, short_options, long_options, NULL);
149         if (c == -1) {
150             break;
151         }
152
153         switch (c) {
154         case 't':
155             timeout = strtoul(optarg, NULL, 10);
156             if (timeout <= 0) {
157                 ovs_fatal(0, "value %s on -t or --timeout is not at least 1",
158                           optarg);
159             } else {
160                 time_alarm(timeout);
161             }
162             break;
163
164         case 'h':
165             usage();
166
167         case 'V':
168             OVS_PRINT_VERSION(OFP_VERSION, OFP_VERSION);
169             exit(EXIT_SUCCESS);
170
171         case OPT_STRICT:
172             s->strict = true;
173             break;
174
175         VLOG_OPTION_HANDLERS
176         VCONN_SSL_OPTION_HANDLERS
177
178         case '?':
179             exit(EXIT_FAILURE);
180
181         default:
182             abort();
183         }
184     }
185     free(short_options);
186 }
187
188 static void
189 usage(void)
190 {
191     printf("%s: OpenFlow switch management utility\n"
192            "usage: %s [OPTIONS] COMMAND [ARG...]\n"
193            "\nFor OpenFlow switches:\n"
194            "  show SWITCH                 show OpenFlow information\n"
195            "  status SWITCH [KEY]         report statistics (about KEY)\n"
196            "  dump-desc SWITCH            print switch description\n"
197            "  dump-tables SWITCH          print table stats\n"
198            "  mod-port SWITCH IFACE ACT   modify port behavior\n"
199            "  dump-ports SWITCH           print port statistics\n"
200            "  dump-flows SWITCH           print all flow entries\n"
201            "  dump-flows SWITCH FLOW      print matching FLOWs\n"
202            "  dump-aggregate SWITCH       print aggregate flow statistics\n"
203            "  dump-aggregate SWITCH FLOW  print aggregate stats for FLOWs\n"
204            "  add-flow SWITCH FLOW        add flow described by FLOW\n"
205            "  add-flows SWITCH FILE       add flows from FILE\n"
206            "  mod-flows SWITCH FLOW       modify actions of matching FLOWs\n"
207            "  del-flows SWITCH [FLOW]     delete matching FLOWs\n"
208            "  monitor SWITCH MISSLEN EXP  print packets received from SWITCH\n"
209            "  execute SWITCH CMD [ARG...] execute CMD with ARGS on SWITCH\n"
210            "\nFor OpenFlow switches and controllers:\n"
211            "  probe VCONN                 probe whether VCONN is up\n"
212            "  ping VCONN [N]              latency of N-byte echos\n"
213            "  benchmark VCONN N COUNT     bandwidth of COUNT N-byte echos\n"
214            "where each SWITCH is an active OpenFlow connection method.\n",
215            program_name, program_name);
216     vconn_usage(true, false, false);
217     vlog_usage();
218     printf("\nOther options:\n"
219            "  --strict                    use strict match for flow commands\n"
220            "  -t, --timeout=SECS          give up after SECS seconds\n"
221            "  -h, --help                  display this help message\n"
222            "  -V, --version               display version information\n");
223     exit(EXIT_SUCCESS);
224 }
225
226 static void run(int retval, const char *message, ...)
227     PRINTF_FORMAT(2, 3);
228
229 static void run(int retval, const char *message, ...)
230 {
231     if (retval) {
232         va_list args;
233
234         fprintf(stderr, "%s: ", program_name);
235         va_start(args, message);
236         vfprintf(stderr, message, args);
237         va_end(args);
238         if (retval == EOF) {
239             fputs(": unexpected end of file\n", stderr);
240         } else {
241             fprintf(stderr, ": %s\n", strerror(retval));
242         }
243
244         exit(EXIT_FAILURE);
245     }
246 }
247 \f
248 /* Generic commands. */
249
250 static void
251 open_vconn(const char *name, struct vconn **vconnp)
252 {
253     struct dpif *dpif;
254     struct stat s;
255
256     if (strstr(name, ":")) {
257         run(vconn_open_block(name, OFP_VERSION, vconnp),
258             "connecting to %s", name);
259     } else if (!stat(name, &s) && S_ISSOCK(s.st_mode)) {
260         char *vconn_name = xasprintf("unix:%s", name);
261         VLOG_INFO("connecting to %s", vconn_name);
262         run(vconn_open_block(vconn_name, OFP_VERSION, vconnp),
263             "connecting to %s", vconn_name);
264         free(vconn_name);
265     } else if (!dpif_open(name, &dpif)) {
266         char dpif_name[IF_NAMESIZE + 1];
267         char *socket_name;
268         char *vconn_name;
269
270         run(dpif_port_get_name(dpif, ODPP_LOCAL, dpif_name, sizeof dpif_name),
271             "obtaining name of %s", dpif_name);
272         dpif_close(dpif);
273         if (strcmp(dpif_name, name)) {
274             VLOG_INFO("datapath %s is named %s", name, dpif_name);
275         }
276
277         socket_name = xasprintf("%s/%s.mgmt", ovs_rundir, dpif_name);
278         if (stat(socket_name, &s)) {
279             ovs_fatal(errno, "cannot connect to %s: stat failed on %s",
280                       name, socket_name);
281         } else if (!S_ISSOCK(s.st_mode)) {
282             ovs_fatal(0, "cannot connect to %s: %s is not a socket",
283                       name, socket_name);
284         }
285
286         vconn_name = xasprintf("unix:%s", socket_name);
287         VLOG_INFO("connecting to %s", vconn_name);
288         run(vconn_open_block(vconn_name, OFP_VERSION, vconnp),
289             "connecting to %s", vconn_name);
290         free(socket_name);
291         free(vconn_name);
292     } else {
293         ovs_fatal(0, "%s is not a valid connection method", name);
294     }
295 }
296
297 static void *
298 alloc_stats_request(size_t body_len, uint16_t type, struct ofpbuf **bufferp)
299 {
300     struct ofp_stats_request *rq;
301     rq = make_openflow((offsetof(struct ofp_stats_request, body)
302                         + body_len), OFPT_STATS_REQUEST, bufferp);
303     rq->type = htons(type);
304     rq->flags = htons(0);
305     return rq->body;
306 }
307
308 static void
309 send_openflow_buffer(struct vconn *vconn, struct ofpbuf *buffer)
310 {
311     update_openflow_length(buffer);
312     run(vconn_send_block(vconn, buffer), "failed to send packet to switch");
313 }
314
315 static void
316 dump_transaction(const char *vconn_name, struct ofpbuf *request)
317 {
318     struct vconn *vconn;
319     struct ofpbuf *reply;
320
321     update_openflow_length(request);
322     open_vconn(vconn_name, &vconn);
323     run(vconn_transact(vconn, request, &reply), "talking to %s", vconn_name);
324     ofp_print(stdout, reply->data, reply->size, 1);
325     vconn_close(vconn);
326 }
327
328 static void
329 dump_trivial_transaction(const char *vconn_name, uint8_t request_type)
330 {
331     struct ofpbuf *request;
332     make_openflow(sizeof(struct ofp_header), request_type, &request);
333     dump_transaction(vconn_name, request);
334 }
335
336 static void
337 dump_stats_transaction(const char *vconn_name, struct ofpbuf *request)
338 {
339     uint32_t send_xid = ((struct ofp_header *) request->data)->xid;
340     struct vconn *vconn;
341     bool done = false;
342
343     open_vconn(vconn_name, &vconn);
344     send_openflow_buffer(vconn, request);
345     while (!done) {
346         uint32_t recv_xid;
347         struct ofpbuf *reply;
348
349         run(vconn_recv_block(vconn, &reply), "OpenFlow packet receive failed");
350         recv_xid = ((struct ofp_header *) reply->data)->xid;
351         if (send_xid == recv_xid) {
352             struct ofp_stats_reply *osr;
353
354             ofp_print(stdout, reply->data, reply->size, 1);
355
356             osr = ofpbuf_at(reply, 0, sizeof *osr);
357             done = !osr || !(ntohs(osr->flags) & OFPSF_REPLY_MORE);
358         } else {
359             VLOG_DBG("received reply with xid %08"PRIx32" "
360                      "!= expected %08"PRIx32, recv_xid, send_xid);
361         }
362         ofpbuf_delete(reply);
363     }
364     vconn_close(vconn);
365 }
366
367 static void
368 dump_trivial_stats_transaction(const char *vconn_name, uint8_t stats_type)
369 {
370     struct ofpbuf *request;
371     alloc_stats_request(0, stats_type, &request);
372     dump_stats_transaction(vconn_name, request);
373 }
374
375 static void
376 do_show(const struct settings *s UNUSED, int argc UNUSED, char *argv[])
377 {
378     dump_trivial_transaction(argv[1], OFPT_FEATURES_REQUEST);
379     dump_trivial_transaction(argv[1], OFPT_GET_CONFIG_REQUEST);
380 }
381
382 static void
383 do_status(const struct settings *s UNUSED, int argc, char *argv[])
384 {
385     struct nicira_header *request, *reply;
386     struct vconn *vconn;
387     struct ofpbuf *b;
388
389     request = make_openflow(sizeof *request, OFPT_VENDOR, &b);
390     request->vendor = htonl(NX_VENDOR_ID);
391     request->subtype = htonl(NXT_STATUS_REQUEST);
392     if (argc > 2) {
393         ofpbuf_put(b, argv[2], strlen(argv[2]));
394         update_openflow_length(b);
395     }
396     open_vconn(argv[1], &vconn);
397     run(vconn_transact(vconn, b, &b), "talking to %s", argv[1]);
398     vconn_close(vconn);
399
400     if (b->size < sizeof *reply) {
401         ovs_fatal(0, "short reply (%zu bytes)", b->size);
402     }
403     reply = b->data;
404     if (reply->header.type != OFPT_VENDOR
405         || reply->vendor != ntohl(NX_VENDOR_ID)
406         || reply->subtype != ntohl(NXT_STATUS_REPLY)) {
407         ofp_print(stderr, b->data, b->size, 2);
408         ovs_fatal(0, "bad reply");
409     }
410
411     fwrite(reply + 1, b->size - sizeof *reply, 1, stdout);
412 }
413
414 static void
415 do_dump_desc(const struct settings *s UNUSED, int argc UNUSED, char *argv[])
416 {
417     dump_trivial_stats_transaction(argv[1], OFPST_DESC);
418 }
419
420 static void
421 do_dump_tables(const struct settings *s UNUSED, int argc UNUSED, char *argv[])
422 {
423     dump_trivial_stats_transaction(argv[1], OFPST_TABLE);
424 }
425
426
427 static uint32_t
428 str_to_u32(const char *str) 
429 {
430     char *tail;
431     uint32_t value;
432
433     errno = 0;
434     value = strtoul(str, &tail, 0);
435     if (errno == EINVAL || errno == ERANGE || *tail) {
436         ovs_fatal(0, "invalid numeric format %s", str);
437     }
438     return value;
439 }
440
441 static void
442 str_to_mac(const char *str, uint8_t mac[6]) 
443 {
444     if (sscanf(str, ETH_ADDR_SCAN_FMT, ETH_ADDR_SCAN_ARGS(mac))
445         != ETH_ADDR_SCAN_COUNT) {
446         ovs_fatal(0, "invalid mac address %s", str);
447     }
448 }
449
450 static uint32_t
451 str_to_ip(const char *str_, uint32_t *ip)
452 {
453     char *str = xstrdup(str_);
454     char *save_ptr = NULL;
455     const char *name, *netmask;
456     struct in_addr in_addr;
457     int n_wild, retval;
458
459     name = strtok_r(str, "/", &save_ptr);
460     retval = name ? lookup_ip(name, &in_addr) : EINVAL;
461     if (retval) {
462         ovs_fatal(0, "%s: could not convert to IP address", str);
463     }
464     *ip = in_addr.s_addr;
465
466     netmask = strtok_r(NULL, "/", &save_ptr);
467     if (netmask) {
468         uint8_t o[4];
469         if (sscanf(netmask, "%"SCNu8".%"SCNu8".%"SCNu8".%"SCNu8,
470                    &o[0], &o[1], &o[2], &o[3]) == 4) {
471             uint32_t nm = (o[0] << 24) | (o[1] << 16) | (o[2] << 8) | o[3];
472             int i;
473
474             /* Find first 1-bit. */
475             for (i = 0; i < 32; i++) {
476                 if (nm & (1u << i)) {
477                     break;
478                 }
479             }
480             n_wild = i;
481
482             /* Verify that the rest of the bits are 1-bits. */
483             for (; i < 32; i++) {
484                 if (!(nm & (1u << i))) {
485                     ovs_fatal(0, "%s: %s is not a valid netmask",
486                               str, netmask);
487                 }
488             }
489         } else {
490             int prefix = atoi(netmask);
491             if (prefix <= 0 || prefix > 32) {
492                 ovs_fatal(0, "%s: network prefix bits not between 1 and 32",
493                           str);
494             }
495             n_wild = 32 - prefix;
496         }
497     } else {
498         n_wild = 0;
499     }
500
501     free(str);
502     return n_wild;
503 }
504
505 static void *
506 put_action(struct ofpbuf *b, size_t size, uint16_t type)
507 {
508     struct ofp_action_header *ah = ofpbuf_put_zeros(b, size);
509     ah->type = htons(type);
510     ah->len = htons(size);
511     return ah;
512 }
513
514 static struct ofp_action_output *
515 put_output_action(struct ofpbuf *b, uint16_t port)
516 {
517     struct ofp_action_output *oao = put_action(b, sizeof *oao, OFPAT_OUTPUT);
518     oao->port = htons(port);
519     return oao;
520 }
521
522 static void
523 put_dl_addr_action(struct ofpbuf *b, uint16_t type, const char *addr)
524 {
525     struct ofp_action_dl_addr *oada = put_action(b, sizeof *oada, type);
526     str_to_mac(addr, oada->dl_addr);
527 }
528
529
530 static bool
531 parse_port_name(const char *name, uint16_t *port)
532 {
533     struct pair {
534         const char *name;
535         uint16_t value;
536     };
537     static const struct pair pairs[] = {
538 #define DEF_PAIR(NAME) {#NAME, OFPP_##NAME}
539         DEF_PAIR(IN_PORT),
540         DEF_PAIR(TABLE),
541         DEF_PAIR(NORMAL),
542         DEF_PAIR(FLOOD),
543         DEF_PAIR(ALL),
544         DEF_PAIR(CONTROLLER),
545         DEF_PAIR(LOCAL),
546         DEF_PAIR(NONE),
547 #undef DEF_PAIR
548     };
549     static const int n_pairs = ARRAY_SIZE(pairs);
550     size_t i;
551
552     for (i = 0; i < n_pairs; i++) {
553         if (!strcasecmp(name, pairs[i].name)) {
554             *port = pairs[i].value;
555             return true;
556         }
557     }
558     return false;
559 }
560
561 static void
562 str_to_action(char *str, struct ofpbuf *b)
563 {
564     char *act, *arg;
565     char *saveptr = NULL;
566     bool drop = false;
567     int n_actions;
568
569     for (act = strtok_r(str, ", \t\r\n", &saveptr), n_actions = 0; act;
570          act = strtok_r(NULL, ", \t\r\n", &saveptr), n_actions++) 
571     {
572         uint16_t port;
573
574         if (drop) {
575             ovs_fatal(0, "Drop actions must not be followed by other actions");
576         }
577
578         /* Arguments are separated by colons */
579         arg = strchr(act, ':');
580         if (arg) {
581             *arg = '\0';
582             arg++;
583         }
584
585         if (!strcasecmp(act, "mod_vlan_vid")) {
586             struct ofp_action_vlan_vid *va;
587             va = put_action(b, sizeof *va, OFPAT_SET_VLAN_VID);
588             va->vlan_vid = htons(str_to_u32(arg));
589         } else if (!strcasecmp(act, "mod_vlan_pcp")) {
590             struct ofp_action_vlan_pcp *va;
591             va = put_action(b, sizeof *va, OFPAT_SET_VLAN_PCP);
592             va->vlan_pcp = str_to_u32(arg);
593         } else if (!strcasecmp(act, "strip_vlan")) {
594             struct ofp_action_header *ah;
595             ah = put_action(b, sizeof *ah, OFPAT_STRIP_VLAN);
596             ah->type = htons(OFPAT_STRIP_VLAN);
597         } else if (!strcasecmp(act, "mod_dl_src")) {
598             put_dl_addr_action(b, OFPAT_SET_DL_SRC, arg);
599         } else if (!strcasecmp(act, "mod_dl_dst")) {
600             put_dl_addr_action(b, OFPAT_SET_DL_DST, arg);
601         } else if (!strcasecmp(act, "mod_nw_src")) {
602             struct ofp_action_nw_addr *na;
603             na = put_action(b, sizeof *na, OFPAT_SET_NW_SRC);
604             str_to_ip(arg, &na->nw_addr);
605         } else if (!strcasecmp(act, "mod_nw_dst")) {
606             struct ofp_action_nw_addr *na;
607             na = put_action(b, sizeof *na, OFPAT_SET_NW_DST);
608             str_to_ip(arg, &na->nw_addr);
609         } else if (!strcasecmp(act, "mod_tp_src")) {
610             struct ofp_action_tp_port *ta;
611             ta = put_action(b, sizeof *ta, OFPAT_SET_TP_SRC);
612             ta->tp_port = htons(str_to_u32(arg));
613         } else if (!strcasecmp(act, "mod_tp_dst")) {
614             struct ofp_action_tp_port *ta;
615             ta = put_action(b, sizeof *ta, OFPAT_SET_TP_DST);
616             ta->tp_port = htons(str_to_u32(arg));
617         } else if (!strcasecmp(act, "mod_nw_tos")) {
618             struct ofp_action_nw_tos *nt;
619             nt = put_action(b, sizeof *nt, OFPAT_SET_NW_TOS);
620             nt->nw_tos = str_to_u32(arg);
621         } else if (!strcasecmp(act, "output")) {
622             put_output_action(b, str_to_u32(arg));
623         } else if (!strcasecmp(act, "drop")) {
624             /* A drop action in OpenFlow occurs by just not setting 
625              * an action. */
626             drop = true;
627             if (n_actions) {
628                 ovs_fatal(0, "Drop actions must not be preceded by other "
629                           "actions");
630             }
631         } else if (!strcasecmp(act, "CONTROLLER")) {
632             struct ofp_action_output *oao;
633             oao = put_output_action(b, OFPP_CONTROLLER);
634
635             /* Unless a numeric argument is specified, we send the whole
636              * packet to the controller. */
637             if (arg && (strspn(act, "0123456789") == strlen(act))) {
638                oao->max_len = htons(str_to_u32(arg));
639             } else {
640                 oao->max_len = htons(UINT16_MAX);
641             }
642         } else if (parse_port_name(act, &port)) {
643             put_output_action(b, port);
644         } else if (strspn(act, "0123456789") == strlen(act)) {
645             put_output_action(b, str_to_u32(act));
646         } else {
647             ovs_fatal(0, "Unknown action: %s", act);
648         }
649     }
650 }
651
652 struct protocol {
653     const char *name;
654     uint16_t dl_type;
655     uint8_t nw_proto;
656 };
657
658 static bool
659 parse_protocol(const char *name, const struct protocol **p_out)
660 {
661     static const struct protocol protocols[] = {
662         { "ip", ETH_TYPE_IP, 0 },
663         { "arp", ETH_TYPE_ARP, 0 },
664         { "icmp", ETH_TYPE_IP, IP_TYPE_ICMP },
665         { "tcp", ETH_TYPE_IP, IP_TYPE_TCP },
666         { "udp", ETH_TYPE_IP, IP_TYPE_UDP },
667     };
668     const struct protocol *p;
669
670     for (p = protocols; p < &protocols[ARRAY_SIZE(protocols)]; p++) {
671         if (!strcmp(p->name, name)) {
672             *p_out = p;
673             return true;
674         }
675     }
676     *p_out = NULL;
677     return false;
678 }
679
680 struct field {
681     const char *name;
682     uint32_t wildcard;
683     enum { F_U8, F_U16, F_MAC, F_IP } type;
684     size_t offset, shift;
685 };
686
687 static bool
688 parse_field(const char *name, const struct field **f_out) 
689 {
690 #define F_OFS(MEMBER) offsetof(struct ofp_match, MEMBER)
691     static const struct field fields[] = { 
692         { "in_port", OFPFW_IN_PORT, F_U16, F_OFS(in_port), 0 },
693         { "dl_vlan", OFPFW_DL_VLAN, F_U16, F_OFS(dl_vlan), 0 },
694         { "dl_vlan_pcp", OFPFW_DL_VLAN_PCP, F_U8, F_OFS(dl_vlan_pcp), 0 },
695         { "dl_src", OFPFW_DL_SRC, F_MAC, F_OFS(dl_src), 0 },
696         { "dl_dst", OFPFW_DL_DST, F_MAC, F_OFS(dl_dst), 0 },
697         { "dl_type", OFPFW_DL_TYPE, F_U16, F_OFS(dl_type), 0 },
698         { "nw_src", OFPFW_NW_SRC_MASK, F_IP,
699           F_OFS(nw_src), OFPFW_NW_SRC_SHIFT },
700         { "nw_dst", OFPFW_NW_DST_MASK, F_IP,
701           F_OFS(nw_dst), OFPFW_NW_DST_SHIFT },
702         { "nw_proto", OFPFW_NW_PROTO, F_U8, F_OFS(nw_proto), 0 },
703         { "tp_src", OFPFW_TP_SRC, F_U16, F_OFS(tp_src), 0 },
704         { "tp_dst", OFPFW_TP_DST, F_U16, F_OFS(tp_dst), 0 },
705         { "icmp_type", OFPFW_ICMP_TYPE, F_U16, F_OFS(icmp_type), 0 },
706         { "icmp_code", OFPFW_ICMP_CODE, F_U16, F_OFS(icmp_code), 0 }
707     };
708     const struct field *f;
709
710     for (f = fields; f < &fields[ARRAY_SIZE(fields)]; f++) {
711         if (!strcmp(f->name, name)) {
712             *f_out = f;
713             return true;
714         }
715     }
716     *f_out = NULL;
717     return false;
718 }
719
720 static void
721 str_to_flow(char *string, struct ofp_match *match, struct ofpbuf *actions,
722             uint8_t *table_idx, uint16_t *out_port, uint16_t *priority, 
723             uint16_t *idle_timeout, uint16_t *hard_timeout, 
724             uint64_t *cookie)
725 {
726     char *save_ptr = NULL;
727     char *name;
728     uint32_t wildcards;
729
730     if (table_idx) {
731         *table_idx = 0xff;
732     }
733     if (out_port) {
734         *out_port = OFPP_NONE;
735     }
736     if (priority) {
737         *priority = OFP_DEFAULT_PRIORITY;
738     }
739     if (idle_timeout) {
740         *idle_timeout = DEFAULT_IDLE_TIMEOUT;
741     }
742     if (hard_timeout) {
743         *hard_timeout = OFP_FLOW_PERMANENT;
744     }
745     if (cookie) {
746         *cookie = 0;
747     }
748     if (actions) {
749         char *act_str = strstr(string, "action");
750         if (!act_str) {
751             ovs_fatal(0, "must specify an action");
752         }
753         *(act_str-1) = '\0';
754
755         act_str = strchr(act_str, '=');
756         if (!act_str) {
757             ovs_fatal(0, "must specify an action");
758         }
759
760         act_str++;
761
762         str_to_action(act_str, actions);
763     }
764     memset(match, 0, sizeof *match);
765     wildcards = OFPFW_ALL;
766     for (name = strtok_r(string, "=, \t\r\n", &save_ptr); name;
767          name = strtok_r(NULL, "=, \t\r\n", &save_ptr)) {
768         const struct protocol *p;
769
770         if (parse_protocol(name, &p)) {
771             wildcards &= ~OFPFW_DL_TYPE;
772             match->dl_type = htons(p->dl_type);
773             if (p->nw_proto) {
774                 wildcards &= ~OFPFW_NW_PROTO;
775                 match->nw_proto = p->nw_proto;
776             }
777         } else {
778             const struct field *f;
779             char *value;
780
781             value = strtok_r(NULL, ", \t\r\n", &save_ptr);
782             if (!value) {
783                 ovs_fatal(0, "field %s missing value", name);
784             }
785         
786             if (table_idx && !strcmp(name, "table")) {
787                 *table_idx = atoi(value);
788             } else if (out_port && !strcmp(name, "out_port")) {
789                 *out_port = atoi(value);
790             } else if (priority && !strcmp(name, "priority")) {
791                 *priority = atoi(value);
792             } else if (idle_timeout && !strcmp(name, "idle_timeout")) {
793                 *idle_timeout = atoi(value);
794             } else if (hard_timeout && !strcmp(name, "hard_timeout")) {
795                 *hard_timeout = atoi(value);
796             } else if (cookie && !strcmp(name, "cookie")) {
797                 *cookie = atoi(value);
798             } else if (parse_field(name, &f)) {
799                 void *data = (char *) match + f->offset;
800                 if (!strcmp(value, "*") || !strcmp(value, "ANY")) {
801                     wildcards |= f->wildcard;
802                 } else {
803                     wildcards &= ~f->wildcard;
804                     if (f->wildcard == OFPFW_IN_PORT
805                         && parse_port_name(value, (uint16_t *) data)) {
806                         /* Nothing to do. */
807                     } else if (f->type == F_U8) {
808                         *(uint8_t *) data = str_to_u32(value);
809                     } else if (f->type == F_U16) {
810                         *(uint16_t *) data = htons(str_to_u32(value));
811                     } else if (f->type == F_MAC) {
812                         str_to_mac(value, data);
813                     } else if (f->type == F_IP) {
814                         wildcards |= str_to_ip(value, data) << f->shift;
815                     } else {
816                         NOT_REACHED();
817                     }
818                 }
819             } else {
820                 ovs_fatal(0, "unknown keyword %s", name);
821             }
822         }
823     }
824     match->wildcards = htonl(wildcards);
825 }
826
827 static void
828 do_dump_flows(const struct settings *s UNUSED, int argc, char *argv[])
829 {
830     struct ofp_flow_stats_request *req;
831     uint16_t out_port;
832     struct ofpbuf *request;
833
834     req = alloc_stats_request(sizeof *req, OFPST_FLOW, &request);
835     str_to_flow(argc > 2 ? argv[2] : "", &req->match, NULL,
836                 &req->table_id, &out_port, NULL, NULL, NULL, NULL);
837     memset(&req->pad, 0, sizeof req->pad);
838     req->out_port = htons(out_port);
839
840     dump_stats_transaction(argv[1], request);
841 }
842
843 static void
844 do_dump_aggregate(const struct settings *s UNUSED, int argc, char *argv[])
845 {
846     struct ofp_aggregate_stats_request *req;
847     struct ofpbuf *request;
848     uint16_t out_port;
849
850     req = alloc_stats_request(sizeof *req, OFPST_AGGREGATE, &request);
851     str_to_flow(argc > 2 ? argv[2] : "", &req->match, NULL,
852                 &req->table_id, &out_port, NULL, NULL, NULL, NULL);
853     memset(&req->pad, 0, sizeof req->pad);
854     req->out_port = htons(out_port);
855
856     dump_stats_transaction(argv[1], request);
857 }
858
859 static void
860 do_add_flow(const struct settings *s UNUSED, int argc UNUSED, char *argv[])
861 {
862     struct vconn *vconn;
863     struct ofpbuf *buffer;
864     struct ofp_flow_mod *ofm;
865     uint16_t priority, idle_timeout, hard_timeout;
866     uint64_t cookie;
867     struct ofp_match match;
868
869     /* Parse and send.  str_to_flow() will expand and reallocate the data in
870      * 'buffer', so we can't keep pointers to across the str_to_flow() call. */
871     make_openflow(sizeof *ofm, OFPT_FLOW_MOD, &buffer);
872     str_to_flow(argv[2], &match, buffer,
873                 NULL, NULL, &priority, &idle_timeout, &hard_timeout,
874                 &cookie);
875     ofm = buffer->data;
876     ofm->match = match;
877     ofm->command = htons(OFPFC_ADD);
878     ofm->cookie = htonll(cookie);
879     ofm->idle_timeout = htons(idle_timeout);
880     ofm->hard_timeout = htons(hard_timeout);
881     ofm->buffer_id = htonl(UINT32_MAX);
882     ofm->priority = htons(priority);
883
884     open_vconn(argv[1], &vconn);
885     send_openflow_buffer(vconn, buffer);
886     vconn_close(vconn);
887 }
888
889 static void
890 do_add_flows(const struct settings *s UNUSED, int argc UNUSED, char *argv[])
891 {
892     struct vconn *vconn;
893     FILE *file;
894     char line[1024];
895
896     file = fopen(argv[2], "r");
897     if (file == NULL) {
898         ovs_fatal(errno, "%s: open", argv[2]);
899     }
900
901     open_vconn(argv[1], &vconn);
902     while (fgets(line, sizeof line, file)) {
903         struct ofpbuf *buffer;
904         struct ofp_flow_mod *ofm;
905         uint16_t priority, idle_timeout, hard_timeout;
906         uint64_t cookie;
907         struct ofp_match match;
908
909         char *comment;
910
911         /* Delete comments. */
912         comment = strchr(line, '#');
913         if (comment) {
914             *comment = '\0';
915         }
916
917         /* Drop empty lines. */
918         if (line[strspn(line, " \t\n")] == '\0') {
919             continue;
920         }
921
922         /* Parse and send.  str_to_flow() will expand and reallocate the data
923          * in 'buffer', so we can't keep pointers to across the str_to_flow()
924          * call. */
925         ofm = make_openflow(sizeof *ofm, OFPT_FLOW_MOD, &buffer);
926         str_to_flow(line, &match, buffer,
927                     NULL, NULL, &priority, &idle_timeout, &hard_timeout,
928                     &cookie);
929         ofm = buffer->data;
930         ofm->match = match;
931         ofm->command = htons(OFPFC_ADD);
932         ofm->cookie = htonll(cookie);
933         ofm->idle_timeout = htons(idle_timeout);
934         ofm->hard_timeout = htons(hard_timeout);
935         ofm->buffer_id = htonl(UINT32_MAX);
936         ofm->priority = htons(priority);
937
938         send_openflow_buffer(vconn, buffer);
939     }
940     vconn_close(vconn);
941     fclose(file);
942 }
943
944 static void
945 do_mod_flows(const struct settings *s, int argc UNUSED, char *argv[])
946 {
947     uint16_t priority, idle_timeout, hard_timeout;
948     uint64_t cookie;
949     struct vconn *vconn;
950     struct ofpbuf *buffer;
951     struct ofp_flow_mod *ofm;
952     struct ofp_match match;
953
954     /* Parse and send.  str_to_flow() will expand and reallocate the data in
955      * 'buffer', so we can't keep pointers to across the str_to_flow() call. */
956     make_openflow(sizeof *ofm, OFPT_FLOW_MOD, &buffer);
957     str_to_flow(argv[2], &match, buffer,
958                 NULL, NULL, &priority, &idle_timeout, &hard_timeout,
959                 &cookie);
960     ofm = buffer->data;
961     ofm->match = match;
962     if (s->strict) {
963         ofm->command = htons(OFPFC_MODIFY_STRICT);
964     } else {
965         ofm->command = htons(OFPFC_MODIFY);
966     }
967     ofm->idle_timeout = htons(idle_timeout);
968     ofm->hard_timeout = htons(hard_timeout);
969     ofm->cookie = htonll(cookie);
970     ofm->buffer_id = htonl(UINT32_MAX);
971     ofm->priority = htons(priority);
972
973     open_vconn(argv[1], &vconn);
974     send_openflow_buffer(vconn, buffer);
975     vconn_close(vconn);
976 }
977
978 static void do_del_flows(const struct settings *s, int argc, char *argv[])
979 {
980     struct vconn *vconn;
981     uint16_t priority;
982     uint16_t out_port;
983     struct ofpbuf *buffer;
984     struct ofp_flow_mod *ofm;
985
986     /* Parse and send. */
987     ofm = make_openflow(sizeof *ofm, OFPT_FLOW_MOD, &buffer);
988     str_to_flow(argc > 2 ? argv[2] : "", &ofm->match, NULL, NULL, 
989                 &out_port, &priority, NULL, NULL, NULL);
990     if (s->strict) {
991         ofm->command = htons(OFPFC_DELETE_STRICT);
992     } else {
993         ofm->command = htons(OFPFC_DELETE);
994     }
995     ofm->idle_timeout = htons(0);
996     ofm->hard_timeout = htons(0);
997     ofm->buffer_id = htonl(UINT32_MAX);
998     ofm->out_port = htons(out_port);
999     ofm->priority = htons(priority);
1000
1001     open_vconn(argv[1], &vconn);
1002     send_openflow_buffer(vconn, buffer);
1003     vconn_close(vconn);
1004 }
1005
1006 static void
1007 do_monitor(const struct settings *s UNUSED, int argc UNUSED, char *argv[])
1008 {
1009     struct vconn *vconn;
1010
1011     open_vconn(argv[1], &vconn);
1012     if (argc > 2) {
1013         int miss_send_len = atoi(argv[2]);
1014         struct ofp_switch_config *osc;
1015         struct ofpbuf *buf;
1016
1017         osc = make_openflow(sizeof *osc, OFPT_SET_CONFIG, &buf);
1018         osc->miss_send_len = htons(miss_send_len);
1019         send_openflow_buffer(vconn, buf);
1020     }
1021     for (;;) {
1022         struct ofpbuf *b;
1023         run(vconn_recv_block(vconn, &b), "vconn_recv");
1024         ofp_print(stderr, b->data, b->size, 2);
1025         ofpbuf_delete(b);
1026     }
1027 }
1028
1029 static void
1030 do_dump_ports(const struct settings *s UNUSED, int argc UNUSED, char *argv[])
1031 {
1032     dump_trivial_stats_transaction(argv[1], OFPST_PORT);
1033 }
1034
1035 static void
1036 do_probe(const struct settings *s UNUSED, int argc UNUSED, char *argv[])
1037 {
1038     struct ofpbuf *request;
1039     struct vconn *vconn;
1040     struct ofpbuf *reply;
1041
1042     make_openflow(sizeof(struct ofp_header), OFPT_ECHO_REQUEST, &request);
1043     open_vconn(argv[1], &vconn);
1044     run(vconn_transact(vconn, request, &reply), "talking to %s", argv[1]);
1045     if (reply->size != sizeof(struct ofp_header)) {
1046         ovs_fatal(0, "reply does not match request");
1047     }
1048     ofpbuf_delete(reply);
1049     vconn_close(vconn);
1050 }
1051
1052 static void
1053 do_mod_port(const struct settings *s UNUSED, int argc UNUSED, char *argv[])
1054 {
1055     struct ofpbuf *request, *reply;
1056     struct ofp_switch_features *osf;
1057     struct ofp_port_mod *opm;
1058     struct vconn *vconn;
1059     char *endptr;
1060     int n_ports;
1061     int port_idx;
1062     int port_no;
1063     
1064
1065     /* Check if the argument is a port index.  Otherwise, treat it as
1066      * the port name. */
1067     port_no = strtol(argv[2], &endptr, 10);
1068     if (port_no == 0 && endptr == argv[2]) {
1069         port_no = -1;
1070     }
1071
1072     /* Send a "Features Request" to get the information we need in order 
1073      * to modify the port. */
1074     make_openflow(sizeof(struct ofp_header), OFPT_FEATURES_REQUEST, &request);
1075     open_vconn(argv[1], &vconn);
1076     run(vconn_transact(vconn, request, &reply), "talking to %s", argv[1]);
1077
1078     osf = reply->data;
1079     n_ports = (reply->size - sizeof *osf) / sizeof *osf->ports;
1080
1081     for (port_idx = 0; port_idx < n_ports; port_idx++) {
1082         if (port_no != -1) {
1083             /* Check argument as a port index */
1084             if (osf->ports[port_idx].port_no == htons(port_no)) {
1085                 break;
1086             }
1087         } else {
1088             /* Check argument as an interface name */
1089             if (!strncmp((char *)osf->ports[port_idx].name, argv[2], 
1090                         sizeof osf->ports[0].name)) {
1091                 break;
1092             }
1093
1094         }
1095     }
1096     if (port_idx == n_ports) {
1097         ovs_fatal(0, "couldn't find monitored port: %s", argv[2]);
1098     }
1099
1100     opm = make_openflow(sizeof(struct ofp_port_mod), OFPT_PORT_MOD, &request);
1101     opm->port_no = osf->ports[port_idx].port_no;
1102     memcpy(opm->hw_addr, osf->ports[port_idx].hw_addr, sizeof opm->hw_addr);
1103     opm->config = htonl(0);
1104     opm->mask = htonl(0);
1105     opm->advertise = htonl(0);
1106
1107     printf("modifying port: %s\n", osf->ports[port_idx].name);
1108
1109     if (!strncasecmp(argv[3], MOD_PORT_CMD_UP, sizeof MOD_PORT_CMD_UP)) {
1110         opm->mask |= htonl(OFPPC_PORT_DOWN);
1111     } else if (!strncasecmp(argv[3], MOD_PORT_CMD_DOWN, 
1112                 sizeof MOD_PORT_CMD_DOWN)) {
1113         opm->mask |= htonl(OFPPC_PORT_DOWN);
1114         opm->config |= htonl(OFPPC_PORT_DOWN);
1115     } else if (!strncasecmp(argv[3], MOD_PORT_CMD_FLOOD, 
1116                 sizeof MOD_PORT_CMD_FLOOD)) {
1117         opm->mask |= htonl(OFPPC_NO_FLOOD);
1118     } else if (!strncasecmp(argv[3], MOD_PORT_CMD_NOFLOOD, 
1119                 sizeof MOD_PORT_CMD_NOFLOOD)) {
1120         opm->mask |= htonl(OFPPC_NO_FLOOD);
1121         opm->config |= htonl(OFPPC_NO_FLOOD);
1122     } else {
1123         ovs_fatal(0, "unknown mod-port command '%s'", argv[3]);
1124     }
1125
1126     send_openflow_buffer(vconn, request);
1127
1128     ofpbuf_delete(reply);
1129     vconn_close(vconn);
1130 }
1131
1132 static void
1133 do_ping(const struct settings *s UNUSED, int argc, char *argv[])
1134 {
1135     size_t max_payload = 65535 - sizeof(struct ofp_header);
1136     unsigned int payload;
1137     struct vconn *vconn;
1138     int i;
1139
1140     payload = argc > 2 ? atoi(argv[2]) : 64;
1141     if (payload > max_payload) {
1142         ovs_fatal(0, "payload must be between 0 and %zu bytes", max_payload);
1143     }
1144
1145     open_vconn(argv[1], &vconn);
1146     for (i = 0; i < 10; i++) {
1147         struct timeval start, end;
1148         struct ofpbuf *request, *reply;
1149         struct ofp_header *rq_hdr, *rpy_hdr;
1150
1151         rq_hdr = make_openflow(sizeof(struct ofp_header) + payload,
1152                                OFPT_ECHO_REQUEST, &request);
1153         random_bytes(rq_hdr + 1, payload);
1154
1155         gettimeofday(&start, NULL);
1156         run(vconn_transact(vconn, ofpbuf_clone(request), &reply), "transact");
1157         gettimeofday(&end, NULL);
1158
1159         rpy_hdr = reply->data;
1160         if (reply->size != request->size
1161             || memcmp(rpy_hdr + 1, rq_hdr + 1, payload)
1162             || rpy_hdr->xid != rq_hdr->xid
1163             || rpy_hdr->type != OFPT_ECHO_REPLY) {
1164             printf("Reply does not match request.  Request:\n");
1165             ofp_print(stdout, request, request->size, 2);
1166             printf("Reply:\n");
1167             ofp_print(stdout, reply, reply->size, 2);
1168         }
1169         printf("%zu bytes from %s: xid=%08"PRIx32" time=%.1f ms\n",
1170                reply->size - sizeof *rpy_hdr, argv[1], rpy_hdr->xid,
1171                    (1000*(double)(end.tv_sec - start.tv_sec))
1172                    + (.001*(end.tv_usec - start.tv_usec)));
1173         ofpbuf_delete(request);
1174         ofpbuf_delete(reply);
1175     }
1176     vconn_close(vconn);
1177 }
1178
1179 static void
1180 do_benchmark(const struct settings *s UNUSED, int argc UNUSED, char *argv[])
1181 {
1182     size_t max_payload = 65535 - sizeof(struct ofp_header);
1183     struct timeval start, end;
1184     unsigned int payload_size, message_size;
1185     struct vconn *vconn;
1186     double duration;
1187     int count;
1188     int i;
1189
1190     payload_size = atoi(argv[2]);
1191     if (payload_size > max_payload) {
1192         ovs_fatal(0, "payload must be between 0 and %zu bytes", max_payload);
1193     }
1194     message_size = sizeof(struct ofp_header) + payload_size;
1195
1196     count = atoi(argv[3]);
1197
1198     printf("Sending %d packets * %u bytes (with header) = %u bytes total\n",
1199            count, message_size, count * message_size);
1200
1201     open_vconn(argv[1], &vconn);
1202     gettimeofday(&start, NULL);
1203     for (i = 0; i < count; i++) {
1204         struct ofpbuf *request, *reply;
1205         struct ofp_header *rq_hdr;
1206
1207         rq_hdr = make_openflow(message_size, OFPT_ECHO_REQUEST, &request);
1208         memset(rq_hdr + 1, 0, payload_size);
1209         run(vconn_transact(vconn, request, &reply), "transact");
1210         ofpbuf_delete(reply);
1211     }
1212     gettimeofday(&end, NULL);
1213     vconn_close(vconn);
1214
1215     duration = ((1000*(double)(end.tv_sec - start.tv_sec))
1216                 + (.001*(end.tv_usec - start.tv_usec)));
1217     printf("Finished in %.1f ms (%.0f packets/s) (%.0f bytes/s)\n",
1218            duration, count / (duration / 1000.0),
1219            count * message_size / (duration / 1000.0));
1220 }
1221
1222 static void
1223 do_execute(const struct settings *s UNUSED, int argc, char *argv[])
1224 {
1225     struct vconn *vconn;
1226     struct ofpbuf *request;
1227     struct nicira_header *nicira;
1228     struct nx_command_reply *ncr;
1229     uint32_t xid;
1230     int i;
1231
1232     nicira = make_openflow(sizeof *nicira, OFPT_VENDOR, &request);
1233     xid = nicira->header.xid;
1234     nicira->vendor = htonl(NX_VENDOR_ID);
1235     nicira->subtype = htonl(NXT_COMMAND_REQUEST);
1236     ofpbuf_put(request, argv[2], strlen(argv[2]));
1237     for (i = 3; i < argc; i++) {
1238         ofpbuf_put_zeros(request, 1);
1239         ofpbuf_put(request, argv[i], strlen(argv[i]));
1240     }
1241     update_openflow_length(request);
1242
1243     open_vconn(argv[1], &vconn);
1244     run(vconn_send_block(vconn, request), "send");
1245
1246     for (;;) {
1247         struct ofpbuf *reply;
1248         uint32_t status;
1249
1250         run(vconn_recv_xid(vconn, xid, &reply), "recv_xid");
1251         if (reply->size < sizeof *ncr) {
1252             ovs_fatal(0, "reply is too short (%zu bytes < %zu bytes)",
1253                       reply->size, sizeof *ncr);
1254         }
1255         ncr = reply->data;
1256         if (ncr->nxh.header.type != OFPT_VENDOR
1257             || ncr->nxh.vendor != htonl(NX_VENDOR_ID)
1258             || ncr->nxh.subtype != htonl(NXT_COMMAND_REPLY)) {
1259             ovs_fatal(0, "reply is invalid");
1260         }
1261
1262         status = ntohl(ncr->status);
1263         if (status & NXT_STATUS_STARTED) {
1264             /* Wait for a second reply. */
1265             continue;
1266         } else if (status & NXT_STATUS_EXITED) {
1267             fprintf(stderr, "process terminated normally with exit code %d",
1268                     status & NXT_STATUS_EXITSTATUS);
1269         } else if (status & NXT_STATUS_SIGNALED) {
1270             fprintf(stderr, "process terminated by signal %d",
1271                     status & NXT_STATUS_TERMSIG);
1272         } else if (status & NXT_STATUS_ERROR) {
1273             fprintf(stderr, "error executing command");
1274         } else {
1275             fprintf(stderr, "process terminated for unknown reason");
1276         }
1277         if (status & NXT_STATUS_COREDUMP) {
1278             fprintf(stderr, " (core dumped)");
1279         }
1280         putc('\n', stderr);
1281
1282         fwrite(ncr + 1, reply->size - sizeof *ncr, 1, stdout);
1283         break;
1284     }
1285 }
1286
1287 static void
1288 do_help(const struct settings *s UNUSED, int argc UNUSED, char *argv[] UNUSED)
1289 {
1290     usage();
1291 }
1292
1293 static struct command all_commands[] = {
1294     { "show", 1, 1, do_show },
1295     { "status", 1, 2, do_status },
1296     { "monitor", 1, 3, do_monitor },
1297     { "dump-desc", 1, 1, do_dump_desc },
1298     { "dump-tables", 1, 1, do_dump_tables },
1299     { "dump-flows", 1, 2, do_dump_flows },
1300     { "dump-aggregate", 1, 2, do_dump_aggregate },
1301     { "add-flow", 2, 2, do_add_flow },
1302     { "add-flows", 2, 2, do_add_flows },
1303     { "mod-flows", 2, 2, do_mod_flows },
1304     { "del-flows", 1, 2, do_del_flows },
1305     { "dump-ports", 1, 1, do_dump_ports },
1306     { "mod-port", 3, 3, do_mod_port },
1307     { "probe", 1, 1, do_probe },
1308     { "ping", 1, 2, do_ping },
1309     { "benchmark", 3, 3, do_benchmark },
1310     { "execute", 2, INT_MAX, do_execute },
1311     { "help", 0, INT_MAX, do_help },
1312     { NULL, 0, 0, NULL },
1313 };