]> git.proxmox.com Git - ceph.git/blame - ceph/src/spdk/app/iscsi_tgt/iscsi_tgt.c
import 15.2.0 Octopus source
[ceph.git] / ceph / src / spdk / app / iscsi_tgt / iscsi_tgt.c
CommitLineData
7c673cae
FG
1/*-
2 * BSD LICENSE
3 *
4 * Copyright (c) Intel Corporation.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 *
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
16 * distribution.
17 * * Neither the name of Intel Corporation nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 */
33
11fdf7f2 34#include "spdk/stdinc.h"
7c673cae
FG
35
36#include "spdk/env.h"
37#include "spdk/event.h"
38#include "iscsi/iscsi.h"
39#include "spdk/log.h"
40#include "spdk/net.h"
41
11fdf7f2
TL
42static int g_daemon_mode = 0;
43
7c673cae
FG
44static void
45spdk_sigusr1(int signo __attribute__((__unused__)))
46{
47 char *config_str = NULL;
11fdf7f2 48 if (spdk_app_get_running_config(&config_str, "iscsi.conf") < 0) {
7c673cae 49 fprintf(stderr, "Error getting config\n");
11fdf7f2 50 } else {
7c673cae
FG
51 fprintf(stdout, "============================\n");
52 fprintf(stdout, " iSCSI target running config\n");
53 fprintf(stdout, "=============================\n");
54 fprintf(stdout, "%s", config_str);
55 }
56 free(config_str);
57}
58
59static void
11fdf7f2 60iscsi_usage(void)
7c673cae 61{
11fdf7f2 62 printf(" -b run iscsi target background, the default is foreground\n");
7c673cae
FG
63}
64
65static void
9f95a23c 66spdk_startup(void *arg1)
7c673cae
FG
67{
68 if (getenv("MEMZONE_DUMP") != NULL) {
69 spdk_memzone_dump(stdout);
70 fflush(stdout);
71 }
72}
73
9f95a23c 74static int
11fdf7f2
TL
75iscsi_parse_arg(int ch, char *arg)
76{
77 switch (ch) {
78 case 'b':
79 g_daemon_mode = 1;
80 break;
81 default:
9f95a23c 82 return -EINVAL;
11fdf7f2 83 }
9f95a23c 84 return 0;
11fdf7f2
TL
85}
86
7c673cae
FG
87int
88main(int argc, char **argv)
89{
11fdf7f2 90 int rc;
7c673cae
FG
91 struct spdk_app_opts opts = {};
92
7c673cae 93 spdk_app_opts_init(&opts);
7c673cae 94 opts.name = "iscsi";
11fdf7f2
TL
95 if ((rc = spdk_app_parse_args(argc, argv, &opts, "b", NULL,
96 iscsi_parse_arg, iscsi_usage)) !=
97 SPDK_APP_PARSE_ARGS_SUCCESS) {
98 exit(rc);
7c673cae
FG
99 }
100
11fdf7f2 101 if (g_daemon_mode) {
7c673cae 102 if (daemon(1, 0) < 0) {
9f95a23c 103 SPDK_ERRLOG("Start iscsi target daemon failed.\n");
7c673cae
FG
104 exit(EXIT_FAILURE);
105 }
106 }
107
11fdf7f2 108 opts.shutdown_cb = NULL;
7c673cae 109 opts.usr1_handler = spdk_sigusr1;
7c673cae 110
7c673cae 111 /* Blocks until the application is exiting */
9f95a23c 112 rc = spdk_app_start(&opts, spdk_startup, NULL);
11fdf7f2
TL
113 if (rc) {
114 SPDK_ERRLOG("Start iscsi target daemon: spdk_app_start() retn non-zero\n");
115 }
7c673cae 116
11fdf7f2 117 spdk_app_fini();
7c673cae 118
11fdf7f2 119 return rc;
7c673cae 120}