mndUser.c 25.3 KB
Newer Older
H
refact  
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
#define _DEFAULT_SOURCE
S
Shengliang Guan 已提交
17
#include "mndUser.h"
S
Shengliang Guan 已提交
18
#include "mndAuth.h"
S
Shengliang Guan 已提交
19
#include "mndDb.h"
S
Shengliang Guan 已提交
20
#include "mndShow.h"
S
Shengliang Guan 已提交
21
#include "mndTrans.h"
S
tbase64  
Shengliang Guan 已提交
22
#include "tbase64.h"
S
Shengliang Guan 已提交
23

24 25
#define USER_VER_NUMBER   1
#define USER_RESERVE_SIZE 64
S
Shengliang Guan 已提交
26

S
Shengliang Guan 已提交
27 28 29 30
static int32_t  mndCreateDefaultUsers(SMnode *pMnode);
static SSdbRow *mndUserActionDecode(SSdbRaw *pRaw);
static int32_t  mndUserActionInsert(SSdb *pSdb, SUserObj *pUser);
static int32_t  mndUserActionDelete(SSdb *pSdb, SUserObj *pUser);
S
Shengliang Guan 已提交
31
static int32_t  mndUserActionUpdate(SSdb *pSdb, SUserObj *pOld, SUserObj *pNew);
S
Shengliang Guan 已提交
32 33 34 35 36 37
static int32_t  mndCreateUser(SMnode *pMnode, char *acct, SCreateUserReq *pCreate, SRpcMsg *pReq);
static int32_t  mndProcessCreateUserReq(SRpcMsg *pReq);
static int32_t  mndProcessAlterUserReq(SRpcMsg *pReq);
static int32_t  mndProcessDropUserReq(SRpcMsg *pReq);
static int32_t  mndProcessGetUserAuthReq(SRpcMsg *pReq);
static int32_t  mndRetrieveUsers(SRpcMsg *pReq, SShowObj *pShow, SSDataBlock *pBlock, int32_t rows);
S
Shengliang Guan 已提交
38
static void     mndCancelGetNextUser(SMnode *pMnode, void *pIter);
S
Shengliang Guan 已提交
39 40

int32_t mndInitUser(SMnode *pMnode) {
S
Shengliang Guan 已提交
41 42 43 44 45 46 47 48 49 50
  SSdbTable table = {
      .sdbType = SDB_USER,
      .keyType = SDB_KEY_BINARY,
      .deployFp = (SdbDeployFp)mndCreateDefaultUsers,
      .encodeFp = (SdbEncodeFp)mndUserActionEncode,
      .decodeFp = (SdbDecodeFp)mndUserActionDecode,
      .insertFp = (SdbInsertFp)mndUserActionInsert,
      .updateFp = (SdbUpdateFp)mndUserActionUpdate,
      .deleteFp = (SdbDeleteFp)mndUserActionDelete,
  };
S
Shengliang Guan 已提交
51

S
Shengliang Guan 已提交
52 53 54
  mndSetMsgHandle(pMnode, TDMT_MND_CREATE_USER, mndProcessCreateUserReq);
  mndSetMsgHandle(pMnode, TDMT_MND_ALTER_USER, mndProcessAlterUserReq);
  mndSetMsgHandle(pMnode, TDMT_MND_DROP_USER, mndProcessDropUserReq);
S
Shengliang Guan 已提交
55
  mndSetMsgHandle(pMnode, TDMT_MND_GET_USER_AUTH, mndProcessGetUserAuthReq);
S
Shengliang Guan 已提交
56

S
Shengliang Guan 已提交
57 58
  mndAddShowRetrieveHandle(pMnode, TSDB_MGMT_TABLE_USER, mndRetrieveUsers);
  mndAddShowFreeIterHandle(pMnode, TSDB_MGMT_TABLE_USER, mndCancelGetNextUser);
S
Shengliang Guan 已提交
59 60 61 62 63 64 65
  return sdbSetTable(pMnode->pSdb, table);
}

void mndCleanupUser(SMnode *pMnode) {}

static int32_t mndCreateDefaultUser(SMnode *pMnode, char *acct, char *user, char *pass) {
  SUserObj userObj = {0};
S
Shengliang Guan 已提交
66
  taosEncryptPass_c((uint8_t *)pass, strlen(pass), userObj.pass);
S
Shengliang Guan 已提交
67 68 69 70 71 72
  tstrncpy(userObj.user, user, TSDB_USER_LEN);
  tstrncpy(userObj.acct, acct, TSDB_USER_LEN);
  userObj.createdTime = taosGetTimestampMs();
  userObj.updateTime = userObj.createdTime;

  if (strcmp(user, TSDB_DEFAULT_USER) == 0) {
73
    userObj.superUser = 1;
S
Shengliang Guan 已提交
74 75 76 77 78 79
  }

  SSdbRaw *pRaw = mndUserActionEncode(&userObj);
  if (pRaw == NULL) return -1;
  sdbSetRawStatus(pRaw, SDB_STATUS_READY);

80
  mDebug("user:%s, will be created when deploying, raw:%p", userObj.user, pRaw);
81

82
  STrans *pTrans = mndTransCreate(pMnode, TRN_POLICY_RETRY, TRN_CONFLICT_NOTHING, NULL);
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
  if (pTrans == NULL) {
    mError("user:%s, failed to create since %s", userObj.user, terrstr());
    return -1;
  }
  mDebug("trans:%d, used to create user:%s", pTrans->id, userObj.user);

  if (mndTransAppendCommitlog(pTrans, pRaw) != 0) {
    mError("trans:%d, failed to commit redo log since %s", pTrans->id, terrstr());
    mndTransDrop(pTrans);
    return -1;
  }
  sdbSetRawStatus(pRaw, SDB_STATUS_READY);

  if (mndTransPrepare(pMnode, pTrans) != 0) {
    mError("trans:%d, failed to prepare since %s", pTrans->id, terrstr());
    mndTransDrop(pTrans);
    return -1;
  }

  mndTransDrop(pTrans);
  return 0;
S
Shengliang Guan 已提交
104 105 106 107 108 109 110 111 112 113
}

static int32_t mndCreateDefaultUsers(SMnode *pMnode) {
  if (mndCreateDefaultUser(pMnode, TSDB_DEFAULT_USER, TSDB_DEFAULT_USER, TSDB_DEFAULT_PASS) != 0) {
    return -1;
  }

  return 0;
}

114
SSdbRaw *mndUserActionEncode(SUserObj *pUser) {
115 116
  terrno = TSDB_CODE_OUT_OF_MEMORY;

S
Shengliang Guan 已提交
117 118
  int32_t numOfReadDbs = taosHashGetSize(pUser->readDbs);
  int32_t numOfWriteDbs = taosHashGetSize(pUser->writeDbs);
119
  int32_t size = sizeof(SUserObj) + USER_RESERVE_SIZE + (numOfReadDbs + numOfWriteDbs) * TSDB_DB_FNAME_LEN;
S
Shengliang Guan 已提交
120

121
  SSdbRaw *pRaw = sdbAllocRaw(SDB_USER, USER_VER_NUMBER, size);
122
  if (pRaw == NULL) goto _OVER;
S
Shengliang Guan 已提交
123 124

  int32_t dataPos = 0;
125 126 127 128 129 130
  SDB_SET_BINARY(pRaw, dataPos, pUser->user, TSDB_USER_LEN, _OVER)
  SDB_SET_BINARY(pRaw, dataPos, pUser->pass, TSDB_PASSWORD_LEN, _OVER)
  SDB_SET_BINARY(pRaw, dataPos, pUser->acct, TSDB_USER_LEN, _OVER)
  SDB_SET_INT64(pRaw, dataPos, pUser->createdTime, _OVER)
  SDB_SET_INT64(pRaw, dataPos, pUser->updateTime, _OVER)
  SDB_SET_INT8(pRaw, dataPos, pUser->superUser, _OVER)
131
  SDB_SET_INT32(pRaw, dataPos, pUser->authVersion, _OVER)
132 133
  SDB_SET_INT32(pRaw, dataPos, numOfReadDbs, _OVER)
  SDB_SET_INT32(pRaw, dataPos, numOfWriteDbs, _OVER)
134 135 136

  char *db = taosHashIterate(pUser->readDbs, NULL);
  while (db != NULL) {
137
    SDB_SET_BINARY(pRaw, dataPos, db, TSDB_DB_FNAME_LEN, _OVER);
138 139 140 141 142
    db = taosHashIterate(pUser->readDbs, db);
  }

  db = taosHashIterate(pUser->writeDbs, NULL);
  while (db != NULL) {
143
    SDB_SET_BINARY(pRaw, dataPos, db, TSDB_DB_FNAME_LEN, _OVER);
144 145 146
    db = taosHashIterate(pUser->writeDbs, db);
  }

147 148
  SDB_SET_RESERVE(pRaw, dataPos, USER_RESERVE_SIZE, _OVER)
  SDB_SET_DATALEN(pRaw, dataPos, _OVER)
149 150 151

  terrno = 0;

152
_OVER:
153 154 155 156 157
  if (terrno != 0) {
    mError("user:%s, failed to encode to raw:%p since %s", pUser->user, pRaw, terrstr());
    sdbFreeRaw(pRaw);
    return NULL;
  }
S
Shengliang Guan 已提交
158

S
Shengliang Guan 已提交
159
  mTrace("user:%s, encode to raw:%p, row:%p", pUser->user, pRaw, pUser);
S
Shengliang Guan 已提交
160
  return pRaw;
S
Shengliang Guan 已提交
161 162
}

S
Shengliang Guan 已提交
163
static SSdbRow *mndUserActionDecode(SSdbRaw *pRaw) {
164 165
  terrno = TSDB_CODE_OUT_OF_MEMORY;

S
Shengliang Guan 已提交
166
  int8_t sver = 0;
167
  if (sdbGetRawSoftVer(pRaw, &sver) != 0) goto _OVER;
S
Shengliang Guan 已提交
168

169
  if (sver != USER_VER_NUMBER) {
S
Shengliang Guan 已提交
170
    terrno = TSDB_CODE_SDB_INVALID_DATA_VER;
171
    goto _OVER;
S
Shengliang Guan 已提交
172
  }
S
Shengliang Guan 已提交
173

174
  SSdbRow *pRow = sdbAllocRow(sizeof(SUserObj));
175
  if (pRow == NULL) goto _OVER;
176

S
Shengliang Guan 已提交
177
  SUserObj *pUser = sdbGetRowObj(pRow);
178
  if (pUser == NULL) goto _OVER;
179

S
Shengliang Guan 已提交
180
  int32_t dataPos = 0;
181 182 183 184 185 186
  SDB_GET_BINARY(pRaw, dataPos, pUser->user, TSDB_USER_LEN, _OVER)
  SDB_GET_BINARY(pRaw, dataPos, pUser->pass, TSDB_PASSWORD_LEN, _OVER)
  SDB_GET_BINARY(pRaw, dataPos, pUser->acct, TSDB_USER_LEN, _OVER)
  SDB_GET_INT64(pRaw, dataPos, &pUser->createdTime, _OVER)
  SDB_GET_INT64(pRaw, dataPos, &pUser->updateTime, _OVER)
  SDB_GET_INT8(pRaw, dataPos, &pUser->superUser, _OVER)
187
  SDB_GET_INT32(pRaw, dataPos, &pUser->authVersion, _OVER)
188 189 190

  int32_t numOfReadDbs = 0;
  int32_t numOfWriteDbs = 0;
191 192
  SDB_GET_INT32(pRaw, dataPos, &numOfReadDbs, _OVER)
  SDB_GET_INT32(pRaw, dataPos, &numOfWriteDbs, _OVER)
S
Shengliang Guan 已提交
193 194 195
  pUser->readDbs = taosHashInit(numOfReadDbs, taosGetDefaultHashFunction(TSDB_DATA_TYPE_BINARY), true, HASH_ENTRY_LOCK);
  pUser->writeDbs =
      taosHashInit(numOfWriteDbs, taosGetDefaultHashFunction(TSDB_DATA_TYPE_BINARY), true, HASH_ENTRY_LOCK);
196
  if (pUser->readDbs == NULL || pUser->writeDbs == NULL) goto _OVER;
197 198 199

  for (int32_t i = 0; i < numOfReadDbs; ++i) {
    char db[TSDB_DB_FNAME_LEN] = {0};
200
    SDB_GET_BINARY(pRaw, dataPos, db, TSDB_DB_FNAME_LEN, _OVER)
201 202 203 204 205 206
    int32_t len = strlen(db) + 1;
    taosHashPut(pUser->readDbs, db, len, db, TSDB_DB_FNAME_LEN);
  }

  for (int32_t i = 0; i < numOfWriteDbs; ++i) {
    char db[TSDB_DB_FNAME_LEN] = {0};
207
    SDB_GET_BINARY(pRaw, dataPos, db, TSDB_DB_FNAME_LEN, _OVER)
208 209 210 211
    int32_t len = strlen(db) + 1;
    taosHashPut(pUser->writeDbs, db, len, db, TSDB_DB_FNAME_LEN);
  }

212
  SDB_GET_RESERVE(pRaw, dataPos, USER_RESERVE_SIZE, _OVER)
S
Shengliang Guan 已提交
213
  taosInitRWLatch(&pUser->lock);
214 215 216

  terrno = 0;

217
_OVER:
218 219
  if (terrno != 0) {
    mError("user:%s, failed to decode from raw:%p since %s", pUser->user, pRaw, terrstr());
220 221
    taosHashCleanup(pUser->readDbs);
    taosHashCleanup(pUser->writeDbs);
wafwerar's avatar
wafwerar 已提交
222
    taosMemoryFreeClear(pRow);
223 224
    return NULL;
  }
S
Shengliang Guan 已提交
225

S
Shengliang Guan 已提交
226
  mTrace("user:%s, decode from raw:%p, row:%p", pUser->user, pRaw, pUser);
S
Shengliang Guan 已提交
227
  return pRow;
S
Shengliang Guan 已提交
228
}
S
Shengliang Guan 已提交
229

S
Shengliang Guan 已提交
230
static int32_t mndUserActionInsert(SSdb *pSdb, SUserObj *pUser) {
S
Shengliang Guan 已提交
231
  mTrace("user:%s, perform insert action, row:%p", pUser->user, pUser);
S
Shengliang Guan 已提交
232

S
Shengliang Guan 已提交
233 234
  SAcctObj *pAcct = sdbAcquire(pSdb, SDB_ACCT, pUser->acct);
  if (pAcct == NULL) {
S
Shengliang Guan 已提交
235
    terrno = TSDB_CODE_MND_ACCT_NOT_EXIST;
S
Shengliang Guan 已提交
236
    mError("user:%s, failed to perform insert action since %s", pUser->user, terrstr());
S
Shengliang Guan 已提交
237
    return -1;
S
Shengliang Guan 已提交
238
  }
S
Shengliang Guan 已提交
239 240
  pUser->acctId = pAcct->acctId;
  sdbRelease(pSdb, pAcct);
S
Shengliang Guan 已提交
241

S
Shengliang Guan 已提交
242 243
  return 0;
}
S
Shengliang Guan 已提交
244

S
Shengliang Guan 已提交
245
static int32_t mndUserActionDelete(SSdb *pSdb, SUserObj *pUser) {
S
Shengliang Guan 已提交
246
  mTrace("user:%s, perform delete action, row:%p", pUser->user, pUser);
247 248
  taosHashCleanup(pUser->readDbs);
  taosHashCleanup(pUser->writeDbs);
249 250
  pUser->readDbs = NULL;
  pUser->writeDbs = NULL;
S
Shengliang Guan 已提交
251 252 253
  return 0;
}

S
Shengliang Guan 已提交
254
static int32_t mndUserActionUpdate(SSdb *pSdb, SUserObj *pOld, SUserObj *pNew) {
S
Shengliang Guan 已提交
255
  mTrace("user:%s, perform update action, old row:%p new row:%p", pOld->user, pOld, pNew);
S
Shengliang Guan 已提交
256
  taosWLockLatch(&pOld->lock);
S
Shengliang Guan 已提交
257
  pOld->updateTime = pNew->updateTime;
D
dapan1121 已提交
258
  pOld->authVersion = pNew->authVersion;
S
Shengliang Guan 已提交
259
  memcpy(pOld->pass, pNew->pass, TSDB_PASSWORD_LEN);
wafwerar's avatar
wafwerar 已提交
260 261
  TSWAP(pOld->readDbs, pNew->readDbs);
  TSWAP(pOld->writeDbs, pNew->writeDbs);
S
Shengliang Guan 已提交
262
  taosWUnLockLatch(&pOld->lock);
263

S
Shengliang Guan 已提交
264 265 266
  return 0;
}

267
SUserObj *mndAcquireUser(SMnode *pMnode, const char *userName) {
S
Shengliang Guan 已提交
268 269 270
  SSdb     *pSdb = pMnode->pSdb;
  SUserObj *pUser = sdbAcquire(pSdb, SDB_USER, userName);
  if (pUser == NULL) {
S
Shengliang Guan 已提交
271
    terrno = TSDB_CODE_MND_USER_NOT_EXIST;
S
Shengliang Guan 已提交
272 273
  }
  return pUser;
S
Shengliang Guan 已提交
274
}
S
Shengliang Guan 已提交
275

S
Shengliang Guan 已提交
276 277 278
void mndReleaseUser(SMnode *pMnode, SUserObj *pUser) {
  SSdb *pSdb = pMnode->pSdb;
  sdbRelease(pSdb, pUser);
S
Shengliang Guan 已提交
279 280
}

S
Shengliang Guan 已提交
281
static int32_t mndCreateUser(SMnode *pMnode, char *acct, SCreateUserReq *pCreate, SRpcMsg *pReq) {
S
Shengliang Guan 已提交
282
  SUserObj userObj = {0};
S
Shengliang Guan 已提交
283 284
  taosEncryptPass_c((uint8_t *)pCreate->pass, strlen(pCreate->pass), userObj.pass);
  tstrncpy(userObj.user, pCreate->user, TSDB_USER_LEN);
S
Shengliang Guan 已提交
285 286 287
  tstrncpy(userObj.acct, acct, TSDB_USER_LEN);
  userObj.createdTime = taosGetTimestampMs();
  userObj.updateTime = userObj.createdTime;
S
Shengliang Guan 已提交
288
  userObj.superUser = pCreate->superUser;
S
Shengliang Guan 已提交
289

290
  STrans *pTrans = mndTransCreate(pMnode, TRN_POLICY_ROLLBACK, TRN_CONFLICT_NOTHING, pReq);
S
Shengliang Guan 已提交
291
  if (pTrans == NULL) {
S
Shengliang Guan 已提交
292
    mError("user:%s, failed to create since %s", pCreate->user, terrstr());
S
Shengliang Guan 已提交
293 294
    return -1;
  }
S
Shengliang Guan 已提交
295
  mDebug("trans:%d, used to create user:%s", pTrans->id, pCreate->user);
S
Shengliang Guan 已提交
296

297 298 299
  SSdbRaw *pCommitRaw = mndUserActionEncode(&userObj);
  if (pCommitRaw == NULL || mndTransAppendCommitlog(pTrans, pCommitRaw) != 0) {
    mError("trans:%d, failed to commit redo log since %s", pTrans->id, terrstr());
S
Shengliang Guan 已提交
300
    mndTransDrop(pTrans);
S
Shengliang Guan 已提交
301
    return -1;
S
Shengliang Guan 已提交
302
  }
303
  sdbSetRawStatus(pCommitRaw, SDB_STATUS_READY);
S
Shengliang Guan 已提交
304

S
Shengliang Guan 已提交
305
  if (mndTransPrepare(pMnode, pTrans) != 0) {
S
Shengliang Guan 已提交
306
    mError("trans:%d, failed to prepare since %s", pTrans->id, terrstr());
S
Shengliang Guan 已提交
307
    mndTransDrop(pTrans);
S
Shengliang Guan 已提交
308
    return -1;
S
Shengliang Guan 已提交
309 310
  }

S
Shengliang Guan 已提交
311
  mndTransDrop(pTrans);
S
Shengliang Guan 已提交
312
  return 0;
S
Shengliang Guan 已提交
313 314
}

S
Shengliang Guan 已提交
315 316
static int32_t mndProcessCreateUserReq(SRpcMsg *pReq) {
  SMnode        *pMnode = pReq->info.node;
S
Shengliang Guan 已提交
317 318 319 320 321
  int32_t        code = -1;
  SUserObj      *pUser = NULL;
  SUserObj      *pOperUser = NULL;
  SCreateUserReq createReq = {0};

S
Shengliang Guan 已提交
322
  if (tDeserializeSCreateUserReq(pReq->pCont, pReq->contLen, &createReq) != 0) {
S
Shengliang Guan 已提交
323
    terrno = TSDB_CODE_INVALID_MSG;
324
    goto _OVER;
S
Shengliang Guan 已提交
325
  }
S
Shengliang Guan 已提交
326

S
Shengliang Guan 已提交
327
  mDebug("user:%s, start to create", createReq.user);
S
Shengliang Guan 已提交
328

S
Shengliang Guan 已提交
329
  if (createReq.user[0] == 0) {
S
Shengliang Guan 已提交
330
    terrno = TSDB_CODE_MND_INVALID_USER_FORMAT;
331
    goto _OVER;
S
Shengliang Guan 已提交
332 333
  }

S
Shengliang Guan 已提交
334
  if (createReq.pass[0] == 0) {
S
Shengliang Guan 已提交
335
    terrno = TSDB_CODE_MND_INVALID_PASS_FORMAT;
336
    goto _OVER;
S
Shengliang Guan 已提交
337 338
  }

S
Shengliang Guan 已提交
339
  pUser = mndAcquireUser(pMnode, createReq.user);
S
Shengliang Guan 已提交
340
  if (pUser != NULL) {
S
Shengliang Guan 已提交
341
    terrno = TSDB_CODE_MND_USER_ALREADY_EXIST;
342
    goto _OVER;
S
Shengliang Guan 已提交
343 344
  }

S
Shengliang Guan 已提交
345
  pOperUser = mndAcquireUser(pMnode, pReq->conn.user);
S
Shengliang Guan 已提交
346
  if (pOperUser == NULL) {
S
Shengliang Guan 已提交
347
    terrno = TSDB_CODE_MND_NO_USER_FROM_CONN;
348
    goto _OVER;
S
Shengliang Guan 已提交
349 350
  }

S
Shengliang Guan 已提交
351
  if (mndCheckCreateUserAuth(pOperUser) != 0) {
352
    goto _OVER;
S
Shengliang Guan 已提交
353 354 355
  }

  code = mndCreateUser(pMnode, pOperUser->acct, &createReq, pReq);
S
Shengliang Guan 已提交
356
  if (code == 0) code = TSDB_CODE_ACTION_IN_PROGRESS;
S
Shengliang Guan 已提交
357

358
_OVER:
S
Shengliang Guan 已提交
359
  if (code != 0 && code != TSDB_CODE_ACTION_IN_PROGRESS) {
S
Shengliang Guan 已提交
360
    mError("user:%s, failed to create since %s", createReq.user, terrstr());
S
Shengliang Guan 已提交
361 362
  }

S
Shengliang Guan 已提交
363 364 365 366
  mndReleaseUser(pMnode, pUser);
  mndReleaseUser(pMnode, pOperUser);

  return code;
S
Shengliang Guan 已提交
367 368
}

S
Shengliang Guan 已提交
369
static int32_t mndAlterUser(SMnode *pMnode, SUserObj *pOld, SUserObj *pNew, SRpcMsg *pReq) {
370
  STrans *pTrans = mndTransCreate(pMnode, TRN_POLICY_ROLLBACK, TRN_CONFLICT_NOTHING, pReq);
S
Shengliang Guan 已提交
371
  if (pTrans == NULL) {
S
Shengliang Guan 已提交
372
    mError("user:%s, failed to alter since %s", pOld->user, terrstr());
S
Shengliang Guan 已提交
373 374
    return -1;
  }
S
Shengliang Guan 已提交
375
  mDebug("trans:%d, used to alter user:%s", pTrans->id, pOld->user);
S
Shengliang Guan 已提交
376

377 378 379
  SSdbRaw *pCommitRaw = mndUserActionEncode(pNew);
  if (pCommitRaw == NULL || mndTransAppendCommitlog(pTrans, pCommitRaw) != 0) {
    mError("trans:%d, failed to append commit log since %s", pTrans->id, terrstr());
S
Shengliang Guan 已提交
380 381 382
    mndTransDrop(pTrans);
    return -1;
  }
383
  sdbSetRawStatus(pCommitRaw, SDB_STATUS_READY);
S
Shengliang Guan 已提交
384 385 386 387 388 389 390 391 392 393 394

  if (mndTransPrepare(pMnode, pTrans) != 0) {
    mError("trans:%d, failed to prepare since %s", pTrans->id, terrstr());
    mndTransDrop(pTrans);
    return -1;
  }

  mndTransDrop(pTrans);
  return 0;
}

S
Shengliang Guan 已提交
395
static SHashObj *mndDupDbHash(SHashObj *pOld) {
S
Shengliang Guan 已提交
396 397
  SHashObj *pNew =
      taosHashInit(taosHashGetSize(pOld), taosGetDefaultHashFunction(TSDB_DATA_TYPE_BINARY), true, HASH_ENTRY_LOCK);
S
Shengliang Guan 已提交
398 399 400 401 402 403 404 405 406 407 408
  if (pNew == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return NULL;
  }

  char *db = taosHashIterate(pOld, NULL);
  while (db != NULL) {
    int32_t len = strlen(db) + 1;
    if (taosHashPut(pNew, db, len, db, TSDB_DB_FNAME_LEN) != 0) {
      taosHashCancelIterate(pOld, db);
      taosHashCleanup(pNew);
S
Shengliang Guan 已提交
409
      terrno = TSDB_CODE_OUT_OF_MEMORY;
S
Shengliang Guan 已提交
410 411 412 413 414 415 416 417
      return NULL;
    }
    db = taosHashIterate(pOld, db);
  }

  return pNew;
}

S
Shengliang Guan 已提交
418 419
static int32_t mndProcessAlterUserReq(SRpcMsg *pReq) {
  SMnode       *pMnode = pReq->info.node;
S
Shengliang Guan 已提交
420 421
  SSdb         *pSdb = pMnode->pSdb;
  void         *pIter = NULL;
S
Shengliang Guan 已提交
422 423 424
  int32_t       code = -1;
  SUserObj     *pUser = NULL;
  SUserObj     *pOperUser = NULL;
S
Shengliang Guan 已提交
425
  SUserObj      newUser = {0};
S
Shengliang Guan 已提交
426 427
  SAlterUserReq alterReq = {0};

S
Shengliang Guan 已提交
428
  if (tDeserializeSAlterUserReq(pReq->pCont, pReq->contLen, &alterReq) != 0) {
S
Shengliang Guan 已提交
429
    terrno = TSDB_CODE_INVALID_MSG;
430
    goto _OVER;
S
Shengliang Guan 已提交
431
  }
S
Shengliang Guan 已提交
432

S
Shengliang Guan 已提交
433
  mDebug("user:%s, start to alter", alterReq.user);
S
Shengliang Guan 已提交
434

S
Shengliang Guan 已提交
435
  if (alterReq.user[0] == 0) {
S
Shengliang Guan 已提交
436
    terrno = TSDB_CODE_MND_INVALID_USER_FORMAT;
437 438 439 440 441
    goto _OVER;
  }

  if (TSDB_ALTER_USER_PASSWD == alterReq.alterType && alterReq.pass[0] == 0) {
    terrno = TSDB_CODE_MND_INVALID_PASS_FORMAT;
442
    goto _OVER;
S
Shengliang Guan 已提交
443 444
  }

S
Shengliang Guan 已提交
445
  pUser = mndAcquireUser(pMnode, alterReq.user);
S
Shengliang Guan 已提交
446 447
  if (pUser == NULL) {
    terrno = TSDB_CODE_MND_USER_NOT_EXIST;
448
    goto _OVER;
S
Shengliang Guan 已提交
449 450
  }

S
Shengliang Guan 已提交
451
  pOperUser = mndAcquireUser(pMnode, pReq->conn.user);
S
Shengliang Guan 已提交
452 453
  if (pOperUser == NULL) {
    terrno = TSDB_CODE_MND_NO_USER_FROM_CONN;
454
    goto _OVER;
S
Shengliang Guan 已提交
455 456
  }

S
Shengliang Guan 已提交
457 458 459 460
  if (mndCheckAlterUserAuth(pOperUser, pUser, &alterReq) != 0) {
    goto _OVER;
  }

S
Shengliang Guan 已提交
461
  memcpy(&newUser, pUser, sizeof(SUserObj));
S
Shengliang Guan 已提交
462 463
  newUser.authVersion++;
  newUser.updateTime = taosGetTimestampMs();
S
Shengliang Guan 已提交
464 465

  taosRLockLatch(&pUser->lock);
S
Shengliang Guan 已提交
466 467
  newUser.readDbs = mndDupDbHash(pUser->readDbs);
  newUser.writeDbs = mndDupDbHash(pUser->writeDbs);
S
Shengliang Guan 已提交
468 469
  taosRUnLockLatch(&pUser->lock);

S
Shengliang Guan 已提交
470
  if (newUser.readDbs == NULL || newUser.writeDbs == NULL) {
471
    goto _OVER;
S
Shengliang Guan 已提交
472 473 474 475 476
  }

  if (alterReq.alterType == TSDB_ALTER_USER_PASSWD) {
    char pass[TSDB_PASSWORD_LEN + 1] = {0};
    taosEncryptPass_c((uint8_t *)alterReq.pass, strlen(alterReq.pass), pass);
477
    memcpy(newUser.pass, pass, TSDB_PASSWORD_LEN);
S
Shengliang Guan 已提交
478 479 480
  }

  if (alterReq.alterType == TSDB_ALTER_USER_SUPERUSER) {
S
Shengliang Guan 已提交
481
    newUser.superUser = alterReq.superUser;
S
Shengliang Guan 已提交
482 483 484
  }

  if (alterReq.alterType == TSDB_ALTER_USER_ADD_READ_DB || alterReq.alterType == TSDB_ALTER_USER_ADD_ALL_DB) {
485
    if (strcmp(alterReq.dbname, "1.*") != 0) {
S
Shengliang Guan 已提交
486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504
      int32_t len = strlen(alterReq.dbname) + 1;
      SDbObj *pDb = mndAcquireDb(pMnode, alterReq.dbname);
      if (pDb == NULL) {
        mndReleaseDb(pMnode, pDb);
        goto _OVER;
      }
      if (taosHashPut(newUser.readDbs, alterReq.dbname, len, alterReq.dbname, TSDB_DB_FNAME_LEN) != 0) {
        mndReleaseDb(pMnode, pDb);
        goto _OVER;
      }
    } else {
      while (1) {
        SDbObj *pDb = NULL;
        pIter = sdbFetch(pSdb, SDB_DB, pIter, (void **)&pDb);
        if (pIter == NULL) break;
        int32_t len = strlen(pDb->name) + 1;
        taosHashPut(newUser.readDbs, pDb->name, len, pDb->name, TSDB_DB_FNAME_LEN);
        sdbRelease(pSdb, pDb);
      }
S
Shengliang Guan 已提交
505
    }
S
Shengliang Guan 已提交
506 507 508
  }

  if (alterReq.alterType == TSDB_ALTER_USER_ADD_WRITE_DB || alterReq.alterType == TSDB_ALTER_USER_ADD_ALL_DB) {
509
    if (strcmp(alterReq.dbname, "1.*") != 0) {
S
Shengliang Guan 已提交
510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528
      int32_t len = strlen(alterReq.dbname) + 1;
      SDbObj *pDb = mndAcquireDb(pMnode, alterReq.dbname);
      if (pDb == NULL) {
        mndReleaseDb(pMnode, pDb);
        goto _OVER;
      }
      if (taosHashPut(newUser.writeDbs, alterReq.dbname, len, alterReq.dbname, TSDB_DB_FNAME_LEN) != 0) {
        mndReleaseDb(pMnode, pDb);
        goto _OVER;
      }
    } else {
      while (1) {
        SDbObj *pDb = NULL;
        pIter = sdbFetch(pSdb, SDB_DB, pIter, (void **)&pDb);
        if (pIter == NULL) break;
        int32_t len = strlen(pDb->name) + 1;
        taosHashPut(newUser.writeDbs, pDb->name, len, pDb->name, TSDB_DB_FNAME_LEN);
        sdbRelease(pSdb, pDb);
      }
S
Shengliang Guan 已提交
529 530 531
    }
  }

S
Shengliang Guan 已提交
532
  if (alterReq.alterType == TSDB_ALTER_USER_REMOVE_READ_DB || alterReq.alterType == TSDB_ALTER_USER_REMOVE_ALL_DB) {
S
Shengliang 已提交
533
    if (strcmp(alterReq.dbname, "1.*") != 0) {
S
Shengliang Guan 已提交
534 535 536 537 538 539 540 541 542 543 544
      int32_t len = strlen(alterReq.dbname) + 1;
      SDbObj *pDb = mndAcquireDb(pMnode, alterReq.dbname);
      if (pDb == NULL) {
        mndReleaseDb(pMnode, pDb);
        goto _OVER;
      }
      taosHashRemove(newUser.readDbs, alterReq.dbname, len);
    } else {
      taosHashClear(newUser.readDbs);
    }
  }
S
Shengliang Guan 已提交
545

S
Shengliang Guan 已提交
546
  if (alterReq.alterType == TSDB_ALTER_USER_REMOVE_WRITE_DB || alterReq.alterType == TSDB_ALTER_USER_REMOVE_ALL_DB) {
S
Shengliang 已提交
547
    if (strcmp(alterReq.dbname, "1.*") != 0) {
S
Shengliang Guan 已提交
548 549 550 551 552 553 554 555 556 557
      int32_t len = strlen(alterReq.dbname) + 1;
      SDbObj *pDb = mndAcquireDb(pMnode, alterReq.dbname);
      if (pDb == NULL) {
        mndReleaseDb(pMnode, pDb);
        goto _OVER;
      }
      taosHashRemove(newUser.writeDbs, alterReq.dbname, len);
    } else {
      taosHashClear(newUser.writeDbs);
    }
S
Shengliang Guan 已提交
558 559
  }

S
Shengliang Guan 已提交
560
  code = mndAlterUser(pMnode, pUser, &newUser, pReq);
S
Shengliang Guan 已提交
561
  if (code == 0) code = TSDB_CODE_ACTION_IN_PROGRESS;
S
Shengliang Guan 已提交
562

563
_OVER:
S
Shengliang Guan 已提交
564
  if (code != 0 && code != TSDB_CODE_ACTION_IN_PROGRESS) {
S
Shengliang Guan 已提交
565
    mError("user:%s, failed to alter since %s", alterReq.user, terrstr());
S
Shengliang Guan 已提交
566 567
  }

S
Shengliang Guan 已提交
568 569
  mndReleaseUser(pMnode, pOperUser);
  mndReleaseUser(pMnode, pUser);
S
Shengliang Guan 已提交
570 571
  taosHashCleanup(newUser.writeDbs);
  taosHashCleanup(newUser.readDbs);
S
Shengliang Guan 已提交
572 573

  return code;
S
Shengliang Guan 已提交
574 575
}

S
Shengliang Guan 已提交
576
static int32_t mndDropUser(SMnode *pMnode, SRpcMsg *pReq, SUserObj *pUser) {
577
  STrans *pTrans = mndTransCreate(pMnode, TRN_POLICY_ROLLBACK, TRN_CONFLICT_NOTHING, pReq);
S
Shengliang Guan 已提交
578 579 580 581 582 583
  if (pTrans == NULL) {
    mError("user:%s, failed to drop since %s", pUser->user, terrstr());
    return -1;
  }
  mDebug("trans:%d, used to drop user:%s", pTrans->id, pUser->user);

584 585 586
  SSdbRaw *pCommitRaw = mndUserActionEncode(pUser);
  if (pCommitRaw == NULL || mndTransAppendCommitlog(pTrans, pCommitRaw) != 0) {
    mError("trans:%d, failed to append commit log since %s", pTrans->id, terrstr());
S
Shengliang Guan 已提交
587 588 589
    mndTransDrop(pTrans);
    return -1;
  }
590
  sdbSetRawStatus(pCommitRaw, SDB_STATUS_DROPPED);
S
Shengliang Guan 已提交
591 592 593 594 595 596 597 598 599 600 601

  if (mndTransPrepare(pMnode, pTrans) != 0) {
    mError("trans:%d, failed to prepare since %s", pTrans->id, terrstr());
    mndTransDrop(pTrans);
    return -1;
  }

  mndTransDrop(pTrans);
  return 0;
}

S
Shengliang Guan 已提交
602 603
static int32_t mndProcessDropUserReq(SRpcMsg *pReq) {
  SMnode      *pMnode = pReq->info.node;
S
Shengliang Guan 已提交
604 605 606 607 608
  int32_t      code = -1;
  SUserObj    *pUser = NULL;
  SUserObj    *pOperUser = NULL;
  SDropUserReq dropReq = {0};

S
Shengliang Guan 已提交
609
  if (tDeserializeSDropUserReq(pReq->pCont, pReq->contLen, &dropReq) != 0) {
S
Shengliang Guan 已提交
610
    terrno = TSDB_CODE_INVALID_MSG;
611
    goto _OVER;
S
Shengliang Guan 已提交
612
  }
S
Shengliang Guan 已提交
613

S
Shengliang Guan 已提交
614
  mDebug("user:%s, start to drop", dropReq.user);
S
Shengliang Guan 已提交
615

S
Shengliang Guan 已提交
616
  if (dropReq.user[0] == 0) {
S
Shengliang Guan 已提交
617
    terrno = TSDB_CODE_MND_INVALID_USER_FORMAT;
618
    goto _OVER;
S
Shengliang Guan 已提交
619 620
  }

S
Shengliang Guan 已提交
621
  pUser = mndAcquireUser(pMnode, dropReq.user);
S
Shengliang Guan 已提交
622 623
  if (pUser == NULL) {
    terrno = TSDB_CODE_MND_USER_NOT_EXIST;
624
    goto _OVER;
S
Shengliang Guan 已提交
625 626
  }

S
Shengliang Guan 已提交
627
  pOperUser = mndAcquireUser(pMnode, pReq->conn.user);
S
Shengliang Guan 已提交
628 629
  if (pOperUser == NULL) {
    terrno = TSDB_CODE_MND_NO_USER_FROM_CONN;
630
    goto _OVER;
S
Shengliang Guan 已提交
631 632
  }

S
Shengliang Guan 已提交
633
  if (mndCheckDropUserAuth(pOperUser) != 0) {
634
    goto _OVER;
S
Shengliang Guan 已提交
635 636
  }

S
Shengliang Guan 已提交
637
  code = mndDropUser(pMnode, pReq, pUser);
S
Shengliang Guan 已提交
638
  if (code == 0) code = TSDB_CODE_ACTION_IN_PROGRESS;
S
Shengliang Guan 已提交
639

640
_OVER:
S
Shengliang Guan 已提交
641
  if (code != 0 && code != TSDB_CODE_ACTION_IN_PROGRESS) {
S
Shengliang Guan 已提交
642
    mError("user:%s, failed to drop since %s", dropReq.user, terrstr());
S
Shengliang Guan 已提交
643 644
  }

S
Shengliang Guan 已提交
645 646 647 648
  mndReleaseUser(pMnode, pOperUser);
  mndReleaseUser(pMnode, pUser);

  return code;
S
Shengliang Guan 已提交
649 650
}

651
static int32_t mndSetUserAuthRsp(SMnode *pMnode, SUserObj *pUser, SGetUserAuthRsp *pRsp) {
D
dapan 已提交
652 653 654
  memcpy(pRsp->user, pUser->user, TSDB_USER_LEN);
  pRsp->superAuth = pUser->superUser;
  pRsp->version = pUser->authVersion;
655
  taosRLockLatch(&pUser->lock);
D
dapan 已提交
656 657
  pRsp->readDbs = mndDupDbHash(pUser->readDbs);
  pRsp->writeDbs = mndDupDbHash(pUser->writeDbs);
658
  taosRUnLockLatch(&pUser->lock);
D
dapan 已提交
659 660 661 662 663
  pRsp->createdDbs = taosHashInit(4, taosGetDefaultHashFunction(TSDB_DATA_TYPE_BINARY), true, HASH_NO_LOCK);
  if (NULL == pRsp->createdDbs) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return -1;
  }
664

D
dapan 已提交
665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682
  SSdb *pSdb = pMnode->pSdb;
  void *pIter = NULL;
  while (1) {
    SDbObj *pDb = NULL;
    pIter = sdbFetch(pSdb, SDB_DB, pIter, (void **)&pDb);
    if (pIter == NULL) break;

    if (strcmp(pDb->createUser, pUser->user) == 0) {
      int32_t len = strlen(pDb->name) + 1;
      taosHashPut(pRsp->createdDbs, pDb->name, len, pDb->name, len);
    }

    sdbRelease(pSdb, pDb);
  }

  return 0;
}

S
Shengliang Guan 已提交
683 684
static int32_t mndProcessGetUserAuthReq(SRpcMsg *pReq) {
  SMnode         *pMnode = pReq->info.node;
S
Shengliang Guan 已提交
685 686 687 688 689
  int32_t         code = -1;
  SUserObj       *pUser = NULL;
  SGetUserAuthReq authReq = {0};
  SGetUserAuthRsp authRsp = {0};

S
Shengliang Guan 已提交
690
  if (tDeserializeSGetUserAuthReq(pReq->pCont, pReq->contLen, &authReq) != 0) {
S
Shengliang Guan 已提交
691
    terrno = TSDB_CODE_INVALID_MSG;
692
    goto _OVER;
S
Shengliang Guan 已提交
693
  }
S
Shengliang Guan 已提交
694 695 696 697 698 699

  mTrace("user:%s, start to get auth", authReq.user);

  pUser = mndAcquireUser(pMnode, authReq.user);
  if (pUser == NULL) {
    terrno = TSDB_CODE_MND_USER_NOT_EXIST;
700
    goto _OVER;
S
Shengliang Guan 已提交
701 702
  }

D
dapan 已提交
703 704 705
  code = mndSetUserAuthRsp(pMnode, pUser, &authRsp);
  if (code) {
    goto _OVER;
S
Shengliang Guan 已提交
706 707
  }

S
Shengliang Guan 已提交
708
  int32_t contLen = tSerializeSGetUserAuthRsp(NULL, 0, &authRsp);
S
Shengliang Guan 已提交
709 710 711
  void   *pRsp = rpcMallocCont(contLen);
  if (pRsp == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
712
    goto _OVER;
S
Shengliang Guan 已提交
713 714
  }

S
Shengliang Guan 已提交
715
  tSerializeSGetUserAuthRsp(pRsp, contLen, &authRsp);
S
Shengliang Guan 已提交
716

S
Shengliang Guan 已提交
717 718
  pReq->info.rsp = pRsp;
  pReq->info.rspLen = contLen;
S
Shengliang Guan 已提交
719 720
  code = 0;

721
_OVER:
722

S
Shengliang Guan 已提交
723
  mndReleaseUser(pMnode, pUser);
S
Shengliang Guan 已提交
724
  tFreeSGetUserAuthRsp(&authRsp);
S
Shengliang Guan 已提交
725 726 727 728

  return code;
}

S
Shengliang Guan 已提交
729 730
static int32_t mndRetrieveUsers(SRpcMsg *pReq, SShowObj *pShow, SSDataBlock *pBlock, int32_t rows) {
  SMnode   *pMnode = pReq->info.node;
S
Shengliang Guan 已提交
731 732 733 734 735 736 737 738 739 740 741
  SSdb     *pSdb = pMnode->pSdb;
  int32_t   numOfRows = 0;
  SUserObj *pUser = NULL;
  int32_t   cols = 0;
  char     *pWrite;

  while (numOfRows < rows) {
    pShow->pIter = sdbFetch(pSdb, SDB_USER, pShow->pIter, (void **)&pUser);
    if (pShow->pIter == NULL) break;

    cols = 0;
742
    SColumnInfoData *pColInfo = taosArrayGet(pBlock->pDataBlock, cols);
743 744

    char name[TSDB_USER_LEN + VARSTR_HEADER_SIZE] = {0};
745
    STR_WITH_MAXSIZE_TO_VARSTR(name, pUser->user, pShow->pMeta->pSchemas[cols].bytes);
746

747
    colDataAppend(pColInfo, numOfRows, (const char *)name, false);
748

wafwerar's avatar
wafwerar 已提交
749 750
    cols++;
    pColInfo = taosArrayGet(pBlock->pDataBlock, cols);
751

752 753
    const char *src = pUser->superUser ? "super" : "normal";
    char        b[10 + VARSTR_HEADER_SIZE] = {0};
754
    STR_WITH_SIZE_TO_VARSTR(b, src, strlen(src));
755
    colDataAppend(pColInfo, numOfRows, (const char *)b, false);
756

wafwerar's avatar
wafwerar 已提交
757 758
    cols++;
    pColInfo = taosArrayGet(pBlock->pDataBlock, cols);
759
    colDataAppend(pColInfo, numOfRows, (const char *)&pUser->createdTime, false);
S
Shengliang Guan 已提交
760 761 762 763 764

    numOfRows++;
    sdbRelease(pSdb, pUser);
  }

765
  pShow->numOfRows += numOfRows;
S
Shengliang Guan 已提交
766 767 768 769 770 771
  return numOfRows;
}

static void mndCancelGetNextUser(SMnode *pMnode, void *pIter) {
  SSdb *pSdb = pMnode->pSdb;
  sdbCancelFetch(pSdb, pIter);
S
Shengliang Guan 已提交
772
}
D
dapan 已提交
773

774 775
int32_t mndValidateUserAuthInfo(SMnode *pMnode, SUserAuthVersion *pUsers, int32_t numOfUses, void **ppRsp,
                                int32_t *pRspLen) {
D
dapan 已提交
776 777 778 779 780 781 782 783 784 785 786 787 788 789 790
  SUserAuthBatchRsp batchRsp = {0};
  batchRsp.pArray = taosArrayInit(numOfUses, sizeof(SGetUserAuthRsp));
  if (batchRsp.pArray == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return -1;
  }

  int32_t code = 0;
  for (int32_t i = 0; i < numOfUses; ++i) {
    SUserObj *pUser = mndAcquireUser(pMnode, pUsers[i].user);
    if (pUser == NULL) {
      mError("user:%s, failed to auth user since %s", pUsers[i].user, terrstr());
      continue;
    }

D
dapan1121 已提交
791
    pUsers[i].version = ntohl(pUsers[i].version);
D
dapan 已提交
792 793 794 795
    if (pUser->authVersion <= pUsers[i].version) {
      mndReleaseUser(pMnode, pUser);
      continue;
    }
796

D
dapan 已提交
797 798 799 800 801 802 803 804 805 806 807 808 809 810 811
    SGetUserAuthRsp rsp = {0};
    code = mndSetUserAuthRsp(pMnode, pUser, &rsp);
    if (code) {
      mndReleaseUser(pMnode, pUser);
      tFreeSGetUserAuthRsp(&rsp);
      goto _OVER;
    }

    taosArrayPush(batchRsp.pArray, &rsp);
    mndReleaseUser(pMnode, pUser);
  }

  if (taosArrayGetSize(batchRsp.pArray) <= 0) {
    *ppRsp = NULL;
    *pRspLen = 0;
812

D
dapan 已提交
813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835
    tFreeSUserAuthBatchRsp(&batchRsp);
    return 0;
  }

  int32_t rspLen = tSerializeSUserAuthBatchRsp(NULL, 0, &batchRsp);
  void   *pRsp = taosMemoryMalloc(rspLen);
  if (pRsp == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    tFreeSUserAuthBatchRsp(&batchRsp);
    return -1;
  }
  tSerializeSUserAuthBatchRsp(pRsp, rspLen, &batchRsp);

  *ppRsp = pRsp;
  *pRspLen = rspLen;

  tFreeSUserAuthBatchRsp(&batchRsp);
  return 0;

_OVER:

  *ppRsp = NULL;
  *pRspLen = 0;
836

D
dapan 已提交
837 838 839
  tFreeSUserAuthBatchRsp(&batchRsp);
  return code;
}