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