2009-07-08 13:19:16 -07:00
|
|
|
|
/*
|
2014-01-23 15:33:25 -08:00
|
|
|
|
* Copyright (c) 2008, 2009, 2010, 2011, 2013, 2014 Nicira, Inc.
|
2009-07-08 13:19:16 -07:00
|
|
|
|
*
|
2009-06-15 15:11:30 -07:00
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
|
* You may obtain a copy of the License at:
|
2009-07-08 13:19:16 -07:00
|
|
|
|
*
|
2009-06-15 15:11:30 -07:00
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
*
|
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
|
* limitations under the License.
|
2009-07-08 13:19:16 -07:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#include "command-line.h"
|
|
|
|
|
#include <getopt.h>
|
|
|
|
|
#include <limits.h>
|
2009-10-23 11:49:39 -07:00
|
|
|
|
#include <stdlib.h>
|
2019-10-25 12:33:52 -07:00
|
|
|
|
#include "svec.h"
|
2016-03-03 10:20:46 -08:00
|
|
|
|
#include "openvswitch/dynamic-string.h"
|
2013-06-19 13:07:35 -07:00
|
|
|
|
#include "ovs-thread.h"
|
2009-07-08 13:19:16 -07:00
|
|
|
|
#include "util.h"
|
2014-12-15 14:10:38 +01:00
|
|
|
|
#include "openvswitch/vlog.h"
|
2011-03-31 16:23:50 -07:00
|
|
|
|
|
|
|
|
|
VLOG_DEFINE_THIS_MODULE(command_line);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
|
|
|
|
|
/* Given the GNU-style long options in 'options', returns a string that may be
|
|
|
|
|
* passed to getopt() with the corresponding short options. The caller is
|
|
|
|
|
* responsible for freeing the string. */
|
|
|
|
|
char *
|
2015-03-16 12:01:55 -04:00
|
|
|
|
ovs_cmdl_long_options_to_short_options(const struct option options[])
|
2009-07-08 13:19:16 -07:00
|
|
|
|
{
|
|
|
|
|
char short_options[UCHAR_MAX * 3 + 1];
|
|
|
|
|
char *p = short_options;
|
2010-08-30 00:24:53 -07:00
|
|
|
|
|
2009-07-08 13:19:16 -07:00
|
|
|
|
for (; options->name; options++) {
|
|
|
|
|
const struct option *o = options;
|
|
|
|
|
if (o->flag == NULL && o->val > 0 && o->val <= UCHAR_MAX) {
|
|
|
|
|
*p++ = o->val;
|
|
|
|
|
if (o->has_arg == required_argument) {
|
|
|
|
|
*p++ = ':';
|
|
|
|
|
} else if (o->has_arg == optional_argument) {
|
|
|
|
|
*p++ = ':';
|
|
|
|
|
*p++ = ':';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
*p = '\0';
|
2010-08-30 00:24:53 -07:00
|
|
|
|
|
2009-07-08 13:19:16 -07:00
|
|
|
|
return xstrdup(short_options);
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-02 15:27:32 -07:00
|
|
|
|
static char * OVS_WARN_UNUSED_RESULT
|
|
|
|
|
build_short_options(const struct option *long_options)
|
|
|
|
|
{
|
|
|
|
|
char *tmp, *short_options;
|
|
|
|
|
|
|
|
|
|
tmp = ovs_cmdl_long_options_to_short_options(long_options);
|
|
|
|
|
short_options = xasprintf("+:%s", tmp);
|
|
|
|
|
free(tmp);
|
|
|
|
|
|
|
|
|
|
return short_options;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct option *
|
|
|
|
|
find_option_by_value(const struct option *options, int value)
|
|
|
|
|
{
|
|
|
|
|
const struct option *o;
|
|
|
|
|
|
|
|
|
|
for (o = options; o->name; o++) {
|
|
|
|
|
if (o->val == value) {
|
|
|
|
|
return o;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-25 12:33:52 -07:00
|
|
|
|
/* Parses options set using environment variable. The caller specifies the
|
|
|
|
|
* supported options in environment variable. On success, adds the parsed
|
|
|
|
|
* env variables in 'argv', the number of options in 'argc', and returns argv.
|
|
|
|
|
* */
|
|
|
|
|
char **
|
|
|
|
|
ovs_cmdl_env_parse_all(int *argcp, char *argv[], const char *env_options)
|
|
|
|
|
{
|
|
|
|
|
ovs_assert(*argcp > 0);
|
|
|
|
|
|
|
|
|
|
struct svec args = SVEC_EMPTY_INITIALIZER;
|
|
|
|
|
svec_add(&args, argv[0]);
|
|
|
|
|
if (env_options) {
|
|
|
|
|
svec_parse_words(&args, env_options);
|
|
|
|
|
}
|
|
|
|
|
for (int i = 1; i < *argcp; i++) {
|
|
|
|
|
svec_add(&args, argv[i]);
|
|
|
|
|
}
|
|
|
|
|
svec_terminate(&args);
|
|
|
|
|
|
|
|
|
|
*argcp = args.n;
|
|
|
|
|
return args.names;
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-02 15:27:32 -07:00
|
|
|
|
/* Parses the command-line options in 'argc' and 'argv'. The caller specifies
|
|
|
|
|
* the supported options in 'options'. On success, stores the parsed options
|
|
|
|
|
* in '*pop', the number of options in '*n_pop', and returns NULL. On failure,
|
|
|
|
|
* returns an error message and zeros the output arguments. */
|
|
|
|
|
char * OVS_WARN_UNUSED_RESULT
|
|
|
|
|
ovs_cmdl_parse_all(int argc, char *argv[],
|
|
|
|
|
const struct option *options,
|
|
|
|
|
struct ovs_cmdl_parsed_option **pop, size_t *n_pop)
|
|
|
|
|
{
|
|
|
|
|
/* Count number of options so we can have better assertions later. */
|
|
|
|
|
size_t n_options OVS_UNUSED = 0;
|
|
|
|
|
while (options[n_options].name) {
|
|
|
|
|
n_options++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
char *short_options = build_short_options(options);
|
|
|
|
|
|
|
|
|
|
struct ovs_cmdl_parsed_option *po = NULL;
|
|
|
|
|
size_t allocated_po = 0;
|
|
|
|
|
size_t n_po = 0;
|
|
|
|
|
|
|
|
|
|
char *error;
|
|
|
|
|
|
|
|
|
|
optind = 0;
|
|
|
|
|
opterr = 0;
|
|
|
|
|
for (;;) {
|
|
|
|
|
int idx = -1;
|
|
|
|
|
int c = getopt_long(argc, argv, short_options, options, &idx);
|
|
|
|
|
switch (c) {
|
|
|
|
|
case -1:
|
|
|
|
|
*pop = po;
|
|
|
|
|
*n_pop = n_po;
|
|
|
|
|
free(short_options);
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
case 0:
|
|
|
|
|
/* getopt_long() processed the option directly by setting a flag
|
|
|
|
|
* variable. This is probably undesirable for use with this
|
|
|
|
|
* function. */
|
|
|
|
|
OVS_NOT_REACHED();
|
|
|
|
|
|
|
|
|
|
case '?':
|
|
|
|
|
if (optopt && find_option_by_value(options, optopt)) {
|
|
|
|
|
error = xasprintf("option '%s' doesn't allow an argument",
|
|
|
|
|
argv[optind - 1]);
|
|
|
|
|
} else if (optopt) {
|
|
|
|
|
error = xasprintf("unrecognized option '%c'", optopt);
|
|
|
|
|
} else {
|
|
|
|
|
error = xasprintf("unrecognized option '%s'",
|
|
|
|
|
argv[optind - 1]);
|
|
|
|
|
}
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
|
|
case ':':
|
|
|
|
|
error = xasprintf("option '%s' requires an argument",
|
|
|
|
|
argv[optind - 1]);
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
if (n_po >= allocated_po) {
|
|
|
|
|
po = x2nrealloc(po, &allocated_po, sizeof *po);
|
|
|
|
|
}
|
|
|
|
|
if (idx == -1) {
|
|
|
|
|
po[n_po].o = find_option_by_value(options, c);
|
|
|
|
|
} else {
|
|
|
|
|
ovs_assert(idx >= 0 && idx < n_options);
|
|
|
|
|
po[n_po].o = &options[idx];
|
|
|
|
|
}
|
|
|
|
|
po[n_po].arg = optarg;
|
|
|
|
|
n_po++;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
OVS_NOT_REACHED();
|
|
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
free(po);
|
|
|
|
|
*pop = NULL;
|
|
|
|
|
*n_pop = 0;
|
|
|
|
|
free(short_options);
|
|
|
|
|
return error;
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-16 12:01:55 -04:00
|
|
|
|
/* Given the 'struct ovs_cmdl_command' array, prints the usage of all commands. */
|
2014-10-16 13:27:32 -07:00
|
|
|
|
void
|
2015-03-16 12:01:55 -04:00
|
|
|
|
ovs_cmdl_print_commands(const struct ovs_cmdl_command commands[])
|
2014-10-16 13:27:32 -07:00
|
|
|
|
{
|
|
|
|
|
struct ds ds = DS_EMPTY_INITIALIZER;
|
|
|
|
|
|
|
|
|
|
ds_put_cstr(&ds, "The available commands are:\n");
|
|
|
|
|
for (; commands->name; commands++) {
|
2015-03-16 12:01:55 -04:00
|
|
|
|
const struct ovs_cmdl_command *c = commands;
|
2014-10-16 13:27:32 -07:00
|
|
|
|
ds_put_format(&ds, " %-23s %s\n", c->name, c->usage ? c->usage : "");
|
|
|
|
|
}
|
|
|
|
|
printf("%s", ds.string);
|
|
|
|
|
ds_destroy(&ds);
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-11 17:24:35 -07:00
|
|
|
|
/* Given the GNU-style options in 'options', prints all options. */
|
|
|
|
|
void
|
2015-03-16 12:01:55 -04:00
|
|
|
|
ovs_cmdl_print_options(const struct option options[])
|
2014-09-11 17:24:35 -07:00
|
|
|
|
{
|
|
|
|
|
struct ds ds = DS_EMPTY_INITIALIZER;
|
|
|
|
|
|
|
|
|
|
for (; options->name; options++) {
|
|
|
|
|
const struct option *o = options;
|
|
|
|
|
const char *arg = o->has_arg == required_argument ? "ARG" : "[ARG]";
|
|
|
|
|
|
|
|
|
|
ds_put_format(&ds, "--%s%s%s\n", o->name, o->has_arg ? "=" : "",
|
|
|
|
|
o->has_arg ? arg : "");
|
|
|
|
|
if (o->flag == NULL && o->val > 0 && o->val <= UCHAR_MAX) {
|
|
|
|
|
ds_put_format(&ds, "-%c %s\n", o->val, o->has_arg ? arg : "");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
printf("%s", ds.string);
|
|
|
|
|
ds_destroy(&ds);
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-15 18:47:29 +00:00
|
|
|
|
static void
|
|
|
|
|
ovs_cmdl_run_command__(struct ovs_cmdl_context *ctx,
|
|
|
|
|
const struct ovs_cmdl_command commands[],
|
|
|
|
|
bool read_only)
|
2009-10-23 11:49:39 -07:00
|
|
|
|
{
|
2015-03-16 12:01:55 -04:00
|
|
|
|
const struct ovs_cmdl_command *p;
|
2009-10-23 11:49:39 -07:00
|
|
|
|
|
2015-03-17 10:35:26 -04:00
|
|
|
|
if (ctx->argc < 1) {
|
2009-10-23 11:49:39 -07:00
|
|
|
|
ovs_fatal(0, "missing command name; use --help for help");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (p = commands; p->name != NULL; p++) {
|
2015-03-17 10:35:26 -04:00
|
|
|
|
if (!strcmp(p->name, ctx->argv[0])) {
|
|
|
|
|
int n_arg = ctx->argc - 1;
|
2009-10-23 11:49:39 -07:00
|
|
|
|
if (n_arg < p->min_args) {
|
2011-03-31 16:23:50 -07:00
|
|
|
|
VLOG_FATAL( "'%s' command requires at least %d arguments",
|
|
|
|
|
p->name, p->min_args);
|
2009-10-23 11:49:39 -07:00
|
|
|
|
} else if (n_arg > p->max_args) {
|
2011-03-31 16:23:50 -07:00
|
|
|
|
VLOG_FATAL("'%s' command takes at most %d arguments",
|
|
|
|
|
p->name, p->max_args);
|
2009-10-23 11:49:39 -07:00
|
|
|
|
} else {
|
2016-08-15 18:47:29 +00:00
|
|
|
|
if (p->mode == OVS_RW && read_only) {
|
|
|
|
|
VLOG_FATAL("'%s' command does not work in read only mode",
|
|
|
|
|
p->name);
|
|
|
|
|
}
|
2015-03-17 10:35:26 -04:00
|
|
|
|
p->handler(ctx);
|
2009-10-23 11:49:39 -07:00
|
|
|
|
if (ferror(stdout)) {
|
2011-03-31 16:23:50 -07:00
|
|
|
|
VLOG_FATAL("write to stdout failed");
|
2009-10-23 11:49:39 -07:00
|
|
|
|
}
|
|
|
|
|
if (ferror(stderr)) {
|
2011-03-31 16:23:50 -07:00
|
|
|
|
VLOG_FATAL("write to stderr failed");
|
2009-10-23 11:49:39 -07:00
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-17 10:35:26 -04:00
|
|
|
|
VLOG_FATAL("unknown command '%s'; use --help for help", ctx->argv[0]);
|
2009-10-23 11:49:39 -07:00
|
|
|
|
}
|
2016-08-15 18:47:29 +00:00
|
|
|
|
|
|
|
|
|
/* Runs the command designated by argv[0] within the command table specified by
|
|
|
|
|
* 'commands', which must be terminated by a command whose 'name' member is a
|
|
|
|
|
* null pointer.
|
|
|
|
|
*
|
|
|
|
|
* Command-line options should be stripped off, so that a typical invocation
|
|
|
|
|
* looks like:
|
|
|
|
|
* struct ovs_cmdl_context ctx = {
|
|
|
|
|
* .argc = argc - optind,
|
|
|
|
|
* .argv = argv + optind,
|
|
|
|
|
* };
|
|
|
|
|
* ovs_cmdl_run_command(&ctx, my_commands);
|
|
|
|
|
* */
|
|
|
|
|
void
|
|
|
|
|
ovs_cmdl_run_command(struct ovs_cmdl_context *ctx,
|
|
|
|
|
const struct ovs_cmdl_command commands[])
|
|
|
|
|
{
|
|
|
|
|
ovs_cmdl_run_command__(ctx, commands, false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
ovs_cmdl_run_command_read_only(struct ovs_cmdl_context *ctx,
|
|
|
|
|
const struct ovs_cmdl_command commands[])
|
|
|
|
|
{
|
|
|
|
|
ovs_cmdl_run_command__(ctx, commands, true);
|
|
|
|
|
}
|
2010-01-19 15:00:56 -08:00
|
|
|
|
|
|
|
|
|
/* Process title. */
|
|
|
|
|
|
2014-01-23 15:33:25 -08:00
|
|
|
|
#ifdef __linux__
|
2013-07-30 15:31:48 -07:00
|
|
|
|
static struct ovs_mutex proctitle_mutex = OVS_MUTEX_INITIALIZER;
|
|
|
|
|
|
|
|
|
|
/* Start of command-line arguments in memory. */
|
|
|
|
|
static char *argv_start OVS_GUARDED_BY(proctitle_mutex);
|
|
|
|
|
|
|
|
|
|
/* Number of bytes of command-line arguments. */
|
|
|
|
|
static size_t argv_size OVS_GUARDED_BY(proctitle_mutex);
|
|
|
|
|
|
|
|
|
|
/* Saved command-line arguments. */
|
|
|
|
|
static char *saved_proctitle OVS_GUARDED_BY(proctitle_mutex);
|
2010-01-19 15:00:56 -08:00
|
|
|
|
|
|
|
|
|
/* Prepares the process so that proctitle_set() can later succeed.
|
|
|
|
|
*
|
|
|
|
|
* This modifies the argv[] array so that it no longer points into the memory
|
|
|
|
|
* that it originally does. Later, proctitle_set() might overwrite that
|
|
|
|
|
* memory. That means that this function should be called before anything else
|
|
|
|
|
* that accesses the process's argv[] array. Ideally, it should be called
|
|
|
|
|
* before anything else, period, at the very beginning of program
|
|
|
|
|
* execution. */
|
|
|
|
|
void
|
2015-03-16 12:01:55 -04:00
|
|
|
|
ovs_cmdl_proctitle_init(int argc, char **argv)
|
2010-01-19 15:00:56 -08:00
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
2013-06-19 13:07:35 -07:00
|
|
|
|
assert_single_threaded();
|
2010-01-19 15:00:56 -08:00
|
|
|
|
if (!argc || !argv[0]) {
|
|
|
|
|
/* This situation should never occur, but... */
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-30 15:31:48 -07:00
|
|
|
|
ovs_mutex_lock(&proctitle_mutex);
|
2010-01-19 15:00:56 -08:00
|
|
|
|
/* Specialized version of first loop iteration below. */
|
|
|
|
|
argv_start = argv[0];
|
|
|
|
|
argv_size = strlen(argv[0]) + 1;
|
|
|
|
|
argv[0] = xstrdup(argv[0]);
|
|
|
|
|
|
|
|
|
|
for (i = 1; i < argc; i++) {
|
|
|
|
|
size_t size = strlen(argv[i]) + 1;
|
|
|
|
|
|
|
|
|
|
/* Add (argv[i], strlen(argv[i])+1) to (argv_start, argv_size). */
|
|
|
|
|
if (argv[i] + size == argv_start) {
|
|
|
|
|
/* Arguments grow downward in memory. */
|
|
|
|
|
argv_start -= size;
|
|
|
|
|
argv_size += size;
|
|
|
|
|
} else if (argv[i] == argv_start + argv_size) {
|
|
|
|
|
/* Arguments grow upward in memory. */
|
|
|
|
|
argv_size += size;
|
|
|
|
|
} else {
|
|
|
|
|
/* Arguments not contiguous. (Is this really Linux?) */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Copy out the old argument so we can reuse the space. */
|
|
|
|
|
argv[i] = xstrdup(argv[i]);
|
|
|
|
|
}
|
2013-07-30 15:31:48 -07:00
|
|
|
|
ovs_mutex_unlock(&proctitle_mutex);
|
2010-01-19 15:00:56 -08:00
|
|
|
|
}
|
|
|
|
|
|
2012-10-11 20:49:38 +00:00
|
|
|
|
/* Changes the name of the process, as shown by "ps", to the program name
|
|
|
|
|
* followed by 'format', which is formatted as if by printf(). */
|
2010-01-19 15:00:56 -08:00
|
|
|
|
void
|
2015-03-16 12:01:55 -04:00
|
|
|
|
ovs_cmdl_proctitle_set(const char *format, ...)
|
2010-01-19 15:00:56 -08:00
|
|
|
|
{
|
|
|
|
|
va_list args;
|
|
|
|
|
int n;
|
|
|
|
|
|
2013-07-30 15:31:48 -07:00
|
|
|
|
ovs_mutex_lock(&proctitle_mutex);
|
2010-01-19 15:00:56 -08:00
|
|
|
|
if (!argv_start || argv_size < 8) {
|
2013-07-30 15:31:48 -07:00
|
|
|
|
goto out;
|
2010-01-19 15:00:56 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!saved_proctitle) {
|
|
|
|
|
saved_proctitle = xmemdup(argv_start, argv_size);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
va_start(args, format);
|
2012-10-11 20:49:38 +00:00
|
|
|
|
n = snprintf(argv_start, argv_size, "%s: ", program_name);
|
|
|
|
|
if (n < argv_size) {
|
|
|
|
|
n += vsnprintf(argv_start + n, argv_size - n, format, args);
|
|
|
|
|
}
|
2010-01-19 15:00:56 -08:00
|
|
|
|
if (n >= argv_size) {
|
|
|
|
|
/* The name is too long, so add an ellipsis at the end. */
|
|
|
|
|
strcpy(&argv_start[argv_size - 4], "...");
|
|
|
|
|
} else {
|
|
|
|
|
/* Fill the extra space with null bytes, so that trailing bytes don't
|
|
|
|
|
* show up in the command line. */
|
|
|
|
|
memset(&argv_start[n], '\0', argv_size - n);
|
|
|
|
|
}
|
|
|
|
|
va_end(args);
|
2013-07-30 15:31:48 -07:00
|
|
|
|
|
|
|
|
|
out:
|
|
|
|
|
ovs_mutex_unlock(&proctitle_mutex);
|
2010-01-19 15:00:56 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Restores the process's original command line, as seen by "ps". */
|
|
|
|
|
void
|
2015-03-16 12:01:55 -04:00
|
|
|
|
ovs_cmdl_proctitle_restore(void)
|
2010-01-19 15:00:56 -08:00
|
|
|
|
{
|
2013-07-30 15:31:48 -07:00
|
|
|
|
ovs_mutex_lock(&proctitle_mutex);
|
2010-01-19 15:00:56 -08:00
|
|
|
|
if (saved_proctitle) {
|
|
|
|
|
memcpy(argv_start, saved_proctitle, argv_size);
|
|
|
|
|
free(saved_proctitle);
|
|
|
|
|
saved_proctitle = NULL;
|
|
|
|
|
}
|
2013-07-30 15:31:48 -07:00
|
|
|
|
ovs_mutex_unlock(&proctitle_mutex);
|
2010-01-19 15:00:56 -08:00
|
|
|
|
}
|
2014-01-23 15:33:25 -08:00
|
|
|
|
#else /* !__linux__ */
|
2010-01-19 15:00:56 -08:00
|
|
|
|
/* Stubs that don't do anything on non-Linux systems. */
|
|
|
|
|
|
|
|
|
|
void
|
2015-03-16 12:01:55 -04:00
|
|
|
|
ovs_cmdl_proctitle_init(int argc OVS_UNUSED, char **argv OVS_UNUSED)
|
2010-01-19 15:00:56 -08:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-21 17:49:54 +09:00
|
|
|
|
#if !(defined(__FreeBSD__) || defined(__NetBSD__))
|
|
|
|
|
/* On these platforms we #define this to setproctitle. */
|
2010-01-19 15:00:56 -08:00
|
|
|
|
void
|
2015-03-16 12:01:55 -04:00
|
|
|
|
ovs_cmdl_proctitle_set(const char *format OVS_UNUSED, ...)
|
2010-01-19 15:00:56 -08:00
|
|
|
|
{
|
|
|
|
|
}
|
2012-10-11 20:58:17 +00:00
|
|
|
|
#endif
|
2010-01-19 15:00:56 -08:00
|
|
|
|
|
|
|
|
|
void
|
2015-03-16 12:01:55 -04:00
|
|
|
|
ovs_cmdl_proctitle_restore(void)
|
2010-01-19 15:00:56 -08:00
|
|
|
|
{
|
|
|
|
|
}
|
2014-01-23 15:33:25 -08:00
|
|
|
|
#endif /* !__linux__ */
|