dmMain.c 8.0 KB
Newer Older
H
refact  
Hongze Cheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
 *
 * This program is free software: you can use, redistribute, and/or modify
 * it under the terms of the GNU Affero General Public License, version 3
 * or later ("AGPL"), as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */
S
Shengliang Guan 已提交
15 16

#define _DEFAULT_SOURCE
S
Shengliang Guan 已提交
17
#include "dmMgmt.h"
S
Shengliang Guan 已提交
18
#include "tconfig.h"
H
refact  
Hongze Cheng 已提交
19

20 21 22 23 24 25 26 27 28
#define DM_APOLLO_URL    "The apollo string to use when configuring the server, such as: -a 'jsonFile:./tests/cfg.json', cfg.json text can be '{\"fqdn\":\"td1\"}'."
#define DM_CFG_DIR       "Configuration directory."
#define DM_DMP_CFG       "Dump configuration."
#define DM_ENV_CMD       "The env cmd variable string to use when configuring the server, such as: -e 'TAOS_FQDN=td1'."
#define DM_ENV_FILE      "The env variable file path to use when configuring the server, default is './.env', .env text can be 'TAOS_FQDN=td1'."
#define DM_NODE_TYPE     "Startup type of the node, default is 0."
#define DM_MACHINE_CODE  "Get machine code."
#define DM_VERSION       "Print program version."
#define DM_EMAIL         "<support@taosdata.com>"
S
Shengliang Guan 已提交
29
static struct {
S
Shengliang Guan 已提交
30 31 32 33
  bool         dumpConfig;
  bool         generateGrant;
  bool         printAuth;
  bool         printVersion;
34
  bool         printHelp;
S
Shengliang Guan 已提交
35 36
  char         envFile[PATH_MAX];
  char         apolloUrl[PATH_MAX];
wafwerar's avatar
wafwerar 已提交
37
  const char **envCmd;
S
Shengliang Guan 已提交
38 39
  SArray      *pArgs;  // SConfigPair
  SDnode      *pDnode;
S
Shengliang Guan 已提交
40
  EDndNodeType ntype;
S
shm  
Shengliang Guan 已提交
41
} global = {0};
S
Shengliang Guan 已提交
42

S
Shengliang Guan 已提交
43
static void dmStopDnode(int signum, void *info, void *ctx) {
S
shm  
Shengliang Guan 已提交
44 45
  SDnode *pDnode = atomic_val_compare_exchange_ptr(&global.pDnode, 0, global.pDnode);
  if (pDnode != NULL) {
S
Shengliang Guan 已提交
46
    dmSetEvent(pDnode, DND_EVENT_STOP);
S
shm  
Shengliang Guan 已提交
47
  }
48
}
S
Shengliang Guan 已提交
49

S
Shengliang Guan 已提交
50 51 52 53 54 55
static void dmSetSignalHandle() {
  taosSetSignal(SIGTERM, dmStopDnode);
  taosSetSignal(SIGHUP, dmStopDnode);
  taosSetSignal(SIGINT, dmStopDnode);
  taosSetSignal(SIGABRT, dmStopDnode);
  taosSetSignal(SIGBREAK, dmStopDnode);
wafwerar's avatar
wafwerar 已提交
56 57
#ifndef WINDOWS
  taosSetSignal(SIGTSTP, dmStopDnode);
S
Shengliang Guan 已提交
58
  taosSetSignal(SIGQUIT, dmStopDnode);
wafwerar's avatar
wafwerar 已提交
59
#endif
S
Shengliang Guan 已提交
60 61

  if (!tsMultiProcess) {
S
Shengliang Guan 已提交
62
  } else if (global.ntype == DNODE || global.ntype == NODE_END) {
S
Shengliang Guan 已提交
63
    taosIgnSignal(SIGCHLD);
S
Shengliang Guan 已提交
64
  } else {
S
shm  
Shengliang Guan 已提交
65
    taosKillChildOnParentStopped();
S
Shengliang Guan 已提交
66
  }
S
Shengliang Guan 已提交
67 68
}

S
Shengliang Guan 已提交
69
static int32_t dmParseArgs(int32_t argc, char const *argv[]) {
wafwerar's avatar
wafwerar 已提交
70
  int32_t cmdEnvIndex = 0;
wafwerar's avatar
wafwerar 已提交
71
  if (argc < 2) return 0;
wafwerar's avatar
wafwerar 已提交
72 73
  global.envCmd = taosMemoryMalloc((argc-1)*sizeof(char*));
  memset(global.envCmd, 0, (argc-1)*sizeof(char*));
S
Shengliang Guan 已提交
74
  for (int32_t i = 1; i < argc; ++i) {
S
Shengliang Guan 已提交
75 76 77 78 79 80
    if (strcmp(argv[i], "-c") == 0) {
      if (i < argc - 1) {
        if (strlen(argv[++i]) >= PATH_MAX) {
          printf("config file path overflow");
          return -1;
        }
S
Shengliang Guan 已提交
81
        tstrncpy(configDir, argv[i], PATH_MAX);
S
Shengliang Guan 已提交
82
      } else {
83
        printf("'-c' requires a parameter, default is %s\n", configDir);
S
Shengliang Guan 已提交
84 85
        return -1;
      }
S
Shengliang Guan 已提交
86 87
    } else if (strcmp(argv[i], "-a") == 0) {
      tstrncpy(global.apolloUrl, argv[++i], PATH_MAX);
wafwerar's avatar
wafwerar 已提交
88
    } else if (strcmp(argv[i], "-E") == 0) {
S
Shengliang Guan 已提交
89
      tstrncpy(global.envFile, argv[++i], PATH_MAX);
S
Shengliang Guan 已提交
90
    } else if (strcmp(argv[i], "-n") == 0) {
S
shm  
Shengliang Guan 已提交
91
      global.ntype = atoi(argv[++i]);
S
Shengliang Guan 已提交
92
      if (global.ntype <= DNODE || global.ntype > NODE_END) {
S
Shengliang Guan 已提交
93
        printf("'-n' range is [1 - %d], default is 0\n", NODE_END - 1);
S
shm  
Shengliang Guan 已提交
94 95
        return -1;
      }
S
shm  
Shengliang Guan 已提交
96 97
    } else if (strcmp(argv[i], "-k") == 0) {
      global.generateGrant = true;
S
Shengliang Guan 已提交
98 99
    } else if (strcmp(argv[i], "-C") == 0) {
      global.dumpConfig = true;
S
Shengliang Guan 已提交
100
    } else if (strcmp(argv[i], "-V") == 0) {
S
shm  
Shengliang Guan 已提交
101
      global.printVersion = true;
wafwerar's avatar
wafwerar 已提交
102 103 104
    } else if (strcmp(argv[i], "-e") == 0) {
      global.envCmd[cmdEnvIndex] = argv[++i];
      cmdEnvIndex++;
105 106
    } else if (strcmp(argv[i], "-h") == 0 || strcmp(argv[i], "--help") == 0 || strcmp(argv[i], "--usage") == 0 || strcmp(argv[i], "-?")) {
      global.printHelp = true;
S
Shengliang Guan 已提交
107 108
    } else {
    }
S
Shengliang Guan 已提交
109 110
  }

S
Shengliang Guan 已提交
111 112 113
  return 0;
}

S
Shengliang Guan 已提交
114
static void dmGenerateGrant() { mndGenerateMachineCode(); }
S
Shengliang Guan 已提交
115

S
Shengliang Guan 已提交
116
static void dmPrintVersion() {
S
Shengliang Guan 已提交
117 118 119 120 121 122 123 124 125 126
#ifdef TD_ENTERPRISE
  char *releaseName = "enterprise";
#else
  char *releaseName = "community";
#endif
  printf("%s version: %s compatible_version: %s\n", releaseName, version, compatible_version);
  printf("gitinfo: %s\n", gitinfo);
  printf("buildInfo: %s\n", buildinfo);
}

127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
static void dmPrintHelp() {
  char indent[] = "  ";
  printf("Usage: taosd [OPTION...] \n\n");
  printf("%s%s%s%s\n", indent, "-a,", indent, DM_APOLLO_URL);
  printf("%s%s%s%s\n", indent, "-c,", indent, DM_CFG_DIR);
  printf("%s%s%s%s\n", indent, "-C,", indent, DM_DMP_CFG);
  printf("%s%s%s%s\n", indent, "-e,", indent, DM_ENV_CMD);
  printf("%s%s%s%s\n", indent, "-E,", indent, DM_ENV_FILE);
  printf("%s%s%s%s\n", indent, "-n,", indent, DM_NODE_TYPE);
  printf("%s%s%s%s\n", indent, "-k,", indent, DM_MACHINE_CODE);
  printf("%s%s%s%s\n", indent, "-V,", indent, DM_VERSION);

  printf("\n\nReport bugs to %s.\n", DM_EMAIL);
}

S
Shengliang Guan 已提交
142
static void dmDumpCfg() {
S
Shengliang Guan 已提交
143
  SConfig *pCfg = taosGetCfg();
144
  cfgDumpCfg(pCfg, 0, true);
S
Shengliang Guan 已提交
145 146
}

S
Shengliang Guan 已提交
147
static SDnodeOpt dmGetOpt() {
S
Shengliang Guan 已提交
148 149 150 151 152 153 154 155 156 157
  SConfig  *pCfg = taosGetCfg();
  SDnodeOpt option = {0};

  option.numOfSupportVnodes = cfgGetItem(pCfg, "supportVnodes")->i32;
  tstrncpy(option.dataDir, tsDataDir, sizeof(option.dataDir));
  tstrncpy(option.firstEp, tsFirst, sizeof(option.firstEp));
  tstrncpy(option.secondEp, tsSecond, sizeof(option.firstEp));
  option.serverPort = tsServerPort;
  tstrncpy(option.localFqdn, tsLocalFqdn, sizeof(option.localFqdn));
  snprintf(option.localEp, sizeof(option.localEp), "%s:%u", option.localFqdn, option.serverPort);
S
Shengliang Guan 已提交
158
  option.disks = tsDiskCfg;
S
Shengliang Guan 已提交
159
  option.numOfDisks = tsDiskCfgNum;
S
Shengliang Guan 已提交
160
  option.ntype = global.ntype;
S
Shengliang Guan 已提交
161 162 163
  return option;
}

S
Shengliang Guan 已提交
164
static int32_t dmInitLog() {
S
shm  
Shengliang Guan 已提交
165
  char logName[12] = {0};
S
Shengliang Guan 已提交
166
  snprintf(logName, sizeof(logName), "%slog", dmNodeLogName(global.ntype));
wafwerar's avatar
wafwerar 已提交
167
  return taosCreateLog(logName, 1, configDir, global.envCmd, global.envFile, global.apolloUrl, global.pArgs, 0);
S
shm  
Shengliang Guan 已提交
168 169
}

S
Shengliang Guan 已提交
170
static void dmSetProcInfo(int32_t argc, char **argv) {
S
shm  
Shengliang Guan 已提交
171
  taosSetProcPath(argc, argv);
S
Shengliang Guan 已提交
172
  if (global.ntype != DNODE && global.ntype != NODE_END) {
S
Shengliang Guan 已提交
173
    const char *name = dmNodeProcName(global.ntype);
S
shm  
Shengliang Guan 已提交
174
    taosSetProcName(argc, argv, name);
S
shm  
Shengliang Guan 已提交
175 176 177
  }
}

S
Shengliang Guan 已提交
178 179
static int32_t dmRunDnode() {
  if (dmInit() != 0) {
S
shm  
Shengliang Guan 已提交
180
    dError("failed to init environment since %s", terrstr());
S
Shengliang Guan 已提交
181 182
    return -1;
  }
S
Shengliang Guan 已提交
183

S
Shengliang Guan 已提交
184 185
  SDnodeOpt option = dmGetOpt();
  SDnode   *pDnode = dmCreate(&option);
186
  if (pDnode == NULL) {
S
shm  
Shengliang Guan 已提交
187
    dError("failed to to create dnode since %s", terrstr());
S
Shengliang Guan 已提交
188
    return -1;
S
shm  
Shengliang Guan 已提交
189
  } else {
S
shm  
Shengliang Guan 已提交
190
    global.pDnode = pDnode;
S
Shengliang Guan 已提交
191
    dmSetSignalHandle();
S
Shengliang Guan 已提交
192 193
  }

S
Shengliang Guan 已提交
194
  dInfo("start the service");
S
Shengliang Guan 已提交
195
  int32_t code = dmRun(pDnode);
S
Shengliang Guan 已提交
196
  dInfo("start shutting down the service");
S
Shengliang Guan 已提交
197

S
Shengliang Guan 已提交
198 199
  global.pDnode = NULL;
  dmClose(pDnode);
S
Shengliang Guan 已提交
200
  dmCleanup();
S
Shengliang Guan 已提交
201
  taosCloseLog();
S
config  
Shengliang Guan 已提交
202
  taosCleanupCfg();
S
shm  
Shengliang Guan 已提交
203
  return code;
H
refact  
Hongze Cheng 已提交
204
}
S
Shengliang Guan 已提交
205

wafwerar's avatar
wafwerar 已提交
206 207 208 209
static void taosCleanupArgs() {
  if (global.envCmd != NULL) taosMemoryFree(global.envCmd);
}

S
Shengliang Guan 已提交
210
int main(int argc, char const *argv[]) {
211
  if (!taosCheckSystemIsSmallEnd()) {
S
Shengliang Guan 已提交
212
    printf("failed to start since on non-small-end machines\n");
213 214 215
    return -1;
  }

S
Shengliang Guan 已提交
216
  if (dmParseArgs(argc, argv) != 0) {
S
Shengliang Guan 已提交
217
    printf("failed to start since parse args error\n");
wafwerar's avatar
wafwerar 已提交
218
    taosCleanupArgs();
S
Shengliang Guan 已提交
219 220 221
    return -1;
  }

S
shm  
Shengliang Guan 已提交
222
  if (global.generateGrant) {
S
Shengliang Guan 已提交
223
    dmGenerateGrant();
wafwerar's avatar
wafwerar 已提交
224
    taosCleanupArgs();
S
Shengliang Guan 已提交
225 226 227
    return 0;
  }

228 229 230 231 232 233
  if (global.printHelp) {
    dmPrintHelp();
    taosCleanupArgs();
    return 0;
  }

S
shm  
Shengliang Guan 已提交
234
  if (global.printVersion) {
S
Shengliang Guan 已提交
235
    dmPrintVersion();
wafwerar's avatar
wafwerar 已提交
236
    taosCleanupArgs();
S
Shengliang Guan 已提交
237
    return 0;
S
Shengliang Guan 已提交
238 239
  }

S
Shengliang Guan 已提交
240
  if (dmInitLog() != 0) {
wafwerar's avatar
wafwerar 已提交
241 242
    printf("failed to start since init log error");
    taosCleanupArgs();
S
Shengliang Guan 已提交
243
    return -1;
S
Shengliang Guan 已提交
244 245
  }

wafwerar's avatar
wafwerar 已提交
246
  if (taosInitCfg(configDir, global.envCmd, global.envFile, global.apolloUrl, global.pArgs, 0) != 0) {
S
Shengliang Guan 已提交
247
    dError("failed to start since read config error");
wafwerar's avatar
wafwerar 已提交
248
    taosCleanupArgs();
S
Shengliang Guan 已提交
249 250 251
    return -1;
  }

S
shm  
Shengliang Guan 已提交
252
  if (global.dumpConfig) {
S
Shengliang Guan 已提交
253
    dmDumpCfg();
S
Shengliang Guan 已提交
254
    taosCleanupCfg();
S
shm  
Shengliang Guan 已提交
255
    taosCloseLog();
wafwerar's avatar
wafwerar 已提交
256
    taosCleanupArgs();
S
Shengliang Guan 已提交
257 258 259
    return 0;
  }

S
Shengliang Guan 已提交
260
  dmSetProcInfo(argc, (char **)argv);
wafwerar's avatar
wafwerar 已提交
261
  taosCleanupArgs();
S
Shengliang Guan 已提交
262
  return dmRunDnode();
S
Shengliang Guan 已提交
263
}