Implement basic multiple table support.
[sliver-openvswitch.git] / utilities / ovs-ofctl.c
1 /*
2  * Copyright (c) 2008, 2009, 2010, 2011 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 <errno.h>
19 #include <getopt.h>
20 #include <inttypes.h>
21 #include <sys/socket.h>
22 #include <net/if.h>
23 #include <signal.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <unistd.h>
27 #include <sys/stat.h>
28 #include <sys/time.h>
29
30 #include "byte-order.h"
31 #include "classifier.h"
32 #include "command-line.h"
33 #include "compiler.h"
34 #include "dirs.h"
35 #include "dynamic-string.h"
36 #include "netlink.h"
37 #include "nx-match.h"
38 #include "odp-util.h"
39 #include "ofp-parse.h"
40 #include "ofp-print.h"
41 #include "ofp-util.h"
42 #include "ofpbuf.h"
43 #include "ofproto/ofproto.h"
44 #include "openflow/nicira-ext.h"
45 #include "openflow/openflow.h"
46 #include "random.h"
47 #include "stream-ssl.h"
48 #include "timeval.h"
49 #include "util.h"
50 #include "vconn.h"
51 #include "vlog.h"
52
53 VLOG_DEFINE_THIS_MODULE(ofctl);
54
55 /* --strict: Use strict matching for flow mod commands? */
56 static bool strict;
57
58 /* -F, --flow-format: Flow format to use.  Either one of NXFF_* to force a
59  * particular flow format or -1 to let ovs-ofctl choose intelligently. */
60 static int preferred_flow_format = -1;
61
62 /* -m, --more: Additional verbosity for ofp-print functions. */
63 static int verbosity;
64
65 static const struct command all_commands[];
66
67 static void usage(void) NO_RETURN;
68 static void parse_options(int argc, char *argv[]);
69
70 int
71 main(int argc, char *argv[])
72 {
73     set_program_name(argv[0]);
74     parse_options(argc, argv);
75     signal(SIGPIPE, SIG_IGN);
76     run_command(argc - optind, argv + optind, all_commands);
77     return 0;
78 }
79
80 static void
81 parse_options(int argc, char *argv[])
82 {
83     enum {
84         OPT_STRICT = UCHAR_MAX + 1,
85         VLOG_OPTION_ENUMS
86     };
87     static struct option long_options[] = {
88         {"timeout", required_argument, 0, 't'},
89         {"strict", no_argument, 0, OPT_STRICT},
90         {"flow-format", required_argument, 0, 'F'},
91         {"more", no_argument, 0, 'm'},
92         {"help", no_argument, 0, 'h'},
93         {"version", no_argument, 0, 'V'},
94         VLOG_LONG_OPTIONS,
95         STREAM_SSL_LONG_OPTIONS
96         {0, 0, 0, 0},
97     };
98     char *short_options = long_options_to_short_options(long_options);
99
100     for (;;) {
101         unsigned long int timeout;
102         int c;
103
104         c = getopt_long(argc, argv, short_options, long_options, NULL);
105         if (c == -1) {
106             break;
107         }
108
109         switch (c) {
110         case 't':
111             timeout = strtoul(optarg, NULL, 10);
112             if (timeout <= 0) {
113                 ovs_fatal(0, "value %s on -t or --timeout is not at least 1",
114                           optarg);
115             } else {
116                 time_alarm(timeout);
117             }
118             break;
119
120         case 'F':
121             preferred_flow_format = ofputil_flow_format_from_string(optarg);
122             if (preferred_flow_format < 0) {
123                 ovs_fatal(0, "unknown flow format `%s'", optarg);
124             }
125             break;
126
127         case 'm':
128             verbosity++;
129             break;
130
131         case 'h':
132             usage();
133
134         case 'V':
135             OVS_PRINT_VERSION(OFP_VERSION, OFP_VERSION);
136             exit(EXIT_SUCCESS);
137
138         case OPT_STRICT:
139             strict = true;
140             break;
141
142         VLOG_OPTION_HANDLERS
143         STREAM_SSL_OPTION_HANDLERS
144
145         case '?':
146             exit(EXIT_FAILURE);
147
148         default:
149             abort();
150         }
151     }
152     free(short_options);
153 }
154
155 static void
156 usage(void)
157 {
158     printf("%s: OpenFlow switch management utility\n"
159            "usage: %s [OPTIONS] COMMAND [ARG...]\n"
160            "\nFor OpenFlow switches:\n"
161            "  show SWITCH                 show OpenFlow information\n"
162            "  dump-desc SWITCH            print switch description\n"
163            "  dump-tables SWITCH          print table stats\n"
164            "  mod-port SWITCH IFACE ACT   modify port behavior\n"
165            "  dump-ports SWITCH [PORT]    print port statistics\n"
166            "  dump-flows SWITCH           print all flow entries\n"
167            "  dump-flows SWITCH FLOW      print matching FLOWs\n"
168            "  dump-aggregate SWITCH       print aggregate flow statistics\n"
169            "  dump-aggregate SWITCH FLOW  print aggregate stats for FLOWs\n"
170            "  queue-stats SWITCH [PORT [QUEUE]]  dump queue stats\n"
171            "  add-flow SWITCH FLOW        add flow described by FLOW\n"
172            "  add-flows SWITCH FILE       add flows from FILE\n"
173            "  mod-flows SWITCH FLOW       modify actions of matching FLOWs\n"
174            "  del-flows SWITCH [FLOW]     delete matching FLOWs\n"
175            "  monitor SWITCH [MISSLEN]    print packets received from SWITCH\n"
176            "\nFor OpenFlow switches and controllers:\n"
177            "  probe VCONN                 probe whether VCONN is up\n"
178            "  ping VCONN [N]              latency of N-byte echos\n"
179            "  benchmark VCONN N COUNT     bandwidth of COUNT N-byte echos\n"
180            "where each SWITCH is an active OpenFlow connection method.\n",
181            program_name, program_name);
182     vconn_usage(true, false, false);
183     vlog_usage();
184     printf("\nOther options:\n"
185            "  --strict                    use strict match for flow commands\n"
186            "  -F, --flow-format=FORMAT    force particular flow format\n"
187            "  -m, --more                  be more verbose printing OpenFlow\n"
188            "  -t, --timeout=SECS          give up after SECS seconds\n"
189            "  -h, --help                  display this help message\n"
190            "  -V, --version               display version information\n");
191     exit(EXIT_SUCCESS);
192 }
193
194 static void run(int retval, const char *message, ...)
195     PRINTF_FORMAT(2, 3);
196
197 static void run(int retval, const char *message, ...)
198 {
199     if (retval) {
200         va_list args;
201
202         va_start(args, message);
203         ovs_fatal_valist(retval, message, args);
204     }
205 }
206 \f
207 /* Generic commands. */
208
209 static void
210 open_vconn_socket(const char *name, struct vconn **vconnp)
211 {
212     char *vconn_name = xasprintf("unix:%s", name);
213     VLOG_DBG("connecting to %s", vconn_name);
214     run(vconn_open_block(vconn_name, OFP_VERSION, vconnp),
215         "connecting to %s", vconn_name);
216     free(vconn_name);
217 }
218
219 static void
220 open_vconn__(const char *name, const char *default_suffix,
221              struct vconn **vconnp)
222 {
223     char *datapath_name, *datapath_type, *socket_name;
224     char *bridge_path;
225     struct stat s;
226
227     bridge_path = xasprintf("%s/%s.%s", ovs_rundir(), name, default_suffix);
228
229     ofproto_parse_name(name, &datapath_name, &datapath_type);
230     socket_name = xasprintf("%s/%s.%s",
231                             ovs_rundir(), datapath_name, default_suffix);
232     free(datapath_name);
233     free(datapath_type);
234
235     if (strstr(name, ":")) {
236         run(vconn_open_block(name, OFP_VERSION, vconnp),
237             "connecting to %s", name);
238     } else if (!stat(name, &s) && S_ISSOCK(s.st_mode)) {
239         open_vconn_socket(name, vconnp);
240     } else if (!stat(bridge_path, &s) && S_ISSOCK(s.st_mode)) {
241         open_vconn_socket(bridge_path, vconnp);
242     } else if (!stat(socket_name, &s)) {
243         if (!S_ISSOCK(s.st_mode)) {
244             ovs_fatal(0, "cannot connect to %s: %s is not a socket",
245                       name, socket_name);
246         }
247         open_vconn_socket(socket_name, vconnp);
248     } else {
249         ovs_fatal(0, "%s is not a valid connection method", name);
250     }
251
252     free(bridge_path);
253     free(socket_name);
254 }
255
256 static void
257 open_vconn(const char *name, struct vconn **vconnp)
258 {
259     return open_vconn__(name, "mgmt", vconnp);
260 }
261
262 static void *
263 alloc_stats_request(size_t body_len, uint16_t type, struct ofpbuf **bufferp)
264 {
265     struct ofp_stats_request *rq;
266     rq = make_openflow((offsetof(struct ofp_stats_request, body)
267                         + body_len), OFPT_STATS_REQUEST, bufferp);
268     rq->type = htons(type);
269     rq->flags = htons(0);
270     return rq->body;
271 }
272
273 static void
274 send_openflow_buffer(struct vconn *vconn, struct ofpbuf *buffer)
275 {
276     update_openflow_length(buffer);
277     run(vconn_send_block(vconn, buffer), "failed to send packet to switch");
278 }
279
280 static void
281 dump_transaction(const char *vconn_name, struct ofpbuf *request)
282 {
283     struct vconn *vconn;
284     struct ofpbuf *reply;
285
286     update_openflow_length(request);
287     open_vconn(vconn_name, &vconn);
288     run(vconn_transact(vconn, request, &reply), "talking to %s", vconn_name);
289     ofp_print(stdout, reply->data, reply->size, verbosity + 1);
290     vconn_close(vconn);
291 }
292
293 static void
294 dump_trivial_transaction(const char *vconn_name, uint8_t request_type)
295 {
296     struct ofpbuf *request;
297     make_openflow(sizeof(struct ofp_header), request_type, &request);
298     dump_transaction(vconn_name, request);
299 }
300
301 static void
302 dump_stats_transaction(const char *vconn_name, struct ofpbuf *request)
303 {
304     ovs_be32 send_xid = ((struct ofp_header *) request->data)->xid;
305     struct vconn *vconn;
306     bool done = false;
307
308     open_vconn(vconn_name, &vconn);
309     send_openflow_buffer(vconn, request);
310     while (!done) {
311         ovs_be32 recv_xid;
312         struct ofpbuf *reply;
313
314         run(vconn_recv_block(vconn, &reply), "OpenFlow packet receive failed");
315         recv_xid = ((struct ofp_header *) reply->data)->xid;
316         if (send_xid == recv_xid) {
317             struct ofp_stats_reply *osr;
318
319             ofp_print(stdout, reply->data, reply->size, verbosity + 1);
320
321             osr = ofpbuf_at(reply, 0, sizeof *osr);
322             done = !osr || !(ntohs(osr->flags) & OFPSF_REPLY_MORE);
323         } else {
324             VLOG_DBG("received reply with xid %08"PRIx32" "
325                      "!= expected %08"PRIx32, recv_xid, send_xid);
326         }
327         ofpbuf_delete(reply);
328     }
329     vconn_close(vconn);
330 }
331
332 static void
333 dump_trivial_stats_transaction(const char *vconn_name, uint8_t stats_type)
334 {
335     struct ofpbuf *request;
336     alloc_stats_request(0, stats_type, &request);
337     dump_stats_transaction(vconn_name, request);
338 }
339
340 /* Sends 'request', which should be a request that only has a reply if an error
341  * occurs, and waits for it to succeed or fail.  If an error does occur, prints
342  * it and exits with an error. */
343 static void
344 transact_multiple_noreply(struct vconn *vconn, struct list *requests)
345 {
346     struct ofpbuf *request, *reply;
347
348     LIST_FOR_EACH (request, list_node, requests) {
349         update_openflow_length(request);
350     }
351
352     run(vconn_transact_multiple_noreply(vconn, requests, &reply),
353         "talking to %s", vconn_get_name(vconn));
354     if (reply) {
355         ofp_print(stderr, reply->data, reply->size, verbosity + 2);
356         exit(1);
357     }
358     ofpbuf_delete(reply);
359 }
360
361 /* Sends 'request', which should be a request that only has a reply if an error
362  * occurs, and waits for it to succeed or fail.  If an error does occur, prints
363  * it and exits with an error. */
364 static void
365 transact_noreply(struct vconn *vconn, struct ofpbuf *request)
366 {
367     struct list requests;
368
369     list_init(&requests);
370     list_push_back(&requests, &request->list_node);
371     transact_multiple_noreply(vconn, &requests);
372 }
373
374 static void
375 do_show(int argc OVS_UNUSED, char *argv[])
376 {
377     dump_trivial_transaction(argv[1], OFPT_FEATURES_REQUEST);
378     dump_trivial_transaction(argv[1], OFPT_GET_CONFIG_REQUEST);
379 }
380
381 static void
382 do_dump_desc(int argc OVS_UNUSED, char *argv[])
383 {
384     dump_trivial_stats_transaction(argv[1], OFPST_DESC);
385 }
386
387 static void
388 do_dump_tables(int argc OVS_UNUSED, char *argv[])
389 {
390     dump_trivial_stats_transaction(argv[1], OFPST_TABLE);
391 }
392
393 /* Opens a connection to 'vconn_name', fetches the ofp_phy_port structure for
394  * 'port_name' (which may be a port name or number), and copies it into
395  * '*oppp'. */
396 static void
397 fetch_ofp_phy_port(const char *vconn_name, const char *port_name,
398                    struct ofp_phy_port *oppp)
399 {
400     struct ofpbuf *request, *reply;
401     struct ofp_switch_features *osf;
402     unsigned int port_no;
403     struct vconn *vconn;
404     int n_ports;
405     int port_idx;
406
407     /* Try to interpret the argument as a port number. */
408     if (!str_to_uint(port_name, 10, &port_no)) {
409         port_no = UINT_MAX;
410     }
411
412     /* Fetch the switch's ofp_switch_features. */
413     make_openflow(sizeof(struct ofp_header), OFPT_FEATURES_REQUEST, &request);
414     open_vconn(vconn_name, &vconn);
415     run(vconn_transact(vconn, request, &reply), "talking to %s", vconn_name);
416
417     osf = reply->data;
418     if (reply->size < sizeof *osf) {
419         ovs_fatal(0, "%s: received too-short features reply (only %zu bytes)",
420                   vconn_name, reply->size);
421     }
422     n_ports = (reply->size - sizeof *osf) / sizeof *osf->ports;
423
424     for (port_idx = 0; port_idx < n_ports; port_idx++) {
425         const struct ofp_phy_port *opp = &osf->ports[port_idx];
426
427         if (port_no != UINT_MAX
428             ? htons(port_no) == opp->port_no
429             : !strncmp(opp->name, port_name, sizeof opp->name)) {
430             *oppp = *opp;
431             ofpbuf_delete(reply);
432             vconn_close(vconn);
433             return;
434         }
435     }
436     ovs_fatal(0, "%s: couldn't find port `%s'", vconn_name, port_name);
437 }
438
439 /* Returns the port number corresponding to 'port_name' (which may be a port
440  * name or number) within the switch 'vconn_name'. */
441 static uint16_t
442 str_to_port_no(const char *vconn_name, const char *port_name)
443 {
444     unsigned int port_no;
445
446     if (str_to_uint(port_name, 10, &port_no)) {
447         return port_no;
448     } else {
449         struct ofp_phy_port opp;
450
451         fetch_ofp_phy_port(vconn_name, port_name, &opp);
452         return ntohs(opp.port_no);
453     }
454 }
455
456 static bool
457 try_set_flow_format(struct vconn *vconn, enum nx_flow_format flow_format)
458 {
459     struct ofpbuf *sff, *reply;
460
461     sff = ofputil_make_set_flow_format(flow_format);
462     run(vconn_transact_noreply(vconn, sff, &reply),
463         "talking to %s", vconn_get_name(vconn));
464     if (reply) {
465         char *s = ofp_to_string(reply->data, reply->size, 2);
466         VLOG_DBG("%s: failed to set flow format %s, controller replied: %s",
467                  vconn_get_name(vconn),
468                  ofputil_flow_format_to_string(flow_format),
469                  s);
470         free(s);
471         ofpbuf_delete(reply);
472         return false;
473     }
474     return true;
475 }
476
477 static void
478 set_flow_format(struct vconn *vconn, enum nx_flow_format flow_format)
479 {
480     struct ofpbuf *sff = ofputil_make_set_flow_format(flow_format);
481     transact_noreply(vconn, sff);
482     VLOG_DBG("%s: using user-specified flow format %s",
483              vconn_get_name(vconn),
484              ofputil_flow_format_to_string(flow_format));
485 }
486
487 static enum nx_flow_format
488 negotiate_highest_flow_format(struct vconn *vconn,
489                               enum nx_flow_format min_format)
490 {
491     if (preferred_flow_format != -1) {
492         if (preferred_flow_format < min_format) {
493             ovs_fatal(0, "%s: cannot use requested flow format %s for "
494                       "specified flow", vconn_get_name(vconn),
495                       ofputil_flow_format_to_string(min_format));
496         }
497
498         set_flow_format(vconn, preferred_flow_format);
499         return preferred_flow_format;
500     } else {
501         enum nx_flow_format flow_format;
502
503         if (try_set_flow_format(vconn, NXFF_NXM)) {
504             flow_format = NXFF_NXM;
505         } else if (try_set_flow_format(vconn, NXFF_TUN_ID_FROM_COOKIE)) {
506             flow_format = NXFF_TUN_ID_FROM_COOKIE;
507         } else {
508             flow_format = NXFF_OPENFLOW10;
509         }
510
511         if (flow_format < min_format) {
512             ovs_fatal(0, "%s: cannot use switch's most advanced flow format "
513                       "%s for specified flow", vconn_get_name(vconn),
514                       ofputil_flow_format_to_string(min_format));
515         }
516
517         VLOG_DBG("%s: negotiated flow format %s", vconn_get_name(vconn),
518                  ofputil_flow_format_to_string(flow_format));
519         return flow_format;
520     }
521 }
522
523 static void
524 do_dump_flows__(int argc, char *argv[], bool aggregate)
525 {
526     enum nx_flow_format min_flow_format, flow_format;
527     struct flow_stats_request fsr;
528     struct ofpbuf *request;
529     struct vconn *vconn;
530
531     parse_ofp_flow_stats_request_str(&fsr, aggregate, argc > 2 ? argv[2] : "");
532
533     open_vconn(argv[1], &vconn);
534     min_flow_format = ofputil_min_flow_format(&fsr.match, false, 0);
535     flow_format = negotiate_highest_flow_format(vconn, min_flow_format);
536     request = ofputil_encode_flow_stats_request(&fsr, flow_format);
537     dump_stats_transaction(argv[1], request);
538     vconn_close(vconn);
539 }
540
541 static void
542 do_dump_flows(int argc, char *argv[])
543 {
544     return do_dump_flows__(argc, argv, false);
545 }
546
547 static void
548 do_dump_aggregate(int argc, char *argv[])
549 {
550     return do_dump_flows__(argc, argv, true);
551 }
552
553 static void
554 do_queue_stats(int argc, char *argv[])
555 {
556     struct ofp_queue_stats_request *req;
557     struct ofpbuf *request;
558
559     req = alloc_stats_request(sizeof *req, OFPST_QUEUE, &request);
560
561     if (argc > 2 && argv[2][0] && strcasecmp(argv[2], "all")) {
562         req->port_no = htons(str_to_port_no(argv[1], argv[2]));
563     } else {
564         req->port_no = htons(OFPP_ALL);
565     }
566     if (argc > 3 && argv[3][0] && strcasecmp(argv[3], "all")) {
567         req->queue_id = htonl(atoi(argv[3]));
568     } else {
569         req->queue_id = htonl(OFPQ_ALL);
570     }
571
572     memset(req->pad, 0, sizeof req->pad);
573
574     dump_stats_transaction(argv[1], request);
575 }
576
577 /* Sets up the flow format for a vconn that will be used to modify the flow
578  * table.  Returns the flow format used, after possibly adding an OpenFlow
579  * request to 'requests'.
580  *
581  * If 'preferred_flow_format' is -1, returns NXFF_OPENFLOW10 without modifying
582  * 'requests', since NXFF_OPENFLOW10 is the default flow format for any
583  * OpenFlow connection.
584  *
585  * If 'preferred_flow_format' is a specific format, adds a request to set that
586  * format to 'requests' and returns the format. */
587 static enum nx_flow_format
588 set_initial_format_for_flow_mod(struct list *requests)
589 {
590     if (preferred_flow_format < 0) {
591         return NXFF_OPENFLOW10;
592     } else {
593         struct ofpbuf *sff;
594
595         sff = ofputil_make_set_flow_format(preferred_flow_format);
596         list_push_back(requests, &sff->list_node);
597         return preferred_flow_format;
598     }
599 }
600
601 /* Checks that 'flow_format' is acceptable as a flow format after a flow_mod
602  * operation, given the global 'preferred_flow_format'. */
603 static void
604 check_final_format_for_flow_mod(enum nx_flow_format flow_format)
605 {
606     if (preferred_flow_format >= 0 && flow_format > preferred_flow_format) {
607         ovs_fatal(0, "flow cannot be expressed in flow format %s "
608                   "(flow format %s or better is required)",
609                   ofputil_flow_format_to_string(preferred_flow_format),
610                   ofputil_flow_format_to_string(flow_format));
611     }
612 }
613
614 static void
615 do_flow_mod_file__(int argc OVS_UNUSED, char *argv[], uint16_t command)
616 {
617     enum nx_flow_format flow_format;
618     bool flow_mod_table_id;
619     struct list requests;
620     struct vconn *vconn;
621     FILE *file;
622
623     file = !strcmp(argv[2], "-") ? stdin : fopen(argv[2], "r");
624     if (file == NULL) {
625         ovs_fatal(errno, "%s: open", argv[2]);
626     }
627
628     list_init(&requests);
629     flow_format = set_initial_format_for_flow_mod(&requests);
630     flow_mod_table_id = false;
631
632     open_vconn(argv[1], &vconn);
633     while (parse_ofp_flow_mod_file(&requests, &flow_format, &flow_mod_table_id,
634                                    file, command)) {
635         check_final_format_for_flow_mod(flow_format);
636         transact_multiple_noreply(vconn, &requests);
637     }
638     vconn_close(vconn);
639
640     if (file != stdin) {
641         fclose(file);
642     }
643 }
644
645 static void
646 do_flow_mod__(int argc, char *argv[], uint16_t command)
647 {
648     enum nx_flow_format flow_format;
649     bool flow_mod_table_id;
650     struct list requests;
651     struct vconn *vconn;
652
653     if (argc > 2 && !strcmp(argv[2], "-")) {
654         do_flow_mod_file__(argc, argv, command);
655         return;
656     }
657
658     list_init(&requests);
659     flow_format = set_initial_format_for_flow_mod(&requests);
660     flow_mod_table_id = false;
661
662     parse_ofp_flow_mod_str(&requests, &flow_format, &flow_mod_table_id,
663                            argc > 2 ? argv[2] : "", command);
664     check_final_format_for_flow_mod(flow_format);
665
666     open_vconn(argv[1], &vconn);
667     transact_multiple_noreply(vconn, &requests);
668     vconn_close(vconn);
669 }
670
671 static void
672 do_add_flow(int argc, char *argv[])
673 {
674     do_flow_mod__(argc, argv, OFPFC_ADD);
675 }
676
677 static void
678 do_add_flows(int argc, char *argv[])
679 {
680     do_flow_mod_file__(argc, argv, OFPFC_ADD);
681 }
682
683 static void
684 do_mod_flows(int argc, char *argv[])
685 {
686     do_flow_mod__(argc, argv, strict ? OFPFC_MODIFY_STRICT : OFPFC_MODIFY);
687 }
688
689 static void
690 do_del_flows(int argc, char *argv[])
691 {
692     do_flow_mod__(argc, argv, strict ? OFPFC_DELETE_STRICT : OFPFC_DELETE);
693 }
694
695 static void
696 monitor_vconn(struct vconn *vconn)
697 {
698     for (;;) {
699         struct ofpbuf *b;
700         run(vconn_recv_block(vconn, &b), "vconn_recv");
701         ofp_print(stderr, b->data, b->size, verbosity + 2);
702         ofpbuf_delete(b);
703     }
704 }
705
706 static void
707 do_monitor(int argc, char *argv[])
708 {
709     struct vconn *vconn;
710
711     open_vconn(argv[1], &vconn);
712     if (argc > 2) {
713         int miss_send_len = atoi(argv[2]);
714         struct ofp_switch_config *osc;
715         struct ofpbuf *buf;
716
717         osc = make_openflow(sizeof *osc, OFPT_SET_CONFIG, &buf);
718         osc->miss_send_len = htons(miss_send_len);
719         transact_noreply(vconn, buf);
720     }
721     monitor_vconn(vconn);
722 }
723
724 static void
725 do_snoop(int argc OVS_UNUSED, char *argv[])
726 {
727     struct vconn *vconn;
728
729     open_vconn__(argv[1], "snoop", &vconn);
730     monitor_vconn(vconn);
731 }
732
733 static void
734 do_dump_ports(int argc, char *argv[])
735 {
736     struct ofp_port_stats_request *req;
737     struct ofpbuf *request;
738     uint16_t port;
739
740     req = alloc_stats_request(sizeof *req, OFPST_PORT, &request);
741     port = argc > 2 ? str_to_port_no(argv[1], argv[2]) : OFPP_NONE;
742     req->port_no = htons(port);
743     dump_stats_transaction(argv[1], request);
744 }
745
746 static void
747 do_probe(int argc OVS_UNUSED, char *argv[])
748 {
749     struct ofpbuf *request;
750     struct vconn *vconn;
751     struct ofpbuf *reply;
752
753     make_openflow(sizeof(struct ofp_header), OFPT_ECHO_REQUEST, &request);
754     open_vconn(argv[1], &vconn);
755     run(vconn_transact(vconn, request, &reply), "talking to %s", argv[1]);
756     if (reply->size != sizeof(struct ofp_header)) {
757         ovs_fatal(0, "reply does not match request");
758     }
759     ofpbuf_delete(reply);
760     vconn_close(vconn);
761 }
762
763 static void
764 do_mod_port(int argc OVS_UNUSED, char *argv[])
765 {
766     struct ofp_port_mod *opm;
767     struct ofp_phy_port opp;
768     struct ofpbuf *request;
769     struct vconn *vconn;
770
771     fetch_ofp_phy_port(argv[1], argv[2], &opp);
772
773     opm = make_openflow(sizeof(struct ofp_port_mod), OFPT_PORT_MOD, &request);
774     opm->port_no = opp.port_no;
775     memcpy(opm->hw_addr, opp.hw_addr, sizeof opm->hw_addr);
776     opm->config = htonl(0);
777     opm->mask = htonl(0);
778     opm->advertise = htonl(0);
779
780     if (!strcasecmp(argv[3], "up")) {
781         opm->mask |= htonl(OFPPC_PORT_DOWN);
782     } else if (!strcasecmp(argv[3], "down")) {
783         opm->mask |= htonl(OFPPC_PORT_DOWN);
784         opm->config |= htonl(OFPPC_PORT_DOWN);
785     } else if (!strcasecmp(argv[3], "flood")) {
786         opm->mask |= htonl(OFPPC_NO_FLOOD);
787     } else if (!strcasecmp(argv[3], "noflood")) {
788         opm->mask |= htonl(OFPPC_NO_FLOOD);
789         opm->config |= htonl(OFPPC_NO_FLOOD);
790     } else {
791         ovs_fatal(0, "unknown mod-port command '%s'", argv[3]);
792     }
793
794     open_vconn(argv[1], &vconn);
795     transact_noreply(vconn, request);
796     vconn_close(vconn);
797 }
798
799 static void
800 do_ping(int argc, char *argv[])
801 {
802     size_t max_payload = 65535 - sizeof(struct ofp_header);
803     unsigned int payload;
804     struct vconn *vconn;
805     int i;
806
807     payload = argc > 2 ? atoi(argv[2]) : 64;
808     if (payload > max_payload) {
809         ovs_fatal(0, "payload must be between 0 and %zu bytes", max_payload);
810     }
811
812     open_vconn(argv[1], &vconn);
813     for (i = 0; i < 10; i++) {
814         struct timeval start, end;
815         struct ofpbuf *request, *reply;
816         struct ofp_header *rq_hdr, *rpy_hdr;
817
818         rq_hdr = make_openflow(sizeof(struct ofp_header) + payload,
819                                OFPT_ECHO_REQUEST, &request);
820         random_bytes(rq_hdr + 1, payload);
821
822         xgettimeofday(&start);
823         run(vconn_transact(vconn, ofpbuf_clone(request), &reply), "transact");
824         xgettimeofday(&end);
825
826         rpy_hdr = reply->data;
827         if (reply->size != request->size
828             || memcmp(rpy_hdr + 1, rq_hdr + 1, payload)
829             || rpy_hdr->xid != rq_hdr->xid
830             || rpy_hdr->type != OFPT_ECHO_REPLY) {
831             printf("Reply does not match request.  Request:\n");
832             ofp_print(stdout, request, request->size, verbosity + 2);
833             printf("Reply:\n");
834             ofp_print(stdout, reply, reply->size, verbosity + 2);
835         }
836         printf("%zu bytes from %s: xid=%08"PRIx32" time=%.1f ms\n",
837                reply->size - sizeof *rpy_hdr, argv[1], ntohl(rpy_hdr->xid),
838                    (1000*(double)(end.tv_sec - start.tv_sec))
839                    + (.001*(end.tv_usec - start.tv_usec)));
840         ofpbuf_delete(request);
841         ofpbuf_delete(reply);
842     }
843     vconn_close(vconn);
844 }
845
846 static void
847 do_benchmark(int argc OVS_UNUSED, char *argv[])
848 {
849     size_t max_payload = 65535 - sizeof(struct ofp_header);
850     struct timeval start, end;
851     unsigned int payload_size, message_size;
852     struct vconn *vconn;
853     double duration;
854     int count;
855     int i;
856
857     payload_size = atoi(argv[2]);
858     if (payload_size > max_payload) {
859         ovs_fatal(0, "payload must be between 0 and %zu bytes", max_payload);
860     }
861     message_size = sizeof(struct ofp_header) + payload_size;
862
863     count = atoi(argv[3]);
864
865     printf("Sending %d packets * %u bytes (with header) = %u bytes total\n",
866            count, message_size, count * message_size);
867
868     open_vconn(argv[1], &vconn);
869     xgettimeofday(&start);
870     for (i = 0; i < count; i++) {
871         struct ofpbuf *request, *reply;
872         struct ofp_header *rq_hdr;
873
874         rq_hdr = make_openflow(message_size, OFPT_ECHO_REQUEST, &request);
875         memset(rq_hdr + 1, 0, payload_size);
876         run(vconn_transact(vconn, request, &reply), "transact");
877         ofpbuf_delete(reply);
878     }
879     xgettimeofday(&end);
880     vconn_close(vconn);
881
882     duration = ((1000*(double)(end.tv_sec - start.tv_sec))
883                 + (.001*(end.tv_usec - start.tv_usec)));
884     printf("Finished in %.1f ms (%.0f packets/s) (%.0f bytes/s)\n",
885            duration, count / (duration / 1000.0),
886            count * message_size / (duration / 1000.0));
887 }
888
889 static void
890 do_help(int argc OVS_UNUSED, char *argv[] OVS_UNUSED)
891 {
892     usage();
893 }
894 \f
895 /* replace-flows and diff-flows commands. */
896
897 /* A flow table entry, possibly with two different versions. */
898 struct fte {
899     struct cls_rule rule;       /* Within a "struct classifier". */
900     struct fte_version *versions[2];
901 };
902
903 /* One version of a Flow Table Entry. */
904 struct fte_version {
905     ovs_be64 cookie;
906     uint16_t idle_timeout;
907     uint16_t hard_timeout;
908     uint16_t flags;
909     union ofp_action *actions;
910     size_t n_actions;
911 };
912
913 /* Frees 'version' and the data that it owns. */
914 static void
915 fte_version_free(struct fte_version *version)
916 {
917     if (version) {
918         free(version->actions);
919         free(version);
920     }
921 }
922
923 /* Returns true if 'a' and 'b' are the same, false if they differ.
924  *
925  * Ignores differences in 'flags' because there's no way to retrieve flags from
926  * an OpenFlow switch.  We have to assume that they are the same. */
927 static bool
928 fte_version_equals(const struct fte_version *a, const struct fte_version *b)
929 {
930     return (a->cookie == b->cookie
931             && a->idle_timeout == b->idle_timeout
932             && a->hard_timeout == b->hard_timeout
933             && a->n_actions == b->n_actions
934             && !memcmp(a->actions, b->actions,
935                        a->n_actions * sizeof *a->actions));
936 }
937
938 /* Prints 'version' on stdout.  Expects the caller to have printed the rule
939  * associated with the version. */
940 static void
941 fte_version_print(const struct fte_version *version)
942 {
943     struct ds s;
944
945     if (version->cookie != htonll(0)) {
946         printf(" cookie=0x%"PRIx64, ntohll(version->cookie));
947     }
948     if (version->idle_timeout != OFP_FLOW_PERMANENT) {
949         printf(" idle_timeout=%"PRIu16, version->idle_timeout);
950     }
951     if (version->hard_timeout != OFP_FLOW_PERMANENT) {
952         printf(" hard_timeout=%"PRIu16, version->hard_timeout);
953     }
954
955     ds_init(&s);
956     ofp_print_actions(&s, (const struct ofp_action_header *) version->actions,
957                       version->n_actions * sizeof *version->actions);
958     printf(" %s\n", ds_cstr(&s));
959     ds_destroy(&s);
960 }
961
962 static struct fte *
963 fte_from_cls_rule(const struct cls_rule *cls_rule)
964 {
965     return cls_rule ? CONTAINER_OF(cls_rule, struct fte, rule) : NULL;
966 }
967
968 /* Frees 'fte' and its versions. */
969 static void
970 fte_free(struct fte *fte)
971 {
972     if (fte) {
973         fte_version_free(fte->versions[0]);
974         fte_version_free(fte->versions[1]);
975         free(fte);
976     }
977 }
978
979 /* Frees all of the FTEs within 'cls'. */
980 static void
981 fte_free_all(struct classifier *cls)
982 {
983     struct cls_cursor cursor;
984     struct fte *fte, *next;
985
986     cls_cursor_init(&cursor, cls, NULL);
987     CLS_CURSOR_FOR_EACH_SAFE (fte, next, rule, &cursor) {
988         classifier_remove(cls, &fte->rule);
989         fte_free(fte);
990     }
991 }
992
993 /* Searches 'cls' for an FTE matching 'rule', inserting a new one if
994  * necessary.  Sets 'version' as the version of that rule with the given
995  * 'index', replacing any existing version, if any.
996  *
997  * Takes ownership of 'version'. */
998 static void
999 fte_insert(struct classifier *cls, const struct cls_rule *rule,
1000            struct fte_version *version, int index)
1001 {
1002     struct fte *old, *fte;
1003
1004     fte = xzalloc(sizeof *fte);
1005     fte->rule = *rule;
1006     fte->versions[index] = version;
1007
1008     old = fte_from_cls_rule(classifier_replace(cls, &fte->rule));
1009     if (old) {
1010         fte_version_free(old->versions[index]);
1011         fte->versions[!index] = old->versions[!index];
1012         free(old);
1013     }
1014 }
1015
1016 /* Reads the flows in 'filename' as flow table entries in 'cls' for the version
1017  * with the specified 'index'.  Returns the minimum flow format required to
1018  * represent the flows that were read. */
1019 static enum nx_flow_format
1020 read_flows_from_file(const char *filename, struct classifier *cls, int index)
1021 {
1022     enum nx_flow_format min_flow_format;
1023     struct ds s;
1024     FILE *file;
1025
1026     file = !strcmp(filename, "-") ? stdin : fopen(filename, "r");
1027     if (file == NULL) {
1028         ovs_fatal(errno, "%s: open", filename);
1029     }
1030
1031     ds_init(&s);
1032     min_flow_format = NXFF_OPENFLOW10;
1033     while (!ds_get_preprocessed_line(&s, file)) {
1034         struct fte_version *version;
1035         enum nx_flow_format min_ff;
1036         struct ofpbuf actions;
1037         struct flow_mod fm;
1038
1039         ofpbuf_init(&actions, 64);
1040         parse_ofp_str(&fm, &actions, ds_cstr(&s));
1041
1042         version = xmalloc(sizeof *version);
1043         version->cookie = fm.cookie;
1044         version->idle_timeout = fm.idle_timeout;
1045         version->hard_timeout = fm.hard_timeout;
1046         version->flags = fm.flags & (OFPFF_SEND_FLOW_REM | OFPFF_EMERG);
1047         version->n_actions = actions.size / sizeof *version->actions;
1048         version->actions = ofpbuf_steal_data(&actions);
1049
1050         min_ff = ofputil_min_flow_format(&fm.cr, true, fm.cookie);
1051         min_flow_format = MAX(min_flow_format, min_ff);
1052         check_final_format_for_flow_mod(min_flow_format);
1053
1054         fte_insert(cls, &fm.cr, version, index);
1055     }
1056     ds_destroy(&s);
1057
1058     if (file != stdin) {
1059         fclose(file);
1060     }
1061
1062     return min_flow_format;
1063 }
1064
1065 /* Reads the OpenFlow flow table from 'vconn', which has currently active flow
1066  * format 'flow_format', and adds them as flow table entries in 'cls' for the
1067  * version with the specified 'index'. */
1068 static void
1069 read_flows_from_switch(struct vconn *vconn, enum nx_flow_format flow_format,
1070                        struct classifier *cls, int index)
1071 {
1072     struct flow_stats_request fsr;
1073     struct ofpbuf *request;
1074     ovs_be32 send_xid;
1075     bool done;
1076
1077     fsr.aggregate = false;
1078     cls_rule_init_catchall(&fsr.match, 0);
1079     fsr.out_port = OFPP_NONE;
1080     fsr.table_id = 0xff;
1081     request = ofputil_encode_flow_stats_request(&fsr, flow_format);
1082     send_xid = ((struct ofp_header *) request->data)->xid;
1083     send_openflow_buffer(vconn, request);
1084
1085     done = false;
1086     while (!done) {
1087         ovs_be32 recv_xid;
1088         struct ofpbuf *reply;
1089
1090         run(vconn_recv_block(vconn, &reply), "OpenFlow packet receive failed");
1091         recv_xid = ((struct ofp_header *) reply->data)->xid;
1092         if (send_xid == recv_xid) {
1093             const struct ofputil_msg_type *type;
1094             const struct ofp_stats_reply *osr;
1095             enum ofputil_msg_code code;
1096
1097             ofputil_decode_msg_type(reply->data, &type);
1098             code = ofputil_msg_type_code(type);
1099             if (code != OFPUTIL_OFPST_FLOW_REPLY &&
1100                 code != OFPUTIL_NXST_FLOW_REPLY) {
1101                 ovs_fatal(0, "received bad reply: %s",
1102                           ofp_to_string(reply->data, reply->size,
1103                                         verbosity + 1));
1104             }
1105
1106             osr = reply->data;
1107             if (!(osr->flags & htons(OFPSF_REPLY_MORE))) {
1108                 done = true;
1109             }
1110
1111             for (;;) {
1112                 struct fte_version *version;
1113                 struct ofputil_flow_stats fs;
1114                 int retval;
1115
1116                 retval = ofputil_decode_flow_stats_reply(&fs, reply,
1117                                                          flow_format);
1118                 if (retval) {
1119                     if (retval != EOF) {
1120                         ovs_fatal(0, "parse error in reply");
1121                     }
1122                     break;
1123                 }
1124
1125                 version = xmalloc(sizeof *version);
1126                 version->cookie = fs.cookie;
1127                 version->idle_timeout = fs.idle_timeout;
1128                 version->hard_timeout = fs.hard_timeout;
1129                 version->flags = 0;
1130                 version->n_actions = fs.n_actions;
1131                 version->actions = xmemdup(fs.actions,
1132                                            fs.n_actions * sizeof *fs.actions);
1133
1134                 fte_insert(cls, &fs.rule, version, index);
1135             }
1136         } else {
1137             VLOG_DBG("received reply with xid %08"PRIx32" "
1138                      "!= expected %08"PRIx32, recv_xid, send_xid);
1139         }
1140         ofpbuf_delete(reply);
1141     }
1142 }
1143
1144 static void
1145 fte_make_flow_mod(const struct fte *fte, int index, uint16_t command,
1146                   enum nx_flow_format flow_format, struct list *packets)
1147 {
1148     const struct fte_version *version = fte->versions[index];
1149     struct flow_mod fm;
1150     struct ofpbuf *ofm;
1151
1152     fm.cr = fte->rule;
1153     fm.cookie = version->cookie;
1154     fm.table_id = 0xff;
1155     fm.command = command;
1156     fm.idle_timeout = version->idle_timeout;
1157     fm.hard_timeout = version->hard_timeout;
1158     fm.buffer_id = UINT32_MAX;
1159     fm.out_port = OFPP_NONE;
1160     fm.flags = version->flags;
1161     if (command == OFPFC_ADD || command == OFPFC_MODIFY ||
1162         command == OFPFC_MODIFY_STRICT) {
1163         fm.actions = version->actions;
1164         fm.n_actions = version->n_actions;
1165     } else {
1166         fm.actions = NULL;
1167         fm.n_actions = 0;
1168     }
1169
1170     ofm = ofputil_encode_flow_mod(&fm, flow_format, false);
1171     list_push_back(packets, &ofm->list_node);
1172 }
1173
1174 static void
1175 do_replace_flows(int argc OVS_UNUSED, char *argv[])
1176 {
1177     enum { FILE_IDX = 0, SWITCH_IDX = 1 };
1178     enum nx_flow_format min_flow_format, flow_format;
1179     struct cls_cursor cursor;
1180     struct classifier cls;
1181     struct list requests;
1182     struct vconn *vconn;
1183     struct fte *fte;
1184
1185     classifier_init(&cls);
1186     min_flow_format = read_flows_from_file(argv[2], &cls, FILE_IDX);
1187
1188     open_vconn(argv[1], &vconn);
1189     flow_format = negotiate_highest_flow_format(vconn, min_flow_format);
1190     read_flows_from_switch(vconn, flow_format, &cls, SWITCH_IDX);
1191
1192     list_init(&requests);
1193
1194     /* Delete flows that exist on the switch but not in the file. */
1195     cls_cursor_init(&cursor, &cls, NULL);
1196     CLS_CURSOR_FOR_EACH (fte, rule, &cursor) {
1197         struct fte_version *file_ver = fte->versions[FILE_IDX];
1198         struct fte_version *sw_ver = fte->versions[SWITCH_IDX];
1199
1200         if (sw_ver && !file_ver) {
1201             fte_make_flow_mod(fte, SWITCH_IDX, OFPFC_DELETE_STRICT,
1202                               flow_format, &requests);
1203         }
1204     }
1205
1206     /* Add flows that exist in the file but not on the switch.
1207      * Update flows that exist in both places but differ. */
1208     cls_cursor_init(&cursor, &cls, NULL);
1209     CLS_CURSOR_FOR_EACH (fte, rule, &cursor) {
1210         struct fte_version *file_ver = fte->versions[FILE_IDX];
1211         struct fte_version *sw_ver = fte->versions[SWITCH_IDX];
1212
1213         if (file_ver && (!sw_ver || !fte_version_equals(sw_ver, file_ver))) {
1214             fte_make_flow_mod(fte, FILE_IDX, OFPFC_ADD, flow_format,
1215                               &requests);
1216         }
1217     }
1218     transact_multiple_noreply(vconn, &requests);
1219     vconn_close(vconn);
1220
1221     fte_free_all(&cls);
1222 }
1223
1224 static void
1225 read_flows_from_source(const char *source, struct classifier *cls, int index)
1226 {
1227     struct stat s;
1228
1229     if (source[0] == '/' || source[0] == '.'
1230         || (!strchr(source, ':') && !stat(source, &s))) {
1231         read_flows_from_file(source, cls, index);
1232     } else {
1233         enum nx_flow_format flow_format;
1234         struct vconn *vconn;
1235
1236         open_vconn(source, &vconn);
1237         flow_format = negotiate_highest_flow_format(vconn, NXFF_OPENFLOW10);
1238         read_flows_from_switch(vconn, flow_format, cls, index);
1239         vconn_close(vconn);
1240     }
1241 }
1242
1243 static void
1244 do_diff_flows(int argc OVS_UNUSED, char *argv[])
1245 {
1246     bool differences = false;
1247     struct cls_cursor cursor;
1248     struct classifier cls;
1249     struct fte *fte;
1250
1251     classifier_init(&cls);
1252     read_flows_from_source(argv[1], &cls, 0);
1253     read_flows_from_source(argv[2], &cls, 1);
1254
1255     cls_cursor_init(&cursor, &cls, NULL);
1256     CLS_CURSOR_FOR_EACH (fte, rule, &cursor) {
1257         struct fte_version *a = fte->versions[0];
1258         struct fte_version *b = fte->versions[1];
1259
1260         if (!a || !b || !fte_version_equals(a, b)) {
1261             char *rule_s = cls_rule_to_string(&fte->rule);
1262             if (a) {
1263                 printf("-%s", rule_s);
1264                 fte_version_print(a);
1265             }
1266             if (b) {
1267                 printf("+%s", rule_s);
1268                 fte_version_print(b);
1269             }
1270             free(rule_s);
1271
1272             differences = true;
1273         }
1274     }
1275
1276     fte_free_all(&cls);
1277
1278     if (differences) {
1279         exit(2);
1280     }
1281 }
1282 \f
1283 /* Undocumented commands for unit testing. */
1284
1285 static void
1286 print_packet_list(struct list *packets)
1287 {
1288     struct ofpbuf *packet, *next;
1289
1290     LIST_FOR_EACH_SAFE (packet, next, list_node, packets) {
1291         ofp_print(stdout, packet->data, packet->size, verbosity);
1292         list_remove(&packet->list_node);
1293         ofpbuf_delete(packet);
1294     }
1295 }
1296
1297 /* "parse-flow FLOW": parses the argument as a flow (like add-flow) and prints
1298  * it back to stdout.  */
1299 static void
1300 do_parse_flow(int argc OVS_UNUSED, char *argv[])
1301 {
1302     enum nx_flow_format flow_format;
1303     bool flow_mod_table_id;
1304     struct list packets;
1305
1306     flow_format = NXFF_OPENFLOW10;
1307     if (preferred_flow_format > 0) {
1308         flow_format = preferred_flow_format;
1309     }
1310     flow_mod_table_id = false;
1311
1312     list_init(&packets);
1313     parse_ofp_flow_mod_str(&packets, &flow_format, &flow_mod_table_id,
1314                            argv[1], OFPFC_ADD);
1315     print_packet_list(&packets);
1316 }
1317
1318 /* "parse-flows FILENAME": reads the named file as a sequence of flows (like
1319  * add-flows) and prints each of the flows back to stdout.  */
1320 static void
1321 do_parse_flows(int argc OVS_UNUSED, char *argv[])
1322 {
1323     enum nx_flow_format flow_format;
1324     bool flow_mod_table_id;
1325     struct list packets;
1326     FILE *file;
1327
1328     file = fopen(argv[1], "r");
1329     if (file == NULL) {
1330         ovs_fatal(errno, "%s: open", argv[2]);
1331     }
1332
1333     flow_format = NXFF_OPENFLOW10;
1334     if (preferred_flow_format > 0) {
1335         flow_format = preferred_flow_format;
1336     }
1337     flow_mod_table_id = false;
1338
1339     list_init(&packets);
1340     while (parse_ofp_flow_mod_file(&packets, &flow_format, &flow_mod_table_id,
1341                                    file, OFPFC_ADD)) {
1342         print_packet_list(&packets);
1343     }
1344     fclose(file);
1345 }
1346
1347 /* "parse-nx-match": reads a series of nx_match specifications as strings from
1348  * stdin, does some internal fussing with them, and then prints them back as
1349  * strings on stdout. */
1350 static void
1351 do_parse_nx_match(int argc OVS_UNUSED, char *argv[] OVS_UNUSED)
1352 {
1353     struct ds in;
1354
1355     ds_init(&in);
1356     while (!ds_get_line(&in, stdin)) {
1357         struct ofpbuf nx_match;
1358         struct cls_rule rule;
1359         int match_len;
1360         int error;
1361         char *s;
1362
1363         /* Delete comments, skip blank lines. */
1364         s = ds_cstr(&in);
1365         if (*s == '#') {
1366             puts(s);
1367             continue;
1368         }
1369         if (strchr(s, '#')) {
1370             *strchr(s, '#') = '\0';
1371         }
1372         if (s[strspn(s, " ")] == '\0') {
1373             putchar('\n');
1374             continue;
1375         }
1376
1377         /* Convert string to nx_match. */
1378         ofpbuf_init(&nx_match, 0);
1379         match_len = nx_match_from_string(ds_cstr(&in), &nx_match);
1380
1381         /* Convert nx_match to cls_rule. */
1382         error = nx_pull_match(&nx_match, match_len, 0, &rule);
1383         if (!error) {
1384             char *out;
1385
1386             /* Convert cls_rule back to nx_match. */
1387             ofpbuf_uninit(&nx_match);
1388             ofpbuf_init(&nx_match, 0);
1389             match_len = nx_put_match(&nx_match, &rule);
1390
1391             /* Convert nx_match to string. */
1392             out = nx_match_to_string(nx_match.data, match_len);
1393             puts(out);
1394             free(out);
1395         } else {
1396             printf("nx_pull_match() returned error %x\n", error);
1397         }
1398
1399         ofpbuf_uninit(&nx_match);
1400     }
1401     ds_destroy(&in);
1402 }
1403
1404 /* "ofp-print HEXSTRING [VERBOSITY]": Converts the hex digits in HEXSTRING into
1405  * binary data, interpreting them as an OpenFlow message, and prints the
1406  * OpenFlow message on stdout, at VERBOSITY (level 2 by default).  */
1407 static void
1408 do_ofp_print(int argc, char *argv[])
1409 {
1410     struct ofpbuf packet;
1411
1412     ofpbuf_init(&packet, strlen(argv[1]) / 2);
1413     if (ofpbuf_put_hex(&packet, argv[1], NULL)[0] != '\0') {
1414         ovs_fatal(0, "trailing garbage following hex bytes");
1415     }
1416     ofp_print(stdout, packet.data, packet.size, argc > 2 ? atoi(argv[2]) : 2);
1417     ofpbuf_uninit(&packet);
1418 }
1419
1420 static const struct command all_commands[] = {
1421     { "show", 1, 1, do_show },
1422     { "monitor", 1, 2, do_monitor },
1423     { "snoop", 1, 1, do_snoop },
1424     { "dump-desc", 1, 1, do_dump_desc },
1425     { "dump-tables", 1, 1, do_dump_tables },
1426     { "dump-flows", 1, 2, do_dump_flows },
1427     { "dump-aggregate", 1, 2, do_dump_aggregate },
1428     { "queue-stats", 1, 3, do_queue_stats },
1429     { "add-flow", 2, 2, do_add_flow },
1430     { "add-flows", 2, 2, do_add_flows },
1431     { "mod-flows", 2, 2, do_mod_flows },
1432     { "del-flows", 1, 2, do_del_flows },
1433     { "replace-flows", 2, 2, do_replace_flows },
1434     { "diff-flows", 2, 2, do_diff_flows },
1435     { "dump-ports", 1, 2, do_dump_ports },
1436     { "mod-port", 3, 3, do_mod_port },
1437     { "probe", 1, 1, do_probe },
1438     { "ping", 1, 2, do_ping },
1439     { "benchmark", 3, 3, do_benchmark },
1440     { "help", 0, INT_MAX, do_help },
1441
1442     /* Undocumented commands for testing. */
1443     { "parse-flow", 1, 1, do_parse_flow },
1444     { "parse-flows", 1, 1, do_parse_flows },
1445     { "parse-nx-match", 0, 0, do_parse_nx_match },
1446     { "ofp-print", 1, 2, do_ofp_print },
1447
1448     { NULL, 0, 0, NULL },
1449 };