2017-03-02 14:12:20 +00:00
|
|
|
/*-
|
|
|
|
* BSD LICENSE
|
|
|
|
*
|
|
|
|
* Copyright (c) Intel Corporation.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* * Neither the name of Intel Corporation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2017-05-02 18:18:25 +00:00
|
|
|
#include "spdk/stdinc.h"
|
2017-03-02 14:12:20 +00:00
|
|
|
|
|
|
|
#include "spdk/log.h"
|
|
|
|
#include "spdk/conf.h"
|
|
|
|
#include "spdk/event.h"
|
|
|
|
|
|
|
|
#include "spdk/vhost.h"
|
|
|
|
|
|
|
|
|
|
|
|
#define SPDK_VHOST_DEFAULT_CONFIG "/usr/local/etc/spdk/vhost.conf"
|
|
|
|
#define SPDK_VHOST_DEFAULT_ENABLE_COREDUMP true
|
|
|
|
#define SPDK_VHOST_DEFAULT_MEM_SIZE 1024
|
|
|
|
|
|
|
|
static void
|
|
|
|
vhost_app_opts_init(struct spdk_app_opts *opts)
|
|
|
|
{
|
|
|
|
spdk_app_opts_init(opts);
|
|
|
|
opts->name = "vhost";
|
2017-10-26 03:32:58 +00:00
|
|
|
if (access(SPDK_VHOST_DEFAULT_CONFIG, F_OK) == 0) {
|
|
|
|
opts->config_file = SPDK_VHOST_DEFAULT_CONFIG;
|
|
|
|
}
|
2017-06-16 08:41:13 +00:00
|
|
|
opts->mem_size = SPDK_VHOST_DEFAULT_MEM_SIZE;
|
2017-03-02 14:12:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
usage(char *executable_name)
|
|
|
|
{
|
|
|
|
struct spdk_app_opts defaults;
|
|
|
|
|
|
|
|
vhost_app_opts_init(&defaults);
|
|
|
|
|
|
|
|
printf("%s [options]\n", executable_name);
|
|
|
|
printf("options:\n");
|
|
|
|
printf(" -c config config file (default: %s)\n", defaults.config_file);
|
|
|
|
printf(" -e mask tracepoint group mask for spdk trace buffers (default: 0x0)\n");
|
2017-07-07 10:56:04 +00:00
|
|
|
printf(" -f pidfile save pid to file under given path\n");
|
2017-08-10 09:09:41 +00:00
|
|
|
printf(" -i shm_id shared memory ID (optional)\n");
|
2017-03-02 14:12:20 +00:00
|
|
|
printf(" -m mask reactor core mask (default: 0x1)\n");
|
2017-10-03 18:31:32 +00:00
|
|
|
printf(" -N pass --no-pci to DPDK\n");
|
2017-03-02 14:12:20 +00:00
|
|
|
printf(" -p core master (primary) core for DPDK\n");
|
2017-06-16 08:41:13 +00:00
|
|
|
printf(" -s size memory size in MB for DPDK (default: %dMB)\n", defaults.mem_size);
|
2017-03-02 14:12:20 +00:00
|
|
|
printf(" -S dir directory where to create vhost sockets (default: pwd)\n");
|
|
|
|
spdk_tracelog_usage(stdout, "-t");
|
|
|
|
printf(" -h show this usage\n");
|
|
|
|
printf(" -d disable coredump file enabling\n");
|
|
|
|
printf(" -q disable notice level logging to stderr\n");
|
|
|
|
}
|
|
|
|
|
2017-07-07 10:56:04 +00:00
|
|
|
static void
|
|
|
|
save_pid(const char *pid_path)
|
|
|
|
{
|
|
|
|
FILE *pid_file;
|
|
|
|
|
|
|
|
pid_file = fopen(pid_path, "w");
|
|
|
|
if (pid_file == NULL) {
|
|
|
|
fprintf(stderr, "Couldn't create pid file '%s': %s\n", pid_path, strerror(errno));
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(pid_file, "%d\n", getpid());
|
|
|
|
fclose(pid_file);
|
|
|
|
}
|
|
|
|
|
2017-03-02 14:12:20 +00:00
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
struct spdk_app_opts opts = {};
|
2017-11-08 23:42:56 +00:00
|
|
|
int ch;
|
2017-03-02 14:12:20 +00:00
|
|
|
int rc;
|
|
|
|
const char *socket_path = NULL;
|
2017-07-07 10:56:04 +00:00
|
|
|
const char *pid_path = NULL;
|
2017-03-02 14:12:20 +00:00
|
|
|
|
|
|
|
vhost_app_opts_init(&opts);
|
|
|
|
|
2017-08-10 09:09:41 +00:00
|
|
|
while ((ch = getopt(argc, argv, "c:de:f:i:m:Np:qs:S:t:h")) != -1) {
|
2017-03-02 14:12:20 +00:00
|
|
|
switch (ch) {
|
|
|
|
case 'c':
|
|
|
|
opts.config_file = optarg;
|
|
|
|
break;
|
|
|
|
case 'd':
|
|
|
|
opts.enable_coredump = false;
|
|
|
|
break;
|
|
|
|
case 'e':
|
|
|
|
opts.tpoint_group_mask = optarg;
|
|
|
|
break;
|
2017-07-07 10:56:04 +00:00
|
|
|
case 'f':
|
|
|
|
pid_path = optarg;
|
|
|
|
break;
|
2017-03-02 14:12:20 +00:00
|
|
|
case 'h':
|
|
|
|
usage(argv[0]);
|
|
|
|
exit(EXIT_SUCCESS);
|
2017-08-10 09:09:41 +00:00
|
|
|
case 'i':
|
|
|
|
opts.shm_id = strtoul(optarg, NULL, 10);
|
|
|
|
break;
|
2017-03-02 14:12:20 +00:00
|
|
|
case 'm':
|
|
|
|
opts.reactor_mask = optarg;
|
|
|
|
break;
|
2017-10-03 18:31:32 +00:00
|
|
|
case 'N':
|
|
|
|
opts.no_pci = true;
|
|
|
|
break;
|
2017-03-02 14:12:20 +00:00
|
|
|
case 'p':
|
2017-06-16 08:41:13 +00:00
|
|
|
opts.master_core = strtoul(optarg, NULL, 10);
|
2017-03-02 14:12:20 +00:00
|
|
|
break;
|
|
|
|
case 'q':
|
2017-11-03 23:16:34 +00:00
|
|
|
opts.print_level = SPDK_LOG_WARN;
|
2017-03-02 14:12:20 +00:00
|
|
|
break;
|
|
|
|
case 's':
|
2017-06-16 08:41:13 +00:00
|
|
|
opts.mem_size = strtoul(optarg, NULL, 10);
|
2017-03-02 14:12:20 +00:00
|
|
|
break;
|
|
|
|
case 'S':
|
|
|
|
socket_path = optarg;
|
|
|
|
break;
|
|
|
|
case 't':
|
|
|
|
rc = spdk_log_set_trace_flag(optarg);
|
|
|
|
if (rc < 0) {
|
|
|
|
fprintf(stderr, "unknown flag\n");
|
|
|
|
usage(argv[0]);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2017-11-03 23:16:34 +00:00
|
|
|
opts.print_level = SPDK_LOG_DEBUG;
|
2017-03-02 14:12:20 +00:00
|
|
|
#ifndef DEBUG
|
|
|
|
fprintf(stderr, "%s must be rebuilt with CONFIG_DEBUG=y for -t flag.\n",
|
|
|
|
argv[0]);
|
|
|
|
usage(argv[0]);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "%s Unknown option '-%c'.\n", argv[0], ch);
|
|
|
|
usage(argv[0]);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-07 10:56:04 +00:00
|
|
|
if (pid_path) {
|
|
|
|
save_pid(pid_path);
|
|
|
|
}
|
|
|
|
|
2017-03-02 14:12:20 +00:00
|
|
|
opts.shutdown_cb = spdk_vhost_shutdown_cb;
|
|
|
|
|
|
|
|
/* Blocks until the application is exiting */
|
2017-06-06 06:31:47 +00:00
|
|
|
rc = spdk_app_start(&opts, spdk_vhost_startup, (void *)socket_path, NULL);
|
2017-03-02 14:12:20 +00:00
|
|
|
|
|
|
|
spdk_app_fini();
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|