tfs.c 14.2 KB
Newer Older
H
Hongze Cheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * 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 已提交
16 17
#define _DEFAULT_SOURCE
#include "tfsInt.h"
H
Hongze Cheng 已提交
18

S
Shengliang Guan 已提交
19 20 21 22 23 24 25 26 27
static int32_t   tfsMount(STfs *pTfs, SDiskCfg *pCfg);
static int32_t   tfsCheck(STfs *pTfs);
static int32_t   tfsCheckAndFormatCfg(STfs *pTfs, SDiskCfg *pCfg);
static int32_t   tfsFormatDir(char *idir, char *odir);
static STfsDisk *tfsGetDiskByName(STfs *pTfs, const char *dir);
static int32_t   tfsOpendirImpl(STfs *pTfs, STfsDir *pDir);
static STfsDisk *tfsNextDisk(STfs *pTfs, SDiskIter *pIter);

STfs *tfsOpen(SDiskCfg *pCfg, int32_t ndisk) {
S
Shengliang Guan 已提交
28
  if (ndisk <= 0 || ndisk > TFS_MAX_DISKS) {
29
    terrno = TSDB_CODE_INVALID_PARA;
S
Shengliang Guan 已提交
30
    return NULL;
31
  }
H
Hongze Cheng 已提交
32

S
Shengliang Guan 已提交
33 34 35 36 37
  STfs *pTfs = calloc(1, sizeof(STfs));
  if (pTfs == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return NULL;
  }
H
Hongze Cheng 已提交
38

S
Shengliang Guan 已提交
39 40 41 42 43
  if (pthread_spin_init(&pTfs->lock, 0) != 0) {
    terrno = TAOS_SYSTEM_ERROR(errno);
    tfsClose(pTfs);
    return NULL;
  }
H
Hongze Cheng 已提交
44

S
Shengliang Guan 已提交
45 46 47 48 49
  for (int32_t level = 0; level < TFS_MAX_TIERS; level++) {
    STfsTier *pTier = &pTfs->tiers[level];
    if (tfsInitTier(pTier, level) < 0) {
      tfsClose(pTfs);
      return NULL;
H
Hongze Cheng 已提交
50
    }
H
Hongze Cheng 已提交
51 52
  }

S
Shengliang Guan 已提交
53 54
  pTfs->hash = taosHashInit(TFS_MAX_DISKS * 2, taosGetDefaultHashFunction(TSDB_DATA_TYPE_BINARY), false, HASH_NO_LOCK);
  if (pTfs->hash == NULL) {
S
Shengliang Guan 已提交
55
    terrno = TSDB_CODE_OUT_OF_MEMORY;
S
Shengliang Guan 已提交
56 57
    tfsClose(pTfs);
    return NULL;
H
Hongze Cheng 已提交
58 59
  }

S
Shengliang Guan 已提交
60
  for (int32_t idisk = 0; idisk < ndisk; idisk++) {
S
Shengliang Guan 已提交
61 62 63
    if (tfsMount(pTfs, &pCfg[idisk]) < 0) {
      tfsClose(pTfs);
      return NULL;
H
Hongze Cheng 已提交
64 65 66
    }
  }

S
Shengliang Guan 已提交
67 68 69
  if (tfsCheck(pTfs) < 0) {
    tfsClose(pTfs);
    return NULL;
H
Hongze Cheng 已提交
70 71
  }

S
Shengliang Guan 已提交
72 73 74
  tfsUpdateSize(pTfs);
  for (int32_t level = 0; level < pTfs->nlevel; level++) {
    tfsPosNextId(&pTfs->tiers[level]);
H
Hongze Cheng 已提交
75
  }
H
Hongze Cheng 已提交
76

S
Shengliang Guan 已提交
77
  return pTfs;
H
Hongze Cheng 已提交
78 79
}

S
Shengliang Guan 已提交
80 81
void tfsClose(STfs *pTfs) {
  if (pTfs == NULL) return;
H
Hongze Cheng 已提交
82

S
Shengliang Guan 已提交
83 84
  for (int32_t level = 0; level < TFS_MAX_LEVEL; level++) {
    tfsDestroyTier(&pTfs->tiers[level]);
H
Hongze Cheng 已提交
85
  }
S
Shengliang Guan 已提交
86 87 88 89

  taosHashCleanup(pTfs->hash);
  pthread_spin_destroy(&pTfs->lock);
  free(pTfs);
H
Hongze Cheng 已提交
90 91
}

S
Shengliang Guan 已提交
92
void tfsUpdateSize(STfs *pTfs) {
93
  SDiskSize size = {0};
H
Hongze Cheng 已提交
94

S
Shengliang Guan 已提交
95 96
  for (int32_t level = 0; level < pTfs->nlevel; level++) {
    STfsTier *pTier = &pTfs->tiers[level];
97
    tfsUpdateTierSize(pTier);
S
Shengliang Guan 已提交
98 99 100
    size.total += pTier->size.total;
    size.avail += pTier->size.avail;
    size.used += pTier->size.used;
H
Hongze Cheng 已提交
101 102
  }

S
Shengliang Guan 已提交
103 104 105
  tfsLock(pTfs);
  pTfs->size = size;
  tfsUnLock(pTfs);
H
Hongze Cheng 已提交
106 107
}

S
Shengliang Guan 已提交
108 109 110 111
SDiskSize tfsGetSize(STfs *pTfs) {
  tfsLock(pTfs);
  SDiskSize size = pTfs->size;
  tfsUnLock(pTfs);
H
Hongze Cheng 已提交
112

S
Shengliang Guan 已提交
113 114 115 116 117 118
  return size;
}

int32_t tfsAllocDisk(STfs *pTfs, int32_t expLevel, SDiskID *pDiskId) {
  pDiskId->level = expLevel;
  pDiskId->id = -1;
H
Hongze Cheng 已提交
119

S
Shengliang Guan 已提交
120
  if (pDiskId->level >= pTfs->nlevel) {
S
Shengliang Guan 已提交
121 122 123 124 125
    pDiskId->level = pTfs->nlevel - 1;
  }

  if (pDiskId->level < 0) {
    pDiskId->level = 0;
H
Hongze Cheng 已提交
126 127
  }

S
Shengliang Guan 已提交
128 129 130 131
  while (pDiskId->level >= 0) {
    pDiskId->id = tfsAllocDiskOnTier(&pTfs->tiers[pDiskId->level]);
    if (pDiskId->id < 0) {
      pDiskId->level--;
H
Hongze Cheng 已提交
132 133 134
      continue;
    }

S
Shengliang Guan 已提交
135
    return 0;
H
Hongze Cheng 已提交
136 137
  }

S
Shengliang Guan 已提交
138 139
  terrno = TSDB_CODE_FS_NO_VALID_DISK;
  return -1;
H
Hongze Cheng 已提交
140 141
}

S
Shengliang Guan 已提交
142
const char *tfsGetPrimaryPath(STfs *pTfs) { return TFS_PRIMARY_DISK(pTfs)->path; }
H
Hongze Cheng 已提交
143

S
Shengliang Guan 已提交
144
const char *tfsGetDiskPath(STfs *pTfs, SDiskID diskId) { return TFS_DISK_AT(pTfs, diskId)->path; }
H
Hongze Cheng 已提交
145

S
Shengliang Guan 已提交
146 147
void tfsInitFile(STfs *pTfs, STfsFile *pFile, SDiskID diskId, const char *rname) {
  STfsDisk *pDisk = TFS_DISK_AT(pTfs, diskId);
S
Shengliang Guan 已提交
148
  if (pDisk == NULL) return;
H
Hongze Cheng 已提交
149

S
Shengliang Guan 已提交
150 151
  pFile->did = diskId;
  tstrncpy(pFile->rname, rname, TSDB_FILENAME_LEN);
S
TD-1207  
Shengliang Guan 已提交
152 153

  char tmpName[TMPNAME_LEN] = {0};
S
Shengliang Guan 已提交
154
  snprintf(tmpName, TMPNAME_LEN, "%s%s%s", pDisk->path, TD_DIRSEP, rname);
S
Shengliang Guan 已提交
155 156
  tstrncpy(pFile->aname, tmpName, TSDB_FILENAME_LEN);
  pFile->pTfs = pTfs;
H
Hongze Cheng 已提交
157 158
}

S
Shengliang Guan 已提交
159 160 161 162 163
bool tfsIsSameFile(const STfsFile *pFile1, const STfsFile *pFile2) {
  if (pFile1 == NULL || pFile2 == NULL || pFile1->pTfs != pFile2->pTfs) return false;
  if (pFile1->did.level != pFile2->did.level) return false;
  if (pFile1->did.id != pFile2->did.id) return false;
  if (strncmp(pFile1->rname, pFile2->rname, TSDB_FILENAME_LEN) != 0) return false;
H
Hongze Cheng 已提交
164 165 166
  return true;
}

S
Shengliang Guan 已提交
167
int32_t tfsEncodeFile(void **buf, STfsFile *pFile) {
S
Shengliang Guan 已提交
168
  int32_t tlen = 0;
H
Hongze Cheng 已提交
169

S
Shengliang Guan 已提交
170 171 172
  tlen += taosEncodeVariantI32(buf, pFile->did.level);
  tlen += taosEncodeVariantI32(buf, pFile->did.id);
  tlen += taosEncodeString(buf, pFile->rname);
H
Hongze Cheng 已提交
173 174 175 176

  return tlen;
}

S
Shengliang Guan 已提交
177 178 179
void *tfsDecodeFile(STfs *pTfs, void *buf, STfsFile *pFile) {
  SDiskID diskId = {0};
  char   *rname = NULL;
H
Hongze Cheng 已提交
180

S
Shengliang Guan 已提交
181 182
  buf = taosDecodeVariantI32(buf, &diskId.level);
  buf = taosDecodeVariantI32(buf, &diskId.id);
H
Hongze Cheng 已提交
183 184
  buf = taosDecodeString(buf, &rname);

S
Shengliang Guan 已提交
185
  tfsInitFile(pTfs, pFile, diskId, rname);
H
Hongze Cheng 已提交
186 187 188 189 190

  tfree(rname);
  return buf;
}

S
Shengliang Guan 已提交
191
void tfsBasename(const STfsFile *pFile, char *dest) {
H
Hongze Cheng 已提交
192 193
  char tname[TSDB_FILENAME_LEN] = "\0";

S
Shengliang Guan 已提交
194
  tstrncpy(tname, pFile->aname, TSDB_FILENAME_LEN);
195
  tstrncpy(dest, basename(tname), TSDB_FILENAME_LEN);
H
Hongze Cheng 已提交
196 197
}

S
Shengliang Guan 已提交
198
void tfsDirname(const STfsFile *pFile, char *dest) {
H
Hongze Cheng 已提交
199 200
  char tname[TSDB_FILENAME_LEN] = "\0";

S
Shengliang Guan 已提交
201
  tstrncpy(tname, pFile->aname, TSDB_FILENAME_LEN);
202
  tstrncpy(dest, dirname(tname), TSDB_FILENAME_LEN);
H
Hongze Cheng 已提交
203 204
}

S
Shengliang Guan 已提交
205
int32_t tfsRemoveFile(const STfsFile *pFile) { return remove(pFile->aname); }
S
Shengliang Guan 已提交
206 207 208 209 210

int32_t tfsCopyFile(const STfsFile *pFile1, const STfsFile *pFile2) {
  return taosCopyFile(pFile1->aname, pFile2->aname);
}

S
Shengliang Guan 已提交
211 212 213
int32_t tfsMkdirAt(STfs *pTfs, const char *rname, SDiskID diskId) {
  STfsDisk *pDisk = TFS_DISK_AT(pTfs, diskId);
  char      aname[TMPNAME_LEN];
H
Hongze Cheng 已提交
214

S
Shengliang Guan 已提交
215
  snprintf(aname, TMPNAME_LEN, "%s%s%s", pDisk->path, TD_DIRSEP, rname);
216
  if (taosMkDir(aname) != 0) {
H
Hongze Cheng 已提交
217 218 219 220 221 222 223
    terrno = TAOS_SYSTEM_ERROR(errno);
    return -1;
  }

  return 0;
}

S
Shengliang Guan 已提交
224 225
int32_t tfsMkdirRecurAt(STfs *pTfs, const char *rname, SDiskID diskId) {
  if (tfsMkdirAt(pTfs, rname, diskId) < 0) {
H
Hongze Cheng 已提交
226 227 228 229
    if (errno == ENOENT) {
      // Try to create upper
      char *s = strdup(rname);

J
Jun Li 已提交
230 231 232 233
      // Make a copy of dirname(s) because the implementation of 'dirname' differs on different platforms.
      // Some platform may modify the contents of the string passed into dirname(). Others may return a pointer to
      // internal static storage space that will be overwritten by next call. For case like that, we should not use
      // the pointer directly in this recursion.
H
Hongze Cheng 已提交
234 235
      // See
      // https://developer.apple.com/library/archive/documentation/System/Conceptual/ManPages_iPhoneOS/man3/dirname.3.html
J
Jun Li 已提交
236 237
      char *dir = strdup(dirname(s));

S
Shengliang Guan 已提交
238
      if (tfsMkdirRecurAt(pTfs, dir, diskId) < 0) {
J
Jun Li 已提交
239 240
        free(s);
        free(dir);
H
Hongze Cheng 已提交
241 242
        return -1;
      }
J
Jun Li 已提交
243 244
      free(s);
      free(dir);
H
Hongze Cheng 已提交
245

S
Shengliang Guan 已提交
246
      if (tfsMkdirAt(pTfs, rname, diskId) < 0) {
H
Hongze Cheng 已提交
247 248 249 250 251 252 253 254 255 256
        return -1;
      }
    } else {
      return -1;
    }
  }

  return 0;
}

S
Shengliang Guan 已提交
257 258 259 260 261 262
int32_t tfsMkdir(STfs *pTfs, const char *rname) {
  for (int32_t level = 0; level < pTfs->nlevel; level++) {
    STfsTier *pTier = TFS_TIER_AT(pTfs, level);
    for (int32_t id = 0; id < pTier->ndisk; id++) {
      SDiskID did = {.id = id, .level = level};
      if (tfsMkdirAt(pTfs, rname, did) < 0) {
H
Hongze Cheng 已提交
263 264 265 266 267 268 269 270
        return -1;
      }
    }
  }

  return 0;
}

S
Shengliang Guan 已提交
271
int32_t tfsRmdir(STfs *pTfs, const char *rname) {
S
TD-1207  
Shengliang Guan 已提交
272
  char aname[TMPNAME_LEN] = "\0";
H
Hongze Cheng 已提交
273

S
Shengliang Guan 已提交
274 275 276 277 278
  for (int32_t level = 0; level < pTfs->nlevel; level++) {
    STfsTier *pTier = TFS_TIER_AT(pTfs, level);
    for (int32_t id = 0; id < pTier->ndisk; id++) {
      STfsDisk *pDisk = pTier->disks[id];
      snprintf(aname, TMPNAME_LEN, "%s%s%s", pDisk->path, TD_DIRSEP, rname);
H
Hongze Cheng 已提交
279
      taosRemoveDir(aname);
H
Hongze Cheng 已提交
280 281 282 283 284 285
    }
  }

  return 0;
}

S
Shengliang Guan 已提交
286
int32_t tfsRename(STfs *pTfs, char *orname, char *nrname) {
S
TD-1207  
Shengliang Guan 已提交
287 288
  char oaname[TMPNAME_LEN] = "\0";
  char naname[TMPNAME_LEN] = "\0";
H
Hongze Cheng 已提交
289

S
Shengliang Guan 已提交
290 291 292 293
  for (int32_t level = 0; level < pTfs->nlevel; level++) {
    STfsTier *pTier = TFS_TIER_AT(pTfs, level);
    for (int32_t id = 0; id < pTier->ndisk; id++) {
      STfsDisk *pDisk = pTier->disks[id];
S
Shengliang Guan 已提交
294 295
      snprintf(oaname, TMPNAME_LEN, "%s%s%s", pDisk->path, TD_DIRSEP, orname);
      snprintf(naname, TMPNAME_LEN, "%s%s%s", pDisk->path, TD_DIRSEP, nrname);
S
Shengliang Guan 已提交
296
      if (taosRenameFile(oaname, naname) != 0 && errno != ENOENT) {
S
Shengliang Guan 已提交
297 298
        terrno = TAOS_SYSTEM_ERROR(errno);
        fError("failed to rename %s to %s since %s", oaname, naname, terrstr());
S
Shengliang Guan 已提交
299 300
        return -1;
      }
H
Hongze Cheng 已提交
301 302 303 304 305
    }
  }

  return 0;
}
S
Shengliang Guan 已提交
306 307 308 309

STfsDir *tfsOpendir(STfs *pTfs, const char *rname) {
  STfsDir *pDir = calloc(1, sizeof(STfsDir));
  if (pDir == NULL) {
310
    terrno = TSDB_CODE_OUT_OF_MEMORY;
H
Hongze Cheng 已提交
311 312 313
    return NULL;
  }

S
Shengliang Guan 已提交
314
  SDiskID diskId = {.id = 0, .level = 0};
S
Shengliang Guan 已提交
315
  pDir->iter.pDisk = TFS_DISK_AT(pTfs, diskId);
S
Shengliang Guan 已提交
316 317
  pDir->pTfs = pTfs;
  tstrncpy(pDir->dirname, rname, TSDB_FILENAME_LEN);
H
Hongze Cheng 已提交
318

S
Shengliang Guan 已提交
319 320
  if (tfsOpendirImpl(pTfs, pDir) < 0) {
    free(pDir);
H
Hongze Cheng 已提交
321 322 323
    return NULL;
  }

S
Shengliang Guan 已提交
324
  return pDir;
H
Hongze Cheng 已提交
325 326
}

S
Shengliang Guan 已提交
327 328
const STfsFile *tfsReaddir(STfsDir *pDir) {
  if (pDir == NULL || pDir->dir == NULL) return NULL;
S
TD-1207  
Shengliang Guan 已提交
329
  char bname[TMPNAME_LEN * 2] = "\0";
H
Hongze Cheng 已提交
330 331 332

  while (true) {
    struct dirent *dp = NULL;
S
Shengliang Guan 已提交
333
    dp = readdir(pDir->dir);
H
Hongze Cheng 已提交
334
    if (dp != NULL) {
335 336 337
      // Skip . and ..
      if (strcmp(dp->d_name, ".") == 0 || strcmp(dp->d_name, "..") == 0) continue;

S
Shengliang Guan 已提交
338 339 340 341 342 343
      if (pDir->dirname == NULL || pDir->dirname[0] == 0) {
        snprintf(bname, TMPNAME_LEN * 2, "%s", dp->d_name);
      } else {
        snprintf(bname, TMPNAME_LEN * 2, "%s%s%s", pDir->dirname, TD_DIRSEP, dp->d_name);
      }

S
Shengliang Guan 已提交
344 345
      tfsInitFile(pDir->pTfs, &pDir->tfile, pDir->did, bname);
      return &pDir->tfile;
H
Hongze Cheng 已提交
346 347
    }

S
Shengliang Guan 已提交
348
    if (tfsOpendirImpl(pDir->pTfs, pDir) < 0) {
H
Hongze Cheng 已提交
349 350 351
      return NULL;
    }

S
Shengliang Guan 已提交
352
    if (pDir->dir == NULL) {
H
Hongze Cheng 已提交
353 354 355 356 357 358
      terrno = TSDB_CODE_SUCCESS;
      return NULL;
    }
  }
}

S
Shengliang Guan 已提交
359 360 361 362 363
void tfsClosedir(STfsDir *pDir) {
  if (pDir) {
    if (pDir->dir != NULL) {
      closedir(pDir->dir);
      pDir->dir = NULL;
H
Hongze Cheng 已提交
364
    }
S
Shengliang Guan 已提交
365
    free(pDir);
H
Hongze Cheng 已提交
366 367 368
  }
}

S
Shengliang Guan 已提交
369 370 371 372
static int32_t tfsMount(STfs *pTfs, SDiskCfg *pCfg) {
  if (tfsCheckAndFormatCfg(pTfs, pCfg) < 0) {
    return -1;
  }
H
Hongze Cheng 已提交
373

S
Shengliang Guan 已提交
374 375
  SDiskID   did = {.level = pCfg->level};
  STfsDisk *pDisk = tfsMountDiskToTier(TFS_TIER_AT(pTfs, did.level), pCfg);
H
Hongze Cheng 已提交
376
  if (pDisk == NULL) {
S
Shengliang Guan 已提交
377
    fError("failed to mount disk %s to level %d since %s", pCfg->dir, pCfg->level, terrstr());
H
refact  
Hongze Cheng 已提交
378
    return -1;
H
Hongze Cheng 已提交
379
  }
380
  did.id = pDisk->id;
H
Hongze Cheng 已提交
381

S
Shengliang Guan 已提交
382 383 384 385
  taosHashPut(pTfs->hash, (void *)(pCfg->dir), strnlen(pCfg->dir, TSDB_FILENAME_LEN), (void *)(&did), sizeof(did));
  if (pTfs->nlevel < pCfg->level + 1) {
    pTfs->nlevel = pCfg->level + 1;
  }
H
Hongze Cheng 已提交
386 387 388 389

  return 0;
}

S
Shengliang Guan 已提交
390
static int32_t tfsCheckAndFormatCfg(STfs *pTfs, SDiskCfg *pCfg) {
H
Hongze Cheng 已提交
391 392 393
  char        dirName[TSDB_FILENAME_LEN] = "\0";
  struct stat pstat;

S
Shengliang Guan 已提交
394
  if (pCfg->level < 0 || pCfg->level >= TFS_MAX_TIERS) {
H
Hongze Cheng 已提交
395
    fError("failed to mount %s to FS since invalid level %d", pCfg->dir, pCfg->level);
H
Hongze Cheng 已提交
396 397 398 399
    terrno = TSDB_CODE_FS_INVLD_CFG;
    return -1;
  }

H
refact  
Hongze Cheng 已提交
400 401
  if (pCfg->primary) {
    if (pCfg->level != 0) {
H
Hongze Cheng 已提交
402
      fError("failed to mount %s to FS since disk is primary but level %d not 0", pCfg->dir, pCfg->level);
H
refact  
Hongze Cheng 已提交
403 404 405
      terrno = TSDB_CODE_FS_INVLD_CFG;
      return -1;
    }
H
Hongze Cheng 已提交
406

S
Shengliang Guan 已提交
407
    if (TFS_PRIMARY_DISK(pTfs) != NULL) {
H
Hongze Cheng 已提交
408
      fError("failed to mount %s to FS since duplicate primary mount", pCfg->dir);
H
refact  
Hongze Cheng 已提交
409 410 411 412
      terrno = TSDB_CODE_FS_DUP_PRIMARY;
      return -1;
    }
  }
H
Hongze Cheng 已提交
413

H
Hongze Cheng 已提交
414
  if (tfsFormatDir(pCfg->dir, dirName) < 0) {
S
Shengliang Guan 已提交
415
    fError("failed to mount %s to FS since %s", pCfg->dir, terrstr());
H
Hongze Cheng 已提交
416 417 418
    return -1;
  }

S
Shengliang Guan 已提交
419
  if (tfsGetDiskByName(pTfs, dirName) != NULL) {
H
Hongze Cheng 已提交
420
    fError("failed to mount %s to FS since duplicate mount", pCfg->dir);
H
Hongze Cheng 已提交
421 422 423 424 425
    terrno = TSDB_CODE_FS_INVLD_CFG;
    return -1;
  }

  if (access(dirName, W_OK | R_OK | F_OK) != 0) {
H
Hongze Cheng 已提交
426
    fError("failed to mount %s to FS since no R/W access rights", pCfg->dir);
H
Hongze Cheng 已提交
427 428 429 430 431
    terrno = TSDB_CODE_FS_INVLD_CFG;
    return -1;
  }

  if (stat(dirName, &pstat) < 0) {
H
Hongze Cheng 已提交
432
    fError("failed to mount %s to FS since %s", pCfg->dir, strerror(errno));
H
Hongze Cheng 已提交
433 434 435 436 437
    terrno = TAOS_SYSTEM_ERROR(errno);
    return -1;
  }

  if (!S_ISDIR(pstat.st_mode)) {
H
Hongze Cheng 已提交
438
    fError("failed to mount %s to FS since not a directory", pCfg->dir);
H
Hongze Cheng 已提交
439 440 441 442 443 444 445 446 447
    terrno = TSDB_CODE_FS_INVLD_CFG;
    return -1;
  }

  strncpy(pCfg->dir, dirName, TSDB_FILENAME_LEN);

  return 0;
}

S
Shengliang Guan 已提交
448
static int32_t tfsFormatDir(char *idir, char *odir) {
H
Hongze Cheng 已提交
449 450
  wordexp_t wep = {0};

S
Shengliang Guan 已提交
451
  int32_t code = wordexp(idir, &wep, 0);
H
Hongze Cheng 已提交
452 453 454 455 456
  if (code != 0) {
    terrno = TAOS_SYSTEM_ERROR(code);
    return -1;
  }

457 458
  char tmp[PATH_MAX] = {0};
  if (realpath(wep.we_wordv[0], tmp) == NULL) {
H
Hongze Cheng 已提交
459 460 461 462
    terrno = TAOS_SYSTEM_ERROR(errno);
    wordfree(&wep);
    return -1;
  }
463
  strcpy(odir, tmp);
H
Hongze Cheng 已提交
464 465 466 467 468

  wordfree(&wep);
  return 0;
}

S
Shengliang Guan 已提交
469 470
static int32_t tfsCheck(STfs *pTfs) {
  if (TFS_PRIMARY_DISK(pTfs) == NULL) {
H
Hongze Cheng 已提交
471 472 473 474 475
    fError("no primary disk is set");
    terrno = TSDB_CODE_FS_NO_PRIMARY_DISK;
    return -1;
  }

S
Shengliang Guan 已提交
476 477
  for (int32_t level = 0; level < pTfs->nlevel; level++) {
    if (TFS_TIER_AT(pTfs, level)->ndisk == 0) {
H
Hongze Cheng 已提交
478
      fError("no disk at level %d", level);
H
refact  
Hongze Cheng 已提交
479
      terrno = TSDB_CODE_FS_NO_MOUNT_AT_TIER;
H
Hongze Cheng 已提交
480 481
      return -1;
    }
H
Hongze Cheng 已提交
482
  }
H
Hongze Cheng 已提交
483

H
Hongze Cheng 已提交
484 485 486
  return 0;
}

S
Shengliang Guan 已提交
487 488
static STfsDisk *tfsGetDiskByName(STfs *pTfs, const char *dir) {
  void *pr = taosHashGet(pTfs->hash, (void *)dir, strnlen(dir, TSDB_FILENAME_LEN));
H
Hongze Cheng 已提交
489 490
  if (pr == NULL) return NULL;

S
Shengliang Guan 已提交
491 492
  SDiskID   did = *(SDiskID *)pr;
  STfsDisk *pDisk = TFS_DISK_AT(pTfs, did);
H
refact  
Hongze Cheng 已提交
493

H
Hongze Cheng 已提交
494
  return pDisk;
H
Hongze Cheng 已提交
495 496
}

S
Shengliang Guan 已提交
497 498 499
static int32_t tfsOpendirImpl(STfs *pTfs, STfsDir *pDir) {
  STfsDisk *pDisk = NULL;
  char      adir[TMPNAME_LEN * 2] = "\0";
H
Hongze Cheng 已提交
500

S
Shengliang Guan 已提交
501 502 503
  if (pDir->dir != NULL) {
    closedir(pDir->dir);
    pDir->dir = NULL;
H
Hongze Cheng 已提交
504 505 506
  }

  while (true) {
S
Shengliang Guan 已提交
507
    pDisk = tfsNextDisk(pTfs, &pDir->iter);
H
Hongze Cheng 已提交
508 509
    if (pDisk == NULL) return 0;

S
Shengliang Guan 已提交
510 511
    pDir->did.level = pDisk->level;
    pDir->did.id = pDisk->id;
H
Hongze Cheng 已提交
512

S
Shengliang Guan 已提交
513 514 515 516 517
    if (pDisk->path == NULL || pDisk->path[0] == 0) {
      snprintf(adir, TMPNAME_LEN * 2, "%s", pDir->dirname);
    } else {
      snprintf(adir, TMPNAME_LEN * 2, "%s%s%s", pDisk->path, TD_DIRSEP, pDir->dirname);
    }
S
Shengliang Guan 已提交
518 519
    pDir->dir = opendir(adir);
    if (pDir->dir != NULL) break;
H
Hongze Cheng 已提交
520 521 522 523 524
  }

  return 0;
}

S
Shengliang Guan 已提交
525 526
static STfsDisk *tfsNextDisk(STfs *pTfs, SDiskIter *pIter) {
  if (pIter == NULL) return NULL;
H
Hongze Cheng 已提交
527

S
Shengliang Guan 已提交
528
  STfsDisk *pDisk = pIter->pDisk;
S
Shengliang Guan 已提交
529 530 531
  if (pDisk == NULL) return NULL;

  SDiskID did = {.level = pDisk->level, .id = pDisk->id + 1};
H
Hongze Cheng 已提交
532

S
Shengliang Guan 已提交
533 534
  if (did.id < TFS_TIER_AT(pTfs, did.level)->ndisk) {
    pIter->pDisk = TFS_DISK_AT(pTfs, did);
H
Hongze Cheng 已提交
535
  } else {
S
Shengliang Guan 已提交
536 537 538 539
    did.level++;
    did.id = 0;
    if (did.level < pTfs->nlevel) {
      pIter->pDisk = TFS_DISK_AT(pTfs, did);
H
Hongze Cheng 已提交
540 541 542 543 544 545 546
    } else {
      pIter->pDisk = NULL;
    }
  }

  return pDisk;
}