ovs-ofctl: Add "queue-stats" command to print queue stats.
[sliver-openvswitch.git] / utilities / ovs-ofctl.c
1 /*
2  * Copyright (c) 2008, 2009, 2010 Nicira Networks.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <config.h>
18 #include <errno.h>
19 #include <getopt.h>
20 #include <inttypes.h>
21 #include <net/if.h>
22 #include <signal.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #include <unistd.h>
26 #include <sys/stat.h>
27 #include <sys/time.h>
28
29 #include "command-line.h"
30 #include "compiler.h"
31 #include "dirs.h"
32 #include "dpif.h"
33 #include "netlink.h"
34 #include "odp-util.h"
35 #include "ofp-parse.h"
36 #include "ofp-print.h"
37 #include "ofp-util.h"
38 #include "ofpbuf.h"
39 #include "openflow/nicira-ext.h"
40 #include "openflow/openflow.h"
41 #include "random.h"
42 #include "stream-ssl.h"
43 #include "timeval.h"
44 #include "util.h"
45 #include "vconn.h"
46 #include "vlog.h"
47 #include "xtoxll.h"
48
49 VLOG_DEFINE_THIS_MODULE(ofctl)
50
51
52 #define MOD_PORT_CMD_UP      "up"
53 #define MOD_PORT_CMD_DOWN    "down"
54 #define MOD_PORT_CMD_FLOOD   "flood"
55 #define MOD_PORT_CMD_NOFLOOD "noflood"
56
57 /* Use strict matching for flow mod commands? */
58 static bool strict;
59
60 static const struct command all_commands[];
61
62 static void usage(void) NO_RETURN;
63 static void parse_options(int argc, char *argv[]);
64
65 int
66 main(int argc, char *argv[])
67 {
68     set_program_name(argv[0]);
69     parse_options(argc, argv);
70     signal(SIGPIPE, SIG_IGN);
71     run_command(argc - optind, argv + optind, all_commands);
72     return 0;
73 }
74
75 static void
76 parse_options(int argc, char *argv[])
77 {
78     enum {
79         OPT_STRICT = UCHAR_MAX + 1,
80         VLOG_OPTION_ENUMS
81     };
82     static struct option long_options[] = {
83         {"timeout", required_argument, 0, 't'},
84         {"strict", no_argument, 0, OPT_STRICT},
85         {"help", no_argument, 0, 'h'},
86         {"version", no_argument, 0, 'V'},
87         VLOG_LONG_OPTIONS,
88         STREAM_SSL_LONG_OPTIONS
89         {0, 0, 0, 0},
90     };
91     char *short_options = long_options_to_short_options(long_options);
92
93     for (;;) {
94         unsigned long int timeout;
95         int c;
96
97         c = getopt_long(argc, argv, short_options, long_options, NULL);
98         if (c == -1) {
99             break;
100         }
101
102         switch (c) {
103         case 't':
104             timeout = strtoul(optarg, NULL, 10);
105             if (timeout <= 0) {
106                 ovs_fatal(0, "value %s on -t or --timeout is not at least 1",
107                           optarg);
108             } else {
109                 time_alarm(timeout);
110             }
111             break;
112
113         case 'h':
114             usage();
115
116         case 'V':
117             OVS_PRINT_VERSION(OFP_VERSION, OFP_VERSION);
118             exit(EXIT_SUCCESS);
119
120         case OPT_STRICT:
121             strict = true;
122             break;
123
124         VLOG_OPTION_HANDLERS
125         STREAM_SSL_OPTION_HANDLERS
126
127         case '?':
128             exit(EXIT_FAILURE);
129
130         default:
131             abort();
132         }
133     }
134     free(short_options);
135 }
136
137 static void
138 usage(void)
139 {
140     printf("%s: OpenFlow switch management utility\n"
141            "usage: %s [OPTIONS] COMMAND [ARG...]\n"
142            "\nFor OpenFlow switches:\n"
143            "  show SWITCH                 show OpenFlow information\n"
144            "  status SWITCH [KEY]         report statistics (about KEY)\n"
145            "  dump-desc SWITCH            print switch description\n"
146            "  dump-tables SWITCH          print table stats\n"
147            "  mod-port SWITCH IFACE ACT   modify port behavior\n"
148            "  dump-ports SWITCH [PORT]    print port statistics\n"
149            "  dump-flows SWITCH           print all flow entries\n"
150            "  dump-flows SWITCH FLOW      print matching FLOWs\n"
151            "  dump-aggregate SWITCH       print aggregate flow statistics\n"
152            "  dump-aggregate SWITCH FLOW  print aggregate stats for FLOWs\n"
153            "  queue-stats SWITCH [PORT [QUEUE]]  dump queue stats\n"
154            "  add-flow SWITCH FLOW        add flow described by FLOW\n"
155            "  add-flows SWITCH FILE       add flows from FILE\n"
156            "  mod-flows SWITCH FLOW       modify actions of matching FLOWs\n"
157            "  del-flows SWITCH [FLOW]     delete matching FLOWs\n"
158            "  monitor SWITCH [MISSLEN]    print packets received from SWITCH\n"
159            "\nFor OpenFlow switches and controllers:\n"
160            "  probe VCONN                 probe whether VCONN is up\n"
161            "  ping VCONN [N]              latency of N-byte echos\n"
162            "  benchmark VCONN N COUNT     bandwidth of COUNT N-byte echos\n"
163            "where each SWITCH is an active OpenFlow connection method.\n",
164            program_name, program_name);
165     vconn_usage(true, false, false);
166     vlog_usage();
167     printf("\nOther options:\n"
168            "  --strict                    use strict match for flow commands\n"
169            "  -t, --timeout=SECS          give up after SECS seconds\n"
170            "  -h, --help                  display this help message\n"
171            "  -V, --version               display version information\n");
172     exit(EXIT_SUCCESS);
173 }
174
175 static void run(int retval, const char *message, ...)
176     PRINTF_FORMAT(2, 3);
177
178 static void run(int retval, const char *message, ...)
179 {
180     if (retval) {
181         va_list args;
182
183         fprintf(stderr, "%s: ", program_name);
184         va_start(args, message);
185         vfprintf(stderr, message, args);
186         va_end(args);
187         if (retval == EOF) {
188             fputs(": unexpected end of file\n", stderr);
189         } else {
190             fprintf(stderr, ": %s\n", strerror(retval));
191         }
192
193         exit(EXIT_FAILURE);
194     }
195 }
196 \f
197 /* Generic commands. */
198
199 static void
200 open_vconn_socket(const char *name, struct vconn **vconnp)
201 {
202     char *vconn_name = xasprintf("unix:%s", name);
203     VLOG_INFO("connecting to %s", vconn_name);
204     run(vconn_open_block(vconn_name, OFP_VERSION, vconnp),
205         "connecting to %s", vconn_name);
206     free(vconn_name);
207 }
208
209 static void
210 open_vconn__(const char *name, const char *default_suffix,
211              struct vconn **vconnp)
212 {
213     struct dpif *dpif;
214     struct stat s;
215     char *bridge_path, *datapath_name, *datapath_type;
216
217     bridge_path = xasprintf("%s/%s.%s", ovs_rundir, name, default_suffix);
218     dp_parse_name(name, &datapath_name, &datapath_type);
219
220     if (strstr(name, ":")) {
221         run(vconn_open_block(name, OFP_VERSION, vconnp),
222             "connecting to %s", name);
223     } else if (!stat(name, &s) && S_ISSOCK(s.st_mode)) {
224         open_vconn_socket(name, vconnp);
225     } else if (!stat(bridge_path, &s) && S_ISSOCK(s.st_mode)) {
226         open_vconn_socket(bridge_path, vconnp);
227     } else if (!dpif_open(datapath_name, datapath_type, &dpif)) {
228         char dpif_name[IF_NAMESIZE + 1];
229         char *socket_name;
230
231         run(dpif_port_get_name(dpif, ODPP_LOCAL, dpif_name, sizeof dpif_name),
232             "obtaining name of %s", dpif_name);
233         dpif_close(dpif);
234         if (strcmp(dpif_name, name)) {
235             VLOG_INFO("datapath %s is named %s", name, dpif_name);
236         }
237
238         socket_name = xasprintf("%s/%s.%s",
239                                 ovs_rundir, dpif_name, default_suffix);
240         if (stat(socket_name, &s)) {
241             ovs_fatal(errno, "cannot connect to %s: stat failed on %s",
242                       name, socket_name);
243         } else if (!S_ISSOCK(s.st_mode)) {
244             ovs_fatal(0, "cannot connect to %s: %s is not a socket",
245                       name, socket_name);
246         }
247
248         open_vconn_socket(socket_name, vconnp);
249         free(socket_name);
250     } else {
251         ovs_fatal(0, "%s is not a valid connection method", name);
252     }
253
254     free(datapath_name);
255     free(datapath_type);
256     free(bridge_path);
257 }
258
259 static void
260 open_vconn(const char *name, struct vconn **vconnp)
261 {
262     return open_vconn__(name, "mgmt", vconnp);
263 }
264
265 static void *
266 alloc_stats_request(size_t body_len, uint16_t type, struct ofpbuf **bufferp)
267 {
268     struct ofp_stats_request *rq;
269     rq = make_openflow((offsetof(struct ofp_stats_request, body)
270                         + body_len), OFPT_STATS_REQUEST, bufferp);
271     rq->type = htons(type);
272     rq->flags = htons(0);
273     return rq->body;
274 }
275
276 static void
277 send_openflow_buffer(struct vconn *vconn, struct ofpbuf *buffer)
278 {
279     update_openflow_length(buffer);
280     run(vconn_send_block(vconn, buffer), "failed to send packet to switch");
281 }
282
283 static void
284 dump_transaction(const char *vconn_name, struct ofpbuf *request)
285 {
286     struct vconn *vconn;
287     struct ofpbuf *reply;
288
289     update_openflow_length(request);
290     open_vconn(vconn_name, &vconn);
291     run(vconn_transact(vconn, request, &reply), "talking to %s", vconn_name);
292     ofp_print(stdout, reply->data, reply->size, 1);
293     vconn_close(vconn);
294 }
295
296 static void
297 dump_trivial_transaction(const char *vconn_name, uint8_t request_type)
298 {
299     struct ofpbuf *request;
300     make_openflow(sizeof(struct ofp_header), request_type, &request);
301     dump_transaction(vconn_name, request);
302 }
303
304 static void
305 dump_stats_transaction(const char *vconn_name, struct ofpbuf *request)
306 {
307     uint32_t send_xid = ((struct ofp_header *) request->data)->xid;
308     struct vconn *vconn;
309     bool done = false;
310
311     open_vconn(vconn_name, &vconn);
312     send_openflow_buffer(vconn, request);
313     while (!done) {
314         uint32_t recv_xid;
315         struct ofpbuf *reply;
316
317         run(vconn_recv_block(vconn, &reply), "OpenFlow packet receive failed");
318         recv_xid = ((struct ofp_header *) reply->data)->xid;
319         if (send_xid == recv_xid) {
320             struct ofp_stats_reply *osr;
321
322             ofp_print(stdout, reply->data, reply->size, 1);
323
324             osr = ofpbuf_at(reply, 0, sizeof *osr);
325             done = !osr || !(ntohs(osr->flags) & OFPSF_REPLY_MORE);
326         } else {
327             VLOG_DBG("received reply with xid %08"PRIx32" "
328                      "!= expected %08"PRIx32, recv_xid, send_xid);
329         }
330         ofpbuf_delete(reply);
331     }
332     vconn_close(vconn);
333 }
334
335 static void
336 dump_trivial_stats_transaction(const char *vconn_name, uint8_t stats_type)
337 {
338     struct ofpbuf *request;
339     alloc_stats_request(0, stats_type, &request);
340     dump_stats_transaction(vconn_name, request);
341 }
342
343 static void
344 do_show(int argc OVS_UNUSED, char *argv[])
345 {
346     dump_trivial_transaction(argv[1], OFPT_FEATURES_REQUEST);
347     dump_trivial_transaction(argv[1], OFPT_GET_CONFIG_REQUEST);
348 }
349
350 static void
351 do_status(int argc, char *argv[])
352 {
353     struct nicira_header *request, *reply;
354     struct vconn *vconn;
355     struct ofpbuf *b;
356
357     request = make_openflow(sizeof *request, OFPT_VENDOR, &b);
358     request->vendor = htonl(NX_VENDOR_ID);
359     request->subtype = htonl(NXT_STATUS_REQUEST);
360     if (argc > 2) {
361         ofpbuf_put(b, argv[2], strlen(argv[2]));
362         update_openflow_length(b);
363     }
364     open_vconn(argv[1], &vconn);
365     run(vconn_transact(vconn, b, &b), "talking to %s", argv[1]);
366     vconn_close(vconn);
367
368     if (b->size < sizeof *reply) {
369         ovs_fatal(0, "short reply (%zu bytes)", b->size);
370     }
371     reply = b->data;
372     if (reply->header.type != OFPT_VENDOR
373         || reply->vendor != ntohl(NX_VENDOR_ID)
374         || reply->subtype != ntohl(NXT_STATUS_REPLY)) {
375         ofp_print(stderr, b->data, b->size, 2);
376         ovs_fatal(0, "bad reply");
377     }
378
379     fwrite(reply + 1, b->size - sizeof *reply, 1, stdout);
380 }
381
382 static void
383 do_dump_desc(int argc OVS_UNUSED, char *argv[])
384 {
385     dump_trivial_stats_transaction(argv[1], OFPST_DESC);
386 }
387
388 static void
389 do_dump_tables(int argc OVS_UNUSED, char *argv[])
390 {
391     dump_trivial_stats_transaction(argv[1], OFPST_TABLE);
392 }
393
394 static uint16_t
395 str_to_port_no(const char *vconn_name, const char *str)
396 {
397     struct ofpbuf *request, *reply;
398     struct ofp_switch_features *osf;
399     struct vconn *vconn;
400     int n_ports;
401     int port_idx;
402     unsigned int port_no;
403
404
405     /* Check if the argument is a port index.  Otherwise, treat it as
406      * the port name. */
407     if (str_to_uint(str, 10, &port_no)) {
408         return port_no;
409     }
410
411     /* Send a "Features Request" to resolve the name into a number. */
412     make_openflow(sizeof(struct ofp_header), OFPT_FEATURES_REQUEST, &request);
413     open_vconn(vconn_name, &vconn);
414     run(vconn_transact(vconn, request, &reply), "talking to %s", vconn_name);
415
416     osf = reply->data;
417     n_ports = (reply->size - sizeof *osf) / sizeof *osf->ports;
418
419     for (port_idx = 0; port_idx < n_ports; port_idx++) {
420         /* Check argument as an interface name */
421         if (!strncmp((char *)osf->ports[port_idx].name, str,
422                     sizeof osf->ports[0].name)) {
423             break;
424         }
425     }
426     if (port_idx == n_ports) {
427         ovs_fatal(0, "couldn't find monitored port: %s", str);
428     }
429
430     ofpbuf_delete(reply);
431     vconn_close(vconn);
432
433     return port_idx;
434 }
435
436 static void
437 do_dump_flows(int argc, char *argv[])
438 {
439     struct ofp_flow_stats_request *req;
440     uint16_t out_port;
441     struct ofpbuf *request;
442
443     req = alloc_stats_request(sizeof *req, OFPST_FLOW, &request);
444     parse_ofp_str(argc > 2 ? argv[2] : "", &req->match, NULL,
445                   &req->table_id, &out_port, NULL, NULL, NULL, NULL);
446     memset(&req->pad, 0, sizeof req->pad);
447     req->out_port = htons(out_port);
448
449     dump_stats_transaction(argv[1], request);
450 }
451
452 static void
453 do_dump_aggregate(int argc, char *argv[])
454 {
455     struct ofp_aggregate_stats_request *req;
456     struct ofpbuf *request;
457     uint16_t out_port;
458
459     req = alloc_stats_request(sizeof *req, OFPST_AGGREGATE, &request);
460     parse_ofp_str(argc > 2 ? argv[2] : "", &req->match, NULL,
461                   &req->table_id, &out_port, NULL, NULL, NULL, NULL);
462     memset(&req->pad, 0, sizeof req->pad);
463     req->out_port = htons(out_port);
464
465     dump_stats_transaction(argv[1], request);
466 }
467
468 static void
469 do_queue_stats(int argc, char *argv[])
470 {
471     struct ofp_queue_stats_request *req;
472     struct ofpbuf *request;
473
474     req = alloc_stats_request(sizeof *req, OFPST_QUEUE, &request);
475
476     if (argc > 2 && argv[2][0] && strcasecmp(argv[2], "all")) {
477         req->port_no = htons(str_to_port_no(argv[1], argv[2]));
478     } else {
479         req->port_no = htons(OFPP_ALL);
480     }
481     if (argc > 3 && argv[3][0] && strcasecmp(argv[3], "all")) {
482         req->queue_id = htonl(atoi(argv[3]));
483     } else {
484         req->queue_id = htonl(OFPQ_ALL);
485     }
486
487     memset(req->pad, 0, sizeof req->pad);
488
489     dump_stats_transaction(argv[1], request);
490 }
491
492 static void
493 do_add_flow(int argc OVS_UNUSED, char *argv[])
494 {
495     struct vconn *vconn;
496     struct ofpbuf *buffer;
497     struct ofp_flow_mod *ofm;
498     uint16_t priority, idle_timeout, hard_timeout;
499     uint64_t cookie;
500     struct ofp_match match;
501
502     /* Parse and send.  parse_ofp_str() will expand and reallocate the
503      * data in 'buffer', so we can't keep pointers to across the
504      * parse_ofp_str() call. */
505     make_openflow(sizeof *ofm, OFPT_FLOW_MOD, &buffer);
506     parse_ofp_str(argv[2], &match, buffer,
507                   NULL, NULL, &priority, &idle_timeout, &hard_timeout,
508                   &cookie);
509     ofm = buffer->data;
510     ofm->match = match;
511     ofm->command = htons(OFPFC_ADD);
512     ofm->cookie = htonll(cookie);
513     ofm->idle_timeout = htons(idle_timeout);
514     ofm->hard_timeout = htons(hard_timeout);
515     ofm->buffer_id = htonl(UINT32_MAX);
516     ofm->priority = htons(priority);
517
518     open_vconn(argv[1], &vconn);
519     send_openflow_buffer(vconn, buffer);
520     vconn_close(vconn);
521 }
522
523 static void
524 do_add_flows(int argc OVS_UNUSED, char *argv[])
525 {
526     struct vconn *vconn;
527     FILE *file;
528     char line[1024];
529
530     file = fopen(argv[2], "r");
531     if (file == NULL) {
532         ovs_fatal(errno, "%s: open", argv[2]);
533     }
534
535     open_vconn(argv[1], &vconn);
536     while (fgets(line, sizeof line, file)) {
537         struct ofpbuf *buffer;
538         struct ofp_flow_mod *ofm;
539         uint16_t priority, idle_timeout, hard_timeout;
540         uint64_t cookie;
541         struct ofp_match match;
542
543         char *comment;
544
545         /* Delete comments. */
546         comment = strchr(line, '#');
547         if (comment) {
548             *comment = '\0';
549         }
550
551         /* Drop empty lines. */
552         if (line[strspn(line, " \t\n")] == '\0') {
553             continue;
554         }
555
556         /* Parse and send.  parse_ofp_str() will expand and reallocate
557          * the data in 'buffer', so we can't keep pointers to across the
558          * parse_ofp_str() call. */
559         make_openflow(sizeof *ofm, OFPT_FLOW_MOD, &buffer);
560         parse_ofp_str(line, &match, buffer,
561                       NULL, NULL, &priority, &idle_timeout, &hard_timeout,
562                       &cookie);
563         ofm = buffer->data;
564         ofm->match = match;
565         ofm->command = htons(OFPFC_ADD);
566         ofm->cookie = htonll(cookie);
567         ofm->idle_timeout = htons(idle_timeout);
568         ofm->hard_timeout = htons(hard_timeout);
569         ofm->buffer_id = htonl(UINT32_MAX);
570         ofm->priority = htons(priority);
571
572         send_openflow_buffer(vconn, buffer);
573     }
574     vconn_close(vconn);
575     fclose(file);
576 }
577
578 static void
579 do_mod_flows(int argc OVS_UNUSED, char *argv[])
580 {
581     uint16_t priority, idle_timeout, hard_timeout;
582     uint64_t cookie;
583     struct vconn *vconn;
584     struct ofpbuf *buffer;
585     struct ofp_flow_mod *ofm;
586     struct ofp_match match;
587
588     /* Parse and send.  parse_ofp_str() will expand and reallocate the
589      * data in 'buffer', so we can't keep pointers to across the
590      * parse_ofp_str() call. */
591     make_openflow(sizeof *ofm, OFPT_FLOW_MOD, &buffer);
592     parse_ofp_str(argv[2], &match, buffer,
593                   NULL, NULL, &priority, &idle_timeout, &hard_timeout,
594                   &cookie);
595     ofm = buffer->data;
596     ofm->match = match;
597     if (strict) {
598         ofm->command = htons(OFPFC_MODIFY_STRICT);
599     } else {
600         ofm->command = htons(OFPFC_MODIFY);
601     }
602     ofm->idle_timeout = htons(idle_timeout);
603     ofm->hard_timeout = htons(hard_timeout);
604     ofm->cookie = htonll(cookie);
605     ofm->buffer_id = htonl(UINT32_MAX);
606     ofm->priority = htons(priority);
607
608     open_vconn(argv[1], &vconn);
609     send_openflow_buffer(vconn, buffer);
610     vconn_close(vconn);
611 }
612
613 static void do_del_flows(int argc, char *argv[])
614 {
615     struct vconn *vconn;
616     uint16_t priority;
617     uint16_t out_port;
618     struct ofpbuf *buffer;
619     struct ofp_flow_mod *ofm;
620
621     /* Parse and send. */
622     ofm = make_openflow(sizeof *ofm, OFPT_FLOW_MOD, &buffer);
623     parse_ofp_str(argc > 2 ? argv[2] : "", &ofm->match, NULL, NULL,
624                   &out_port, &priority, NULL, NULL, NULL);
625     if (strict) {
626         ofm->command = htons(OFPFC_DELETE_STRICT);
627     } else {
628         ofm->command = htons(OFPFC_DELETE);
629     }
630     ofm->idle_timeout = htons(0);
631     ofm->hard_timeout = htons(0);
632     ofm->buffer_id = htonl(UINT32_MAX);
633     ofm->out_port = htons(out_port);
634     ofm->priority = htons(priority);
635
636     open_vconn(argv[1], &vconn);
637     send_openflow_buffer(vconn, buffer);
638     vconn_close(vconn);
639 }
640
641 static void
642 do_tun_cookie(int argc OVS_UNUSED, char *argv[])
643 {
644     struct nxt_tun_id_cookie *tun_id_cookie;
645     struct ofpbuf *buffer;
646     struct vconn *vconn;
647
648     tun_id_cookie = make_openflow(sizeof *tun_id_cookie, OFPT_VENDOR, &buffer);
649
650     tun_id_cookie->vendor = htonl(NX_VENDOR_ID);
651     tun_id_cookie->subtype = htonl(NXT_TUN_ID_FROM_COOKIE);
652     tun_id_cookie->set = !strcmp(argv[2], "true");
653
654     open_vconn(argv[1], &vconn);
655     send_openflow_buffer(vconn, buffer);
656     vconn_close(vconn);
657 }
658
659 static void
660 monitor_vconn(struct vconn *vconn)
661 {
662     for (;;) {
663         struct ofpbuf *b;
664         run(vconn_recv_block(vconn, &b), "vconn_recv");
665         ofp_print(stderr, b->data, b->size, 2);
666         ofpbuf_delete(b);
667     }
668 }
669
670 static void
671 do_monitor(int argc, char *argv[])
672 {
673     struct vconn *vconn;
674
675     open_vconn(argv[1], &vconn);
676     if (argc > 2) {
677         int miss_send_len = atoi(argv[2]);
678         struct ofp_switch_config *osc;
679         struct ofpbuf *buf;
680
681         osc = make_openflow(sizeof *osc, OFPT_SET_CONFIG, &buf);
682         osc->miss_send_len = htons(miss_send_len);
683         send_openflow_buffer(vconn, buf);
684     }
685     monitor_vconn(vconn);
686 }
687
688 static void
689 do_snoop(int argc OVS_UNUSED, char *argv[])
690 {
691     struct vconn *vconn;
692
693     open_vconn__(argv[1], "snoop", &vconn);
694     monitor_vconn(vconn);
695 }
696
697 static void
698 do_dump_ports(int argc, char *argv[])
699 {
700     struct ofp_port_stats_request *req;
701     struct ofpbuf *request;
702     uint16_t port;
703
704     req = alloc_stats_request(sizeof *req, OFPST_PORT, &request);
705     port = argc > 2 ? str_to_port_no(argv[1], argv[2]) : OFPP_NONE;
706     req->port_no = htons(port);
707     dump_stats_transaction(argv[1], request);
708 }
709
710 static void
711 do_probe(int argc OVS_UNUSED, char *argv[])
712 {
713     struct ofpbuf *request;
714     struct vconn *vconn;
715     struct ofpbuf *reply;
716
717     make_openflow(sizeof(struct ofp_header), OFPT_ECHO_REQUEST, &request);
718     open_vconn(argv[1], &vconn);
719     run(vconn_transact(vconn, request, &reply), "talking to %s", argv[1]);
720     if (reply->size != sizeof(struct ofp_header)) {
721         ovs_fatal(0, "reply does not match request");
722     }
723     ofpbuf_delete(reply);
724     vconn_close(vconn);
725 }
726
727 static void
728 do_mod_port(int argc OVS_UNUSED, char *argv[])
729 {
730     struct ofpbuf *request, *reply;
731     struct ofp_switch_features *osf;
732     struct ofp_port_mod *opm;
733     struct vconn *vconn;
734     char *endptr;
735     int n_ports;
736     int port_idx;
737     int port_no;
738
739
740     /* Check if the argument is a port index.  Otherwise, treat it as
741      * the port name. */
742     port_no = strtol(argv[2], &endptr, 10);
743     if (port_no == 0 && endptr == argv[2]) {
744         port_no = -1;
745     }
746
747     /* Send a "Features Request" to get the information we need in order
748      * to modify the port. */
749     make_openflow(sizeof(struct ofp_header), OFPT_FEATURES_REQUEST, &request);
750     open_vconn(argv[1], &vconn);
751     run(vconn_transact(vconn, request, &reply), "talking to %s", argv[1]);
752
753     osf = reply->data;
754     n_ports = (reply->size - sizeof *osf) / sizeof *osf->ports;
755
756     for (port_idx = 0; port_idx < n_ports; port_idx++) {
757         if (port_no != -1) {
758             /* Check argument as a port index */
759             if (osf->ports[port_idx].port_no == htons(port_no)) {
760                 break;
761             }
762         } else {
763             /* Check argument as an interface name */
764             if (!strncmp((char *)osf->ports[port_idx].name, argv[2],
765                         sizeof osf->ports[0].name)) {
766                 break;
767             }
768
769         }
770     }
771     if (port_idx == n_ports) {
772         ovs_fatal(0, "couldn't find monitored port: %s", argv[2]);
773     }
774
775     opm = make_openflow(sizeof(struct ofp_port_mod), OFPT_PORT_MOD, &request);
776     opm->port_no = osf->ports[port_idx].port_no;
777     memcpy(opm->hw_addr, osf->ports[port_idx].hw_addr, sizeof opm->hw_addr);
778     opm->config = htonl(0);
779     opm->mask = htonl(0);
780     opm->advertise = htonl(0);
781
782     printf("modifying port: %s\n", osf->ports[port_idx].name);
783
784     if (!strncasecmp(argv[3], MOD_PORT_CMD_UP, sizeof MOD_PORT_CMD_UP)) {
785         opm->mask |= htonl(OFPPC_PORT_DOWN);
786     } else if (!strncasecmp(argv[3], MOD_PORT_CMD_DOWN,
787                 sizeof MOD_PORT_CMD_DOWN)) {
788         opm->mask |= htonl(OFPPC_PORT_DOWN);
789         opm->config |= htonl(OFPPC_PORT_DOWN);
790     } else if (!strncasecmp(argv[3], MOD_PORT_CMD_FLOOD,
791                 sizeof MOD_PORT_CMD_FLOOD)) {
792         opm->mask |= htonl(OFPPC_NO_FLOOD);
793     } else if (!strncasecmp(argv[3], MOD_PORT_CMD_NOFLOOD,
794                 sizeof MOD_PORT_CMD_NOFLOOD)) {
795         opm->mask |= htonl(OFPPC_NO_FLOOD);
796         opm->config |= htonl(OFPPC_NO_FLOOD);
797     } else {
798         ovs_fatal(0, "unknown mod-port command '%s'", argv[3]);
799     }
800
801     send_openflow_buffer(vconn, request);
802
803     ofpbuf_delete(reply);
804     vconn_close(vconn);
805 }
806
807 static void
808 do_ping(int argc, char *argv[])
809 {
810     size_t max_payload = 65535 - sizeof(struct ofp_header);
811     unsigned int payload;
812     struct vconn *vconn;
813     int i;
814
815     payload = argc > 2 ? atoi(argv[2]) : 64;
816     if (payload > max_payload) {
817         ovs_fatal(0, "payload must be between 0 and %zu bytes", max_payload);
818     }
819
820     open_vconn(argv[1], &vconn);
821     for (i = 0; i < 10; i++) {
822         struct timeval start, end;
823         struct ofpbuf *request, *reply;
824         struct ofp_header *rq_hdr, *rpy_hdr;
825
826         rq_hdr = make_openflow(sizeof(struct ofp_header) + payload,
827                                OFPT_ECHO_REQUEST, &request);
828         random_bytes(rq_hdr + 1, payload);
829
830         gettimeofday(&start, NULL);
831         run(vconn_transact(vconn, ofpbuf_clone(request), &reply), "transact");
832         gettimeofday(&end, NULL);
833
834         rpy_hdr = reply->data;
835         if (reply->size != request->size
836             || memcmp(rpy_hdr + 1, rq_hdr + 1, payload)
837             || rpy_hdr->xid != rq_hdr->xid
838             || rpy_hdr->type != OFPT_ECHO_REPLY) {
839             printf("Reply does not match request.  Request:\n");
840             ofp_print(stdout, request, request->size, 2);
841             printf("Reply:\n");
842             ofp_print(stdout, reply, reply->size, 2);
843         }
844         printf("%zu bytes from %s: xid=%08"PRIx32" time=%.1f ms\n",
845                reply->size - sizeof *rpy_hdr, argv[1], rpy_hdr->xid,
846                    (1000*(double)(end.tv_sec - start.tv_sec))
847                    + (.001*(end.tv_usec - start.tv_usec)));
848         ofpbuf_delete(request);
849         ofpbuf_delete(reply);
850     }
851     vconn_close(vconn);
852 }
853
854 static void
855 do_benchmark(int argc OVS_UNUSED, char *argv[])
856 {
857     size_t max_payload = 65535 - sizeof(struct ofp_header);
858     struct timeval start, end;
859     unsigned int payload_size, message_size;
860     struct vconn *vconn;
861     double duration;
862     int count;
863     int i;
864
865     payload_size = atoi(argv[2]);
866     if (payload_size > max_payload) {
867         ovs_fatal(0, "payload must be between 0 and %zu bytes", max_payload);
868     }
869     message_size = sizeof(struct ofp_header) + payload_size;
870
871     count = atoi(argv[3]);
872
873     printf("Sending %d packets * %u bytes (with header) = %u bytes total\n",
874            count, message_size, count * message_size);
875
876     open_vconn(argv[1], &vconn);
877     gettimeofday(&start, NULL);
878     for (i = 0; i < count; i++) {
879         struct ofpbuf *request, *reply;
880         struct ofp_header *rq_hdr;
881
882         rq_hdr = make_openflow(message_size, OFPT_ECHO_REQUEST, &request);
883         memset(rq_hdr + 1, 0, payload_size);
884         run(vconn_transact(vconn, request, &reply), "transact");
885         ofpbuf_delete(reply);
886     }
887     gettimeofday(&end, NULL);
888     vconn_close(vconn);
889
890     duration = ((1000*(double)(end.tv_sec - start.tv_sec))
891                 + (.001*(end.tv_usec - start.tv_usec)));
892     printf("Finished in %.1f ms (%.0f packets/s) (%.0f bytes/s)\n",
893            duration, count / (duration / 1000.0),
894            count * message_size / (duration / 1000.0));
895 }
896
897 static void
898 do_help(int argc OVS_UNUSED, char *argv[] OVS_UNUSED)
899 {
900     usage();
901 }
902
903 static const struct command all_commands[] = {
904     { "show", 1, 1, do_show },
905     { "status", 1, 2, do_status },
906     { "monitor", 1, 2, do_monitor },
907     { "snoop", 1, 1, do_snoop },
908     { "dump-desc", 1, 1, do_dump_desc },
909     { "dump-tables", 1, 1, do_dump_tables },
910     { "dump-flows", 1, 2, do_dump_flows },
911     { "dump-aggregate", 1, 2, do_dump_aggregate },
912     { "queue-stats", 1, 3, do_queue_stats },
913     { "add-flow", 2, 2, do_add_flow },
914     { "add-flows", 2, 2, do_add_flows },
915     { "mod-flows", 2, 2, do_mod_flows },
916     { "del-flows", 1, 2, do_del_flows },
917     { "tun-cookie", 2, 2, do_tun_cookie },
918     { "dump-ports", 1, 2, do_dump_ports },
919     { "mod-port", 3, 3, do_mod_port },
920     { "probe", 1, 1, do_probe },
921     { "ping", 1, 2, do_ping },
922     { "benchmark", 3, 3, do_benchmark },
923     { "help", 0, INT_MAX, do_help },
924     { NULL, 0, 0, NULL },
925 };