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