1 /* Copyright (c) 2008 The Board of Trustees of The Leland Stanford
4 * We are making the OpenFlow specification and associated documentation
5 * (Software) available for public use and benefit with the expectation
6 * that others will use, modify and enhance the Software and contribute
7 * those enhancements back to the community. However, since we would
8 * like to make the Software available for broadest use, with as few
9 * restrictions as possible permission is hereby granted, free of
10 * charge, to any person obtaining a copy of this Software to deal in
11 * the Software under the copyrights without restriction, including
12 * without limitation the rights to use, copy, modify, merge, publish,
13 * distribute, sublicense, and/or sell copies of the Software, and to
14 * permit persons to whom the Software is furnished to do so, subject to
15 * the following conditions:
17 * The above copyright notice and this permission notice shall be
18 * included in all copies or substantial portions of the Software.
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
24 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
25 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
26 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
29 * The name and trademarks of copyright holder(s) may NOT be used in
30 * advertising or publicity pertaining to the Software or any
31 * derivatives without specific, written prior permission.
44 #include "command-line.h"
47 #include "vlog-socket.h"
50 usage(char *prog_name, int exit_code)
52 printf("Usage: %s [TARGET] [ACTION...]\n"
54 " -a, --all Apply to all targets (default)\n"
55 " -t, --target=TARGET Specify target program, as a pid or an\n"
56 " absolute path to a Unix domain socket\n"
58 " -l, --list List current settings\n"
59 " -s, --set=MODULE[:FACILITY[:LEVEL]]\n"
60 " Set MODULE and FACILITY log level to LEVEL\n"
61 " MODULE may be any valid module name or 'ANY'\n"
62 " FACILITY may be 'syslog' or 'console' or 'ANY' (default)\n"
63 " LEVEL may be 'emer', 'err', 'warn', or 'dbg (default)'\n"
64 " -h, --help Print this helpful information\n",
70 transact(struct vlog_client *client, const char *request, bool *ok)
73 int error = vlog_client_transact(client, request, &reply);
75 fprintf(stderr, "%s: transaction error: %s\n",
76 vlog_client_target(client), strerror(error));
79 return reply ? reply : xstrdup("");
83 transact_ack(struct vlog_client *client, const char* request, bool *ok)
86 int error = vlog_client_transact(client, request, &reply);
88 fprintf(stderr, "%s: transaction error: %s\n",
89 vlog_client_target(client), strerror(error));
91 } else if (strcmp(reply, "ack")) {
92 fprintf(stderr, "Received unexpected reply from %s: %s\n",
93 vlog_client_target(client), reply);
100 add_target(struct vlog_client ***clients, size_t *n_clients,
101 const char *path, bool *ok)
103 struct vlog_client *client;
104 int error = vlog_client_connect(path, &client);
106 fprintf(stderr, "Error connecting to \"%s\": %s\n",
107 path, strerror(error));
110 *clients = xrealloc(*clients, sizeof *clients * (*n_clients + 1));
111 (*clients)[*n_clients] = client;
117 add_all_targets(struct vlog_client ***clients, size_t *n_clients, bool *ok)
122 directory = opendir("/tmp");
124 fprintf(stderr, "/tmp: opendir: %s\n", strerror(errno));
127 while ((de = readdir(directory)) != NULL) {
128 if (!strncmp(de->d_name, "vlogs.", 5)) {
129 char *path = xasprintf("/tmp/%s", de->d_name);
130 add_target(clients, n_clients, path, ok);
138 int main(int argc, char *argv[])
140 static const struct option long_options[] = {
141 /* Target options must come first. */
142 {"all", no_argument, NULL, 'a'},
143 {"target", required_argument, NULL, 't'},
144 {"help", no_argument, NULL, 'h'},
146 /* Action options come afterward. */
147 {"list", no_argument, NULL, 'l'},
148 {"set", required_argument, NULL, 's'},
153 /* Determine targets. */
156 struct vlog_client **clients = NULL;
157 size_t n_clients = 0;
159 set_program_name(argv[0]);
161 short_options = long_options_to_short_options(long_options);
166 option = getopt_long(argc, argv, short_options, long_options, NULL);
170 if (!strchr("ath", option) && n_clients == 0) {
171 fatal(0, "no targets specified (use --help for help)");
177 add_all_targets(&clients, &n_clients, &ok);
181 add_target(&clients, &n_clients, optarg, &ok);
185 for (i = 0; i < n_clients; i++) {
186 struct vlog_client *client = clients[i];
189 printf("%s:\n", vlog_client_target(client));
190 reply = transact(client, "list", &ok);
191 fputs(reply, stdout);
197 for (i = 0; i < n_clients; i++) {
198 struct vlog_client *client = clients[i];
199 char *request = xasprintf("set %s", optarg);
200 transact_ack(client, request, &ok);
206 usage(argv[0], EXIT_SUCCESS);
215 "warning: no actions specified (use --help for help)\n");