]> git.proxmox.com Git - ovs.git/blame - utilities/ovs-dpctl.c
Merge tag 'v2.15.0' into master-dfsg
[ovs.git] / utilities / ovs-dpctl.c
CommitLineData
064af421 1/*
ac64794a 2 * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014 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>
b2befd5b
BP
18#include <sys/types.h>
19#include <netinet/in.h>
064af421
BP
20#include <arpa/inet.h>
21#include <errno.h>
22#include <getopt.h>
23#include <inttypes.h>
9d82ec47 24#include <sys/socket.h>
064af421 25#include <net/if.h>
064af421
BP
26#include <signal.h>
27#include <stdarg.h>
28#include <stdlib.h>
29#include <string.h>
30#include <unistd.h>
31#include <sys/stat.h>
32#include <sys/time.h>
33
34#include "command-line.h"
35#include "compiler.h"
36#include "dirs.h"
fceef209 37#include "dpctl.h"
8a777cf6 38#include "fatal-signal.h"
064af421 39#include "odp-util.h"
becffb86 40#include "packets.h"
064af421
BP
41#include "timeval.h"
42#include "util.h"
e6211adc 43#include "openvswitch/vlog.h"
5136ce49 44
fceef209 45static struct dpctl_params dpctl_p;
032aa6a3 46
cab50449 47OVS_NO_RETURN static void usage(void *userdata OVS_UNUSED);
064af421
BP
48static void parse_options(int argc, char *argv[]);
49
fceef209
DDP
50static void
51dpctl_print(void *userdata OVS_UNUSED, bool error, const char *msg)
52{
53 FILE *outfile = error ? stderr : stdout;
54 fputs(msg, outfile);
55}
56
675febfa
BP
57int
58main(int argc, char *argv[])
064af421 59{
fceef209 60 int error;
064af421 61 set_program_name(argv[0]);
064af421 62 parse_options(argc, argv);
8a777cf6 63 fatal_ignore_sigpipe();
fceef209 64
56cad666 65 dpctl_p.is_appctl = false;
fceef209
DDP
66 dpctl_p.output = dpctl_print;
67 dpctl_p.usage = usage;
68
69 error = dpctl_run_command(argc - optind, (const char **) argv + optind,
70 &dpctl_p);
71 return error ? EXIT_FAILURE : EXIT_SUCCESS;
064af421
BP
72}
73
74static void
75parse_options(int argc, char *argv[])
76{
87c84891 77 enum {
186afbfe
BP
78 OPT_CLEAR = UCHAR_MAX + 1,
79 OPT_MAY_CREATE,
1f4a7252 80 OPT_READ_ONLY,
d1fd1ea9
BP
81 OPT_NAMES,
82 OPT_NO_NAMES,
87c84891
JP
83 VLOG_OPTION_ENUMS
84 };
07fc4ed3 85 static const struct option long_options[] = {
e3c17733 86 {"statistics", no_argument, NULL, 's'},
186afbfe
BP
87 {"clear", no_argument, NULL, OPT_CLEAR},
88 {"may-create", no_argument, NULL, OPT_MAY_CREATE},
1f4a7252 89 {"read-only", no_argument, NULL, OPT_READ_ONLY},
becffb86 90 {"more", no_argument, NULL, 'm'},
d1fd1ea9
BP
91 {"names", no_argument, NULL, OPT_NAMES},
92 {"no-names", no_argument, NULL, OPT_NO_NAMES},
e3c17733
BP
93 {"timeout", required_argument, NULL, 't'},
94 {"help", no_argument, NULL, 'h'},
66fa2c88 95 {"option", no_argument, NULL, 'o'},
e3c17733 96 {"version", no_argument, NULL, 'V'},
87c84891 97 VLOG_LONG_OPTIONS,
e3c17733 98 {NULL, 0, NULL, 0},
064af421 99 };
5f383751 100 char *short_options = ovs_cmdl_long_options_to_short_options(long_options);
064af421 101
d1fd1ea9 102 bool set_names = false;
9551e80b
IM
103 unsigned int timeout = 0;
104
064af421 105 for (;;) {
064af421
BP
106 int c;
107
108 c = getopt_long(argc, argv, short_options, long_options, NULL);
109 if (c == -1) {
110 break;
111 }
112
113 switch (c) {
032aa6a3 114 case 's':
fceef209 115 dpctl_p.print_statistics = true;
032aa6a3
BP
116 break;
117
186afbfe 118 case OPT_CLEAR:
fceef209 119 dpctl_p.zero_statistics = true;
186afbfe
BP
120 break;
121
122 case OPT_MAY_CREATE:
fceef209 123 dpctl_p.may_create = true;
186afbfe
BP
124 break;
125
1f4a7252
RM
126 case OPT_READ_ONLY:
127 dpctl_p.read_only = true;
128 break;
129
becffb86 130 case 'm':
fceef209 131 dpctl_p.verbosity++;
becffb86
BP
132 break;
133
d1fd1ea9
BP
134 case OPT_NAMES:
135 dpctl_p.names = true;
136 set_names = true;
137 break;
138
139 case OPT_NO_NAMES:
140 dpctl_p.names = false;
141 set_names = true;
142 break;
143
064af421 144 case 't':
cbcf40a8
IM
145 if (!str_to_uint(optarg, 10, &timeout) || !timeout) {
146 ovs_fatal(0, "value %s on -t or --timeout is invalid", optarg);
064af421
BP
147 }
148 break;
149
150 case 'h':
fceef209 151 usage(NULL);
064af421 152
66fa2c88 153 case 'o':
5f383751 154 ovs_cmdl_print_options(long_options);
66fa2c88
AW
155 exit(EXIT_SUCCESS);
156
064af421 157 case 'V':
55d5bb44 158 ovs_print_version(0, 0);
064af421
BP
159 exit(EXIT_SUCCESS);
160
87c84891 161 VLOG_OPTION_HANDLERS
064af421
BP
162
163 case '?':
164 exit(EXIT_FAILURE);
165
166 default:
167 abort();
168 }
169 }
170 free(short_options);
d1fd1ea9 171
9551e80b
IM
172 ctl_timeout_setup(timeout);
173
d1fd1ea9
BP
174 if (!set_names) {
175 dpctl_p.names = dpctl_p.verbosity > 0;
176 }
064af421
BP
177}
178
179static void
fceef209 180usage(void *userdata OVS_UNUSED)
064af421
BP
181{
182 printf("%s: Open vSwitch datapath management utility\n"
183 "usage: %s [OPTIONS] COMMAND [ARG...]\n"
184 " add-dp DP [IFACE...] add new datapath DP (with IFACEs)\n"
185 " del-dp DP delete local datapath DP\n"
186 " add-if DP IFACE... add each IFACE as a port on DP\n"
10500639 187 " set-if DP IFACE... reconfigure each IFACE within DP\n"
064af421 188 " del-if DP IFACE... delete each IFACE from DP\n"
b566902b 189 " dump-dps display names of all datapaths\n"
064af421
BP
190 " show show basic info on all datapaths\n"
191 " show DP... show basic info on each DP\n"
2e6d002d
GS
192 " dump-flows [DP] display flows in DP\n"
193 " add-flow [DP] FLOW ACTIONS add FLOW with ACTIONS to DP\n"
bf8812cd 194 " add-flows [DP] FILE add flows from FILE\n"
2e6d002d 195 " mod-flow [DP] FLOW ACTIONS change FLOW actions to ACTIONS in DP\n"
bf8812cd 196 " mod-flows [DP] FILE change flows from FILE\n"
818650e6 197 " get-flow [DP] ufid:UFID fetch flow corresponding to UFID\n"
2e6d002d 198 " del-flow [DP] FLOW delete FLOW from DP\n"
bf8812cd
EC
199 " del-flows [DP] [FILE] " \
200 "delete all or specified flows from DP\n"
1401f6de
FA
201 " dump-conntrack [DP] [zone=ZONE] " \
202 "display conntrack entries for ZONE\n"
c43a1331
YHW
203 " flush-conntrack [DP] [zone=ZONE] [ct-tuple]" \
204 "delete matched conntrack entries in ZONE\n"
8a0d9d85
FA
205 " ct-stats-show [DP] [zone=ZONE] [verbose] " \
206 "CT connections grouped by protocol\n"
ded30c74 207 " ct-bkts [DP] [gt=N] display connections per CT bucket\n"
10500639
BP
208 "Each IFACE on add-dp, add-if, and set-if may be followed by\n"
209 "comma-separated options. See ovs-dpctl(8) for syntax, or the\n"
2e6d002d 210 "Interface table in ovs-vswitchd.conf.db(5) for an options list.\n"
bf8812cd
EC
211 "For COMMAND dump-flows, add-flow, add-flows, mod-flow,\n"
212 "mod-flows, del-flow and del-flows, DP is optional if there is\n"
213 "only one datapath.\n",
064af421
BP
214 program_name, program_name);
215 vlog_usage();
186afbfe
BP
216 printf("\nOptions for show and mod-flow:\n"
217 " -s, --statistics print statistics for port or flow\n"
041e7168
AZ
218 "\nOptions for dump-flows:\n"
219 " -m, --more increase verbosity of output\n"
d1fd1ea9 220 " --names use port names in output\n"
186afbfe
BP
221 "\nOptions for mod-flow:\n"
222 " --may-create create flow if it doesn't exist\n"
1f4a7252 223 " --read-only do not run read/write commands\n"
186afbfe 224 " --clear reset existing stats to zero\n"
733970eb 225 "\nOther options:\n"
064af421
BP
226 " -t, --timeout=SECS give up after SECS seconds\n"
227 " -h, --help display this help message\n"
228 " -V, --version display version information\n");
229 exit(EXIT_SUCCESS);
230}