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