walRead.c 16.3 KB
Newer Older
H
refact  
Hongze Cheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * 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 已提交
14 15
 */

L
Liu Jicong 已提交
16
#include "taoserror.h"
L
Liu Jicong 已提交
17
#include "walInt.h"
S
Shengliang Guan 已提交
18

L
Liu Jicong 已提交
19 20 21 22
static int32_t walFetchHeadNew(SWalReader *pRead, int64_t fetchVer);
static int32_t walFetchBodyNew(SWalReader *pRead);
static int32_t walSkipFetchBodyNew(SWalReader *pRead);

L
Liu Jicong 已提交
23
SWalReader *walOpenReader(SWal *pWal, SWalFilterCond *cond) {
24 25
  SWalReader *pReader = taosMemoryCalloc(1, sizeof(SWalReader));
  if (pReader == NULL) {
26
    terrno = TSDB_CODE_OUT_OF_MEMORY;
L
Liu Jicong 已提交
27 28
    return NULL;
  }
29

30 31 32 33 34 35 36 37
  pReader->pWal = pWal;
  pReader->readerId = tGenIdPI64();
  pReader->pIdxFile = NULL;
  pReader->pLogFile = NULL;
  pReader->curVersion = -1;
  pReader->curFileFirstVer = -1;
  pReader->curInvalid = 1;
  pReader->capacity = 0;
L
Liu Jicong 已提交
38
  if (cond) {
39
    pReader->cond = *cond;
L
Liu Jicong 已提交
40
  } else {
41 42 43 44
    pReader->cond.scanUncommited = 0;
    pReader->cond.scanNotApplied = 0;
    pReader->cond.scanMeta = 0;
    pReader->cond.enableRef = 0;
L
Liu Jicong 已提交
45
  }
L
fix  
Liu Jicong 已提交
46

47
  taosThreadMutexInit(&pReader->mutex, NULL);
L
fix  
Liu Jicong 已提交
48

49 50
  pReader->pHead = taosMemoryMalloc(sizeof(SWalCkHead));
  if (pReader->pHead == NULL) {
L
Liu Jicong 已提交
51
    terrno = TSDB_CODE_WAL_OUT_OF_MEMORY;
52
    taosMemoryFree(pReader);
L
Liu Jicong 已提交
53 54
    return NULL;
  }
L
Liu Jicong 已提交
55

56
  /*if (pReader->cond.enableRef) {*/
L
Liu Jicong 已提交
57
  /* taosHashPut(pWal->pRefHash, &pReader->readerId, sizeof(int64_t), &pReader, sizeof(void *));*/
58 59 60
  /*}*/

  return pReader;
L
Liu Jicong 已提交
61 62
}

63 64 65 66 67 68 69 70
void walCloseReader(SWalReader *pReader) {
  taosCloseFile(&pReader->pIdxFile);
  taosCloseFile(&pReader->pLogFile);
  /*if (pReader->cond.enableRef) {*/
  /*taosHashRemove(pReader->pWal->pRefHash, &pReader->readerId, sizeof(int64_t));*/
  /*}*/
  taosMemoryFreeClear(pReader->pHead);
  taosMemoryFree(pReader);
L
Liu Jicong 已提交
71 72
}

73 74 75 76 77 78
int32_t walNextValidMsg(SWalReader *pReader) {
  int64_t fetchVer = pReader->curVersion;
  int64_t lastVer = walGetLastVer(pReader->pWal);
  int64_t committedVer = walGetCommittedVer(pReader->pWal);
  int64_t appliedVer = walGetAppliedVer(pReader->pWal);
  int64_t endVer = pReader->cond.scanUncommited ? lastVer : committedVer;
L
Liu Jicong 已提交
79 80
  endVer = TMIN(appliedVer, endVer);

S
Shengliang Guan 已提交
81 82
  wDebug("vgId:%d, wal start to fetch, index:%" PRId64 ", last index:%" PRId64 " commit index:%" PRId64
         ", applied index:%" PRId64 ", end index:%" PRId64,
83 84
         pReader->pWal->cfg.vgId, fetchVer, lastVer, committedVer, appliedVer, endVer);
  pReader->curStopped = 0;
L
Liu Jicong 已提交
85
  while (fetchVer <= endVer) {
86
    if (walFetchHeadNew(pReader, fetchVer) < 0) {
L
Liu Jicong 已提交
87 88
      return -1;
    }
89 90 91
    if (pReader->pHead->head.msgType == TDMT_VND_SUBMIT ||
        (IS_META_MSG(pReader->pHead->head.msgType) && pReader->cond.scanMeta)) {
      if (walFetchBodyNew(pReader) < 0) {
L
Liu Jicong 已提交
92 93 94 95
        return -1;
      }
      return 0;
    } else {
96
      if (walSkipFetchBodyNew(pReader) < 0) {
L
Liu Jicong 已提交
97 98 99
        return -1;
      }
      fetchVer++;
100
      ASSERT(fetchVer == pReader->curVersion);
L
Liu Jicong 已提交
101 102
    }
  }
103
  pReader->curStopped = 1;
L
Liu Jicong 已提交
104
  return -1;
L
Liu Jicong 已提交
105
}
L
Liu Jicong 已提交
106

107
static int64_t walReadSeekFilePos(SWalReader *pReader, int64_t fileFirstVer, int64_t ver) {
L
Liu Jicong 已提交
108
  int64_t ret = 0;
L
Liu Jicong 已提交
109

110 111
  TdFilePtr pIdxTFile = pReader->pIdxFile;
  TdFilePtr pLogTFile = pReader->pLogFile;
L
Liu Jicong 已提交
112 113

  // seek position
L
Liu Jicong 已提交
114
  int64_t offset = (ver - fileFirstVer) * sizeof(SWalIdxEntry);
L
Liu Jicong 已提交
115 116
  ret = taosLSeekFile(pIdxTFile, offset, SEEK_SET);
  if (ret < 0) {
L
Liu Jicong 已提交
117
    terrno = TAOS_SYSTEM_ERROR(errno);
118 119
    wError("vgId:%d, failed to seek idx file, index:%" PRId64 ", pos:%" PRId64 ", since %s", pReader->pWal->cfg.vgId,
           ver, offset, terrstr());
L
Liu Jicong 已提交
120 121
    return -1;
  }
L
Liu Jicong 已提交
122
  SWalIdxEntry entry = {0};
L
Liu Jicong 已提交
123 124 125
  if ((ret = taosReadFile(pIdxTFile, &entry, sizeof(SWalIdxEntry))) != sizeof(SWalIdxEntry)) {
    if (ret < 0) {
      terrno = TAOS_SYSTEM_ERROR(errno);
126
      wError("vgId:%d, failed to read idx file, since %s", pReader->pWal->cfg.vgId, terrstr());
L
Liu Jicong 已提交
127 128
    } else {
      terrno = TSDB_CODE_WAL_FILE_CORRUPTED;
S
Shengliang Guan 已提交
129
      wError("vgId:%d, read idx file incompletely, read bytes %" PRId64 ", bytes should be %" PRIu64,
130
             pReader->pWal->cfg.vgId, ret, sizeof(SWalIdxEntry));
L
Liu Jicong 已提交
131
    }
L
Liu Jicong 已提交
132 133
    return -1;
  }
L
Liu Jicong 已提交
134

L
Liu Jicong 已提交
135
  ASSERT(entry.ver == ver);
L
Liu Jicong 已提交
136 137
  ret = taosLSeekFile(pLogTFile, entry.offset, SEEK_SET);
  if (ret < 0) {
L
Liu Jicong 已提交
138
    terrno = TAOS_SYSTEM_ERROR(errno);
139 140
    wError("vgId:%d, failed to seek log file, index:%" PRId64 ", pos:%" PRId64 ", since %s", pReader->pWal->cfg.vgId,
           ver, entry.offset, terrstr());
L
Liu Jicong 已提交
141 142
    return -1;
  }
L
Liu Jicong 已提交
143
  return ret;
L
Liu Jicong 已提交
144 145
}

146
static int32_t walReadChangeFile(SWalReader *pReader, int64_t fileFirstVer) {
L
Liu Jicong 已提交
147 148
  char fnameStr[WAL_FILE_LEN];

149 150
  taosCloseFile(&pReader->pIdxFile);
  taosCloseFile(&pReader->pLogFile);
L
Liu Jicong 已提交
151

152 153 154
  walBuildLogName(pReader->pWal, fileFirstVer, fnameStr);
  TdFilePtr pLogFile = taosOpenFile(fnameStr, TD_FILE_READ);
  if (pLogFile == NULL) {
L
Liu Jicong 已提交
155
    terrno = TAOS_SYSTEM_ERROR(errno);
156
    wError("vgId:%d, cannot open file %s, since %s", pReader->pWal->cfg.vgId, fnameStr, terrstr());
L
Liu Jicong 已提交
157 158 159
    return -1;
  }

160
  pReader->pLogFile = pLogFile;
L
Liu Jicong 已提交
161

162 163 164
  walBuildIdxName(pReader->pWal, fileFirstVer, fnameStr);
  TdFilePtr pIdxFile = taosOpenFile(fnameStr, TD_FILE_READ);
  if (pIdxFile == NULL) {
L
Liu Jicong 已提交
165
    terrno = TAOS_SYSTEM_ERROR(errno);
166
    wError("vgId:%d, cannot open file %s, since %s", pReader->pWal->cfg.vgId, fnameStr, terrstr());
L
Liu Jicong 已提交
167 168 169
    return -1;
  }

170
  pReader->pIdxFile = pIdxFile;
171 172 173

  pReader->curFileFirstVer = fileFirstVer;

L
Liu Jicong 已提交
174 175 176
  return 0;
}

177 178
int32_t walReadSeekVerImpl(SWalReader *pReader, int64_t ver) {
  SWal *pWal = pReader->pWal;
L
Liu Jicong 已提交
179

180
  // bsearch in fileSet
L
Liu Jicong 已提交
181
  SWalFileInfo tmpInfo;
L
Liu Jicong 已提交
182
  tmpInfo.firstVer = ver;
L
Liu Jicong 已提交
183
  SWalFileInfo *pRet = taosArraySearch(pWal->fileInfoSet, &tmpInfo, compareWalFileInfo, TD_LE);
L
Liu Jicong 已提交
184
  ASSERT(pRet != NULL);
185
  if (pReader->curFileFirstVer != pRet->firstVer) {
L
Liu Jicong 已提交
186
    // error code was set inner
187
    if (walReadChangeFile(pReader, pRet->firstVer) < 0) {
L
Liu Jicong 已提交
188 189 190 191
      return -1;
    }
  }

L
Liu Jicong 已提交
192
  // error code was set inner
193
  if (walReadSeekFilePos(pReader, pRet->firstVer, ver) < 0) {
L
Liu Jicong 已提交
194 195
    return -1;
  }
L
Liu Jicong 已提交
196

S
Shengliang Guan 已提交
197
  wDebug("vgId:%d, wal version reset from index:%" PRId64 "(invalid:%d) to index:%" PRId64, pReader->pWal->cfg.vgId,
S
Shengliang Guan 已提交
198
         pReader->curVersion, pReader->curInvalid, ver);
L
Liu Jicong 已提交
199

200
  pReader->curVersion = ver;
L
Liu Jicong 已提交
201 202 203
  return 0;
}

204 205 206
int32_t walReadSeekVer(SWalReader *pReader, int64_t ver) {
  SWal *pWal = pReader->pWal;
  if (!pReader->curInvalid && ver == pReader->curVersion) {
S
Shengliang Guan 已提交
207
    wDebug("vgId:%d, wal index:%" PRId64 " match, no need to reset", pReader->pWal->cfg.vgId, ver);
L
Liu Jicong 已提交
208 209 210
    return 0;
  }

211 212
  pReader->curInvalid = 1;
  pReader->curVersion = ver;
L
Liu Jicong 已提交
213

L
Liu Jicong 已提交
214
  if (ver > pWal->vers.lastVer || ver < pWal->vers.firstVer) {
215
    wDebug("vgId:%d, invalid index:%" PRId64 ", first index:%" PRId64 ", last index:%" PRId64, pReader->pWal->cfg.vgId,
L
Liu Jicong 已提交
216 217 218 219 220 221 222
           ver, pWal->vers.firstVer, pWal->vers.lastVer);
    terrno = TSDB_CODE_WAL_LOG_NOT_EXIST;
    return -1;
  }
  if (ver < pWal->vers.snapshotVer) {
  }

223
  if (walReadSeekVerImpl(pReader, ver) < 0) {
L
Liu Jicong 已提交
224 225 226
    return -1;
  }

L
Liu Jicong 已提交
227 228 229
  return 0;
}

L
Liu Jicong 已提交
230
void walSetReaderCapacity(SWalReader *pRead, int32_t capacity) { pRead->capacity = capacity; }
231

L
Liu Jicong 已提交
232 233
static int32_t walFetchHeadNew(SWalReader *pRead, int64_t fetchVer) {
  int64_t contLen;
L
Liu Jicong 已提交
234 235
  bool    seeked = false;

S
Shengliang Guan 已提交
236
  wDebug("vgId:%d, wal starts to fetch head, index:%" PRId64, pRead->pWal->cfg.vgId, fetchVer);
237

L
Liu Jicong 已提交
238
  if (pRead->curInvalid || pRead->curVersion != fetchVer) {
L
Liu Jicong 已提交
239 240
    if (walReadSeekVer(pRead, fetchVer) < 0) {
      ASSERT(0);
L
Liu Jicong 已提交
241 242
      pRead->curVersion = fetchVer;
      pRead->curInvalid = 1;
L
Liu Jicong 已提交
243 244
      return -1;
    }
L
Liu Jicong 已提交
245 246 247 248 249 250 251 252 253 254
    seeked = true;
  }
  while (1) {
    contLen = taosReadFile(pRead->pLogFile, pRead->pHead, sizeof(SWalCkHead));
    if (contLen == sizeof(SWalCkHead)) {
      break;
    } else if (contLen == 0 && !seeked) {
      walReadSeekVerImpl(pRead, fetchVer);
      seeked = true;
      continue;
L
Liu Jicong 已提交
255
    } else {
L
Liu Jicong 已提交
256 257 258 259 260 261 262 263
      if (contLen < 0) {
        terrno = TAOS_SYSTEM_ERROR(errno);
      } else {
        terrno = TSDB_CODE_WAL_FILE_CORRUPTED;
      }
      ASSERT(0);
      pRead->curInvalid = 1;
      return -1;
L
Liu Jicong 已提交
264 265
    }
  }
L
Liu Jicong 已提交
266
  pRead->curInvalid = 0;
L
Liu Jicong 已提交
267 268 269 270 271 272 273
  return 0;
}

static int32_t walFetchBodyNew(SWalReader *pRead) {
  SWalCont *pReadHead = &pRead->pHead->head;
  int64_t   ver = pReadHead->version;

S
Shengliang Guan 已提交
274
  wDebug("vgId:%d, wal starts to fetch body, index:%" PRId64, pRead->pWal->cfg.vgId, ver);
275

L
Liu Jicong 已提交
276 277 278 279 280 281
  if (pRead->capacity < pReadHead->bodyLen) {
    void *ptr = taosMemoryRealloc(pRead->pHead, sizeof(SWalCkHead) + pReadHead->bodyLen);
    if (ptr == NULL) {
      terrno = TSDB_CODE_WAL_OUT_OF_MEMORY;
      return -1;
    }
282
    pRead->pHead = (SWalCkHead *)ptr;
L
Liu Jicong 已提交
283 284 285 286 287 288 289
    pReadHead = &pRead->pHead->head;
    pRead->capacity = pReadHead->bodyLen;
  }

  if (pReadHead->bodyLen != taosReadFile(pRead->pLogFile, pReadHead->body, pReadHead->bodyLen)) {
    if (pReadHead->bodyLen < 0) {
      terrno = TAOS_SYSTEM_ERROR(errno);
S
Shengliang Guan 已提交
290
      wError("vgId:%d, wal fetch body error:%" PRId64 ", read request index:%" PRId64 ", since %s",
S
Shengliang Guan 已提交
291
             pRead->pWal->cfg.vgId, pRead->pHead->head.version, ver, tstrerror(terrno));
L
Liu Jicong 已提交
292
    } else {
S
Shengliang Guan 已提交
293
      wError("vgId:%d, wal fetch body error:%" PRId64 ", read request index:%" PRId64 ", since file corrupted",
S
Shengliang Guan 已提交
294
             pRead->pWal->cfg.vgId, pRead->pHead->head.version, ver);
L
Liu Jicong 已提交
295 296
      terrno = TSDB_CODE_WAL_FILE_CORRUPTED;
    }
L
Liu Jicong 已提交
297
    pRead->curInvalid = 1;
L
Liu Jicong 已提交
298 299 300 301 302
    ASSERT(0);
    return -1;
  }

  if (pReadHead->version != ver) {
S
Shengliang Guan 已提交
303
    wError("vgId:%d, wal fetch body error:%" PRId64 ", read request index:%" PRId64, pRead->pWal->cfg.vgId,
S
Shengliang Guan 已提交
304
           pRead->pHead->head.version, ver);
L
Liu Jicong 已提交
305
    pRead->curInvalid = 1;
L
Liu Jicong 已提交
306 307 308 309 310 311
    terrno = TSDB_CODE_WAL_FILE_CORRUPTED;
    ASSERT(0);
    return -1;
  }

  if (walValidBodyCksum(pRead->pHead) != 0) {
S
Shengliang Guan 已提交
312
    wError("vgId:%d, wal fetch body error:%" PRId64 ", since body checksum not passed", pRead->pWal->cfg.vgId, ver);
L
Liu Jicong 已提交
313
    pRead->curInvalid = 1;
L
Liu Jicong 已提交
314 315 316 317 318
    terrno = TSDB_CODE_WAL_FILE_CORRUPTED;
    ASSERT(0);
    return -1;
  }

S
Shengliang Guan 已提交
319
  wDebug("vgId:%d, index:%" PRId64 " is fetched, cursor advance", pRead->pWal->cfg.vgId, ver);
L
Liu Jicong 已提交
320 321 322 323 324 325 326 327
  pRead->curVersion = ver + 1;
  return 0;
}

static int32_t walSkipFetchBodyNew(SWalReader *pRead) {
  int64_t code;

  ASSERT(pRead->curVersion == pRead->pHead->head.version);
L
Liu Jicong 已提交
328
  ASSERT(pRead->curInvalid == 0);
L
Liu Jicong 已提交
329 330 331 332

  code = taosLSeekFile(pRead->pLogFile, pRead->pHead->head.bodyLen, SEEK_CUR);
  if (code < 0) {
    terrno = TAOS_SYSTEM_ERROR(errno);
L
Liu Jicong 已提交
333
    pRead->curInvalid = 1;
L
Liu Jicong 已提交
334
    ASSERT(0);
L
Liu Jicong 已提交
335 336 337 338
    return -1;
  }

  pRead->curVersion++;
S
Shengliang Guan 已提交
339
  wDebug("vgId:%d, version advance to %" PRId64 ", skip fetch", pRead->pWal->cfg.vgId, pRead->curVersion);
L
Liu Jicong 已提交
340 341 342 343

  return 0;
}

L
Liu Jicong 已提交
344
int32_t walFetchHead(SWalReader *pRead, int64_t ver, SWalCkHead *pHead) {
L
Liu Jicong 已提交
345
  int64_t code;
L
Liu Jicong 已提交
346

347
  // TODO: valid ver
L
Liu Jicong 已提交
348 349 350
  if (ver > pRead->pWal->vers.commitVer) {
    return -1;
  }
351

L
Liu Jicong 已提交
352
  if (pRead->curInvalid || pRead->curVersion != ver) {
353 354 355 356
    code = walReadSeekVer(pRead, ver);
    if (code < 0) return -1;
  }

L
Liu Jicong 已提交
357
  ASSERT(taosValidFile(pRead->pLogFile) == true);
358

L
Liu Jicong 已提交
359
  code = taosReadFile(pRead->pLogFile, pHead, sizeof(SWalCkHead));
L
Liu Jicong 已提交
360
  if (code != sizeof(SWalCkHead)) {
361 362 363 364 365 366
    return -1;
  }

  code = walValidHeadCksum(pHead);

  if (code != 0) {
L
Liu Jicong 已提交
367
    wError("vgId:%d, unexpected wal log index:%" PRId64 ", since head checksum not passed", pRead->pWal->cfg.vgId, ver);
368 369 370 371 372 373 374
    terrno = TSDB_CODE_WAL_FILE_CORRUPTED;
    return -1;
  }

  return 0;
}

L
Liu Jicong 已提交
375
int32_t walSkipFetchBody(SWalReader *pRead, const SWalCkHead *pHead) {
L
Liu Jicong 已提交
376
  int64_t code;
377

378
  //  ASSERT(pRead->curVersion == pHead->head.version);
379

L
Liu Jicong 已提交
380
  code = taosLSeekFile(pRead->pLogFile, pHead->head.bodyLen, SEEK_CUR);
381 382
  if (code < 0) {
    terrno = TAOS_SYSTEM_ERROR(errno);
L
Liu Jicong 已提交
383
    pRead->curInvalid = 1;
384 385 386 387 388 389 390 391
    return -1;
  }

  pRead->curVersion++;

  return 0;
}

L
Liu Jicong 已提交
392
int32_t walFetchBody(SWalReader *pRead, SWalCkHead **ppHead) {
L
Liu Jicong 已提交
393 394
  SWalCont *pReadHead = &((*ppHead)->head);
  int64_t   ver = pReadHead->version;
395 396

  if (pRead->capacity < pReadHead->bodyLen) {
L
Liu Jicong 已提交
397
    void *ptr = taosMemoryRealloc(*ppHead, sizeof(SWalCkHead) + pReadHead->bodyLen);
398 399 400 401
    if (ptr == NULL) {
      terrno = TSDB_CODE_WAL_OUT_OF_MEMORY;
      return -1;
    }
L
Liu Jicong 已提交
402
    *ppHead = (SWalCkHead *)ptr;
L
Liu Jicong 已提交
403
    pReadHead = &((*ppHead)->head);
404 405 406
    pRead->capacity = pReadHead->bodyLen;
  }

L
Liu Jicong 已提交
407
  if (pReadHead->bodyLen != taosReadFile(pRead->pLogFile, pReadHead->body, pReadHead->bodyLen)) {
L
Liu Jicong 已提交
408
    ASSERT(0);
409 410 411 412
    return -1;
  }

  if (pReadHead->version != ver) {
S
Shengliang Guan 已提交
413
    wError("vgId:%d, wal fetch body error, index:%" PRId64 ", read request index:%" PRId64, pRead->pWal->cfg.vgId,
S
Shengliang Guan 已提交
414
           pRead->pHead->head.version, ver);
L
Liu Jicong 已提交
415
    pRead->curInvalid = 1;
416 417 418 419 420
    terrno = TSDB_CODE_WAL_FILE_CORRUPTED;
    return -1;
  }

  if (walValidBodyCksum(*ppHead) != 0) {
421 422
    wError("vgId:%d, wal fetch body error, index:%" PRId64 ", since body checksum not passed", pRead->pWal->cfg.vgId,
           ver);
L
Liu Jicong 已提交
423
    pRead->curInvalid = 1;
424 425 426 427 428 429 430 431
    terrno = TSDB_CODE_WAL_FILE_CORRUPTED;
    return -1;
  }

  pRead->curVersion = ver + 1;
  return 0;
}

432
int32_t walReadVer(SWalReader *pReader, int64_t ver) {
S
Shengliang Guan 已提交
433
  wDebug("vgId:%d, wal start to read index:%" PRId64, pReader->pWal->cfg.vgId, ver);
L
Liu Jicong 已提交
434
  int64_t contLen;
435
  int32_t code;
L
Liu Jicong 已提交
436
  bool    seeked = false;
437

438
  if (pReader->pWal->vers.firstVer == -1) {
439 440 441 442
    terrno = TSDB_CODE_WAL_LOG_NOT_EXIST;
    return -1;
  }

443 444 445
  if (ver > pReader->pWal->vers.lastVer || ver < pReader->pWal->vers.firstVer) {
    wDebug("vgId:%d, invalid index:%" PRId64 ", first index:%" PRId64 ", last index:%" PRId64, pReader->pWal->cfg.vgId,
           ver, pReader->pWal->vers.firstVer, pReader->pWal->vers.lastVer);
M
Minghao Li 已提交
446 447 448 449
    terrno = TSDB_CODE_WAL_LOG_NOT_EXIST;
    return -1;
  }

450 451
  taosThreadMutexLock(&pReader->mutex);

452 453 454
  if (pReader->curInvalid || pReader->curVersion != ver) {
    if (walReadSeekVer(pReader, ver) < 0) {
      wError("vgId:%d, unexpected wal log, index:%" PRId64 ", since %s", pReader->pWal->cfg.vgId, ver, terrstr());
455
      taosThreadMutexUnlock(&pReader->mutex);
L
Liu Jicong 已提交
456 457 458 459
      return -1;
    }
    seeked = true;
  }
L
Liu Jicong 已提交
460

L
Liu Jicong 已提交
461
  while (1) {
462
    contLen = taosReadFile(pReader->pLogFile, pReader->pHead, sizeof(SWalCkHead));
L
Liu Jicong 已提交
463 464 465
    if (contLen == sizeof(SWalCkHead)) {
      break;
    } else if (contLen == 0 && !seeked) {
466
      walReadSeekVerImpl(pReader, ver);
L
Liu Jicong 已提交
467 468 469 470 471 472 473 474
      seeked = true;
      continue;
    } else {
      if (contLen < 0) {
        terrno = TAOS_SYSTEM_ERROR(errno);
      } else {
        terrno = TSDB_CODE_WAL_FILE_CORRUPTED;
      }
M
Minghao Li 已提交
475
      ASSERT(0);
476
      taosThreadMutexUnlock(&pReader->mutex);
L
Liu Jicong 已提交
477
      return -1;
M
Minghao Li 已提交
478
    }
L
Liu Jicong 已提交
479
  }
480

481 482 483
  code = walValidHeadCksum(pReader->pHead);
  if (code != 0) {
    wError("vgId:%d, unexpected wal log, index:%" PRId64 ", since head checksum not passed", pReader->pWal->cfg.vgId,
484
           ver);
L
Liu Jicong 已提交
485
    terrno = TSDB_CODE_WAL_FILE_CORRUPTED;
486
    taosThreadMutexUnlock(&pReader->mutex);
L
Liu Jicong 已提交
487 488
    return -1;
  }
489

490 491
  if (pReader->capacity < pReader->pHead->head.bodyLen) {
    void *ptr = taosMemoryRealloc(pReader->pHead, sizeof(SWalCkHead) + pReader->pHead->head.bodyLen);
L
Liu Jicong 已提交
492
    if (ptr == NULL) {
L
Liu Jicong 已提交
493
      terrno = TSDB_CODE_WAL_OUT_OF_MEMORY;
494
      taosThreadMutexUnlock(&pReader->mutex);
L
Liu Jicong 已提交
495 496
      return -1;
    }
L
Liu Jicong 已提交
497
    pReader->pHead = (SWalCkHead *)ptr;
498
    pReader->capacity = pReader->pHead->head.bodyLen;
L
Liu Jicong 已提交
499
  }
L
Liu Jicong 已提交
500

501 502
  if ((contLen = taosReadFile(pReader->pLogFile, pReader->pHead->head.body, pReader->pHead->head.bodyLen)) !=
      pReader->pHead->head.bodyLen) {
L
Liu Jicong 已提交
503
    if (contLen < 0)
L
Liu Jicong 已提交
504
      terrno = TAOS_SYSTEM_ERROR(errno);
M
Minghao Li 已提交
505
    else {
L
Liu Jicong 已提交
506
      terrno = TSDB_CODE_WAL_FILE_CORRUPTED;
M
Minghao Li 已提交
507
    }
508
    taosThreadMutexUnlock(&pReader->mutex);
L
Liu Jicong 已提交
509 510
    return -1;
  }
L
Liu Jicong 已提交
511

512 513 514 515
  if (pReader->pHead->head.version != ver) {
    wError("vgId:%d, unexpected wal log, index:%" PRId64 ", read request index:%" PRId64, pReader->pWal->cfg.vgId,
           pReader->pHead->head.version, ver);
    pReader->curInvalid = 1;
L
Liu Jicong 已提交
516
    terrno = TSDB_CODE_WAL_FILE_CORRUPTED;
L
Liu Jicong 已提交
517
    ASSERT(0);
518
    taosThreadMutexUnlock(&pReader->mutex);
L
Liu Jicong 已提交
519 520
    return -1;
  }
L
Liu Jicong 已提交
521

522 523 524
  code = walValidBodyCksum(pReader->pHead);
  if (code != 0) {
    wError("vgId:%d, unexpected wal log, index:%" PRId64 ", since body checksum not passed", pReader->pWal->cfg.vgId,
525
           ver);
526 527
    uint32_t readCkSum = walCalcBodyCksum(pReader->pHead->head.body, pReader->pHead->head.bodyLen);
    uint32_t logCkSum = pReader->pHead->cksumBody;
S
Shengliang Guan 已提交
528
    wError("checksum written into log:%u, checksum calculated:%u", logCkSum, readCkSum);
529
    pReader->curInvalid = 1;
L
Liu Jicong 已提交
530
    terrno = TSDB_CODE_WAL_FILE_CORRUPTED;
L
Liu Jicong 已提交
531
    ASSERT(0);
532
    taosThreadMutexUnlock(&pReader->mutex);
L
Liu Jicong 已提交
533 534
    return -1;
  }
535
  pReader->curVersion++;
L
Liu Jicong 已提交
536

537 538
  taosThreadMutexUnlock(&pReader->mutex);

L
Liu Jicong 已提交
539 540
  return 0;
}