mndUser.c 25.4 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 "mndDb.h"
S
Shengliang Guan 已提交
19
#include "mndPrivilege.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
  tstrncpy(userObj.user, user, TSDB_USER_LEN);
  tstrncpy(userObj.acct, acct, TSDB_USER_LEN);
  userObj.createdTime = taosGetTimestampMs();
  userObj.updateTime = userObj.createdTime;
71 72
  userObj.sysInfo = 1;
  userObj.enable = 1;
S
Shengliang Guan 已提交
73 74

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

  SSdbRaw *pRaw = mndUserActionEncode(&userObj);
  if (pRaw == NULL) return -1;
S
Shengliang Guan 已提交
80
  (void)sdbSetRawStatus(pRaw, SDB_STATUS_READY);
S
Shengliang Guan 已提交
81

82
  mInfo("user:%s, will be created when deploying, raw:%p", userObj.user, pRaw);
83

84
  STrans *pTrans = mndTransCreate(pMnode, TRN_POLICY_RETRY, TRN_CONFLICT_NOTHING, NULL, "create-user");
85
  if (pTrans == NULL) {
S
Shengliang Guan 已提交
86
    sdbFreeRaw(pRaw);
87 88 89
    mError("user:%s, failed to create since %s", userObj.user, terrstr());
    return -1;
  }
90
  mInfo("trans:%d, used to create user:%s", pTrans->id, userObj.user);
91 92 93 94 95 96

  if (mndTransAppendCommitlog(pTrans, pRaw) != 0) {
    mError("trans:%d, failed to commit redo log since %s", pTrans->id, terrstr());
    mndTransDrop(pTrans);
    return -1;
  }
S
Shengliang Guan 已提交
97
  (void)sdbSetRawStatus(pRaw, SDB_STATUS_READY);
98 99 100 101 102 103 104 105 106

  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 已提交
107 108 109 110 111 112 113 114 115 116
}

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

  return 0;
}

117
SSdbRaw *mndUserActionEncode(SUserObj *pUser) {
118 119
  terrno = TSDB_CODE_OUT_OF_MEMORY;

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

124
  SSdbRaw *pRaw = sdbAllocRaw(SDB_USER, USER_VER_NUMBER, size);
125
  if (pRaw == NULL) goto _OVER;
S
Shengliang Guan 已提交
126 127

  int32_t dataPos = 0;
128 129 130 131 132 133
  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)
134 135 136
  SDB_SET_INT8(pRaw, dataPos, pUser->sysInfo, _OVER)
  SDB_SET_INT8(pRaw, dataPos, pUser->enable, _OVER)
  SDB_SET_INT8(pRaw, dataPos, pUser->reserve, _OVER)
137
  SDB_SET_INT32(pRaw, dataPos, pUser->authVersion, _OVER)
138 139
  SDB_SET_INT32(pRaw, dataPos, numOfReadDbs, _OVER)
  SDB_SET_INT32(pRaw, dataPos, numOfWriteDbs, _OVER)
140 141 142

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

  db = taosHashIterate(pUser->writeDbs, NULL);
  while (db != NULL) {
149
    SDB_SET_BINARY(pRaw, dataPos, db, TSDB_DB_FNAME_LEN, _OVER);
150 151 152
    db = taosHashIterate(pUser->writeDbs, db);
  }

153 154
  SDB_SET_RESERVE(pRaw, dataPos, USER_RESERVE_SIZE, _OVER)
  SDB_SET_DATALEN(pRaw, dataPos, _OVER)
155 156 157

  terrno = 0;

158
_OVER:
159 160 161 162 163
  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 已提交
164

S
Shengliang Guan 已提交
165
  mTrace("user:%s, encode to raw:%p, row:%p", pUser->user, pRaw, pUser);
S
Shengliang Guan 已提交
166
  return pRaw;
S
Shengliang Guan 已提交
167 168
}

S
Shengliang Guan 已提交
169
static SSdbRow *mndUserActionDecode(SSdbRaw *pRaw) {
170
  terrno = TSDB_CODE_OUT_OF_MEMORY;
171 172
  SUserObj *pUser = NULL;  // fix the un-initialized local parameter error, caused by log print
  SSdbRow  *pRow = NULL;
173

S
Shengliang Guan 已提交
174
  int8_t sver = 0;
175
  if (sdbGetRawSoftVer(pRaw, &sver) != 0) goto _OVER;
S
Shengliang Guan 已提交
176

177
  if (sver != USER_VER_NUMBER) {
S
Shengliang Guan 已提交
178
    terrno = TSDB_CODE_SDB_INVALID_DATA_VER;
179
    goto _OVER;
S
Shengliang Guan 已提交
180
  }
S
Shengliang Guan 已提交
181

182
  pRow = sdbAllocRow(sizeof(SUserObj));
183
  if (pRow == NULL) goto _OVER;
184

185
  pUser = sdbGetRowObj(pRow);
186
  if (pUser == NULL) goto _OVER;
187

S
Shengliang Guan 已提交
188
  int32_t dataPos = 0;
189 190 191 192 193 194
  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)
195 196 197
  SDB_GET_INT8(pRaw, dataPos, &pUser->sysInfo, _OVER)
  SDB_GET_INT8(pRaw, dataPos, &pUser->enable, _OVER)
  SDB_GET_INT8(pRaw, dataPos, &pUser->reserve, _OVER)
198
  SDB_GET_INT32(pRaw, dataPos, &pUser->authVersion, _OVER)
199 200 201

  int32_t numOfReadDbs = 0;
  int32_t numOfWriteDbs = 0;
202 203
  SDB_GET_INT32(pRaw, dataPos, &numOfReadDbs, _OVER)
  SDB_GET_INT32(pRaw, dataPos, &numOfWriteDbs, _OVER)
S
Shengliang Guan 已提交
204 205 206
  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);
207
  if (pUser->readDbs == NULL || pUser->writeDbs == NULL) goto _OVER;
208 209 210

  for (int32_t i = 0; i < numOfReadDbs; ++i) {
    char db[TSDB_DB_FNAME_LEN] = {0};
211
    SDB_GET_BINARY(pRaw, dataPos, db, TSDB_DB_FNAME_LEN, _OVER)
212 213 214 215 216 217
    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};
218
    SDB_GET_BINARY(pRaw, dataPos, db, TSDB_DB_FNAME_LEN, _OVER)
219 220 221 222
    int32_t len = strlen(db) + 1;
    taosHashPut(pUser->writeDbs, db, len, db, TSDB_DB_FNAME_LEN);
  }

223
  SDB_GET_RESERVE(pRaw, dataPos, USER_RESERVE_SIZE, _OVER)
S
Shengliang Guan 已提交
224
  taosInitRWLatch(&pUser->lock);
225 226 227

  terrno = 0;

228
_OVER:
229
  if (terrno != 0) {
230 231 232 233 234 235
    if (pUser != NULL) {
      mError("user:%s, failed to decode from raw:%p since %s", pUser->user, pRaw, terrstr());
      taosHashCleanup(pUser->readDbs);
      taosHashCleanup(pUser->writeDbs);
    }

wafwerar's avatar
wafwerar 已提交
236
    taosMemoryFreeClear(pRow);
237 238
    return NULL;
  }
S
Shengliang Guan 已提交
239

S
Shengliang Guan 已提交
240
  mTrace("user:%s, decode from raw:%p, row:%p", pUser->user, pRaw, pUser);
S
Shengliang Guan 已提交
241
  return pRow;
S
Shengliang Guan 已提交
242
}
S
Shengliang Guan 已提交
243

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

S
Shengliang Guan 已提交
247 248
  SAcctObj *pAcct = sdbAcquire(pSdb, SDB_ACCT, pUser->acct);
  if (pAcct == NULL) {
S
Shengliang Guan 已提交
249
    terrno = TSDB_CODE_MND_ACCT_NOT_EXIST;
S
Shengliang Guan 已提交
250
    mError("user:%s, failed to perform insert action since %s", pUser->user, terrstr());
S
Shengliang Guan 已提交
251
    return -1;
S
Shengliang Guan 已提交
252
  }
S
Shengliang Guan 已提交
253 254
  pUser->acctId = pAcct->acctId;
  sdbRelease(pSdb, pAcct);
S
Shengliang Guan 已提交
255

S
Shengliang Guan 已提交
256 257
  return 0;
}
S
Shengliang Guan 已提交
258

S
Shengliang Guan 已提交
259
static int32_t mndUserActionDelete(SSdb *pSdb, SUserObj *pUser) {
S
Shengliang Guan 已提交
260
  mTrace("user:%s, perform delete action, row:%p", pUser->user, pUser);
261 262
  taosHashCleanup(pUser->readDbs);
  taosHashCleanup(pUser->writeDbs);
263 264
  pUser->readDbs = NULL;
  pUser->writeDbs = NULL;
S
Shengliang Guan 已提交
265 266 267
  return 0;
}

S
Shengliang Guan 已提交
268
static int32_t mndUserActionUpdate(SSdb *pSdb, SUserObj *pOld, SUserObj *pNew) {
S
Shengliang Guan 已提交
269
  mTrace("user:%s, perform update action, old row:%p new row:%p", pOld->user, pOld, pNew);
S
Shengliang Guan 已提交
270
  taosWLockLatch(&pOld->lock);
S
Shengliang Guan 已提交
271
  pOld->updateTime = pNew->updateTime;
D
dapan1121 已提交
272
  pOld->authVersion = pNew->authVersion;
273 274
  pOld->sysInfo = pNew->sysInfo;
  pOld->enable = pNew->enable;
S
Shengliang Guan 已提交
275
  memcpy(pOld->pass, pNew->pass, TSDB_PASSWORD_LEN);
wafwerar's avatar
wafwerar 已提交
276 277
  TSWAP(pOld->readDbs, pNew->readDbs);
  TSWAP(pOld->writeDbs, pNew->writeDbs);
S
Shengliang Guan 已提交
278
  taosWUnLockLatch(&pOld->lock);
279

S
Shengliang Guan 已提交
280 281 282
  return 0;
}

283
SUserObj *mndAcquireUser(SMnode *pMnode, const char *userName) {
S
Shengliang Guan 已提交
284 285 286
  SSdb     *pSdb = pMnode->pSdb;
  SUserObj *pUser = sdbAcquire(pSdb, SDB_USER, userName);
  if (pUser == NULL) {
S
Shengliang Guan 已提交
287
    terrno = TSDB_CODE_MND_USER_NOT_EXIST;
S
Shengliang Guan 已提交
288 289
  }
  return pUser;
S
Shengliang Guan 已提交
290
}
S
Shengliang Guan 已提交
291

S
Shengliang Guan 已提交
292 293 294
void mndReleaseUser(SMnode *pMnode, SUserObj *pUser) {
  SSdb *pSdb = pMnode->pSdb;
  sdbRelease(pSdb, pUser);
S
Shengliang Guan 已提交
295 296
}

S
Shengliang Guan 已提交
297
static int32_t mndCreateUser(SMnode *pMnode, char *acct, SCreateUserReq *pCreate, SRpcMsg *pReq) {
S
Shengliang Guan 已提交
298
  SUserObj userObj = {0};
S
Shengliang Guan 已提交
299 300
  taosEncryptPass_c((uint8_t *)pCreate->pass, strlen(pCreate->pass), userObj.pass);
  tstrncpy(userObj.user, pCreate->user, TSDB_USER_LEN);
S
Shengliang Guan 已提交
301 302 303
  tstrncpy(userObj.acct, acct, TSDB_USER_LEN);
  userObj.createdTime = taosGetTimestampMs();
  userObj.updateTime = userObj.createdTime;
304
  userObj.superUser = 0;  // pCreate->superUser;
305 306
  userObj.sysInfo = pCreate->sysInfo;
  userObj.enable = pCreate->enable;
S
Shengliang Guan 已提交
307

308
  STrans *pTrans = mndTransCreate(pMnode, TRN_POLICY_ROLLBACK, TRN_CONFLICT_NOTHING, pReq, "create-user");
S
Shengliang Guan 已提交
309
  if (pTrans == NULL) {
S
Shengliang Guan 已提交
310
    mError("user:%s, failed to create since %s", pCreate->user, terrstr());
S
Shengliang Guan 已提交
311 312
    return -1;
  }
313
  mInfo("trans:%d, used to create user:%s", pTrans->id, pCreate->user);
S
Shengliang Guan 已提交
314

315 316 317
  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 已提交
318
    mndTransDrop(pTrans);
S
Shengliang Guan 已提交
319
    return -1;
S
Shengliang Guan 已提交
320
  }
S
Shengliang Guan 已提交
321
  (void)sdbSetRawStatus(pCommitRaw, SDB_STATUS_READY);
S
Shengliang Guan 已提交
322

S
Shengliang Guan 已提交
323
  if (mndTransPrepare(pMnode, pTrans) != 0) {
S
Shengliang Guan 已提交
324
    mError("trans:%d, failed to prepare since %s", pTrans->id, terrstr());
S
Shengliang Guan 已提交
325
    mndTransDrop(pTrans);
S
Shengliang Guan 已提交
326
    return -1;
S
Shengliang Guan 已提交
327 328
  }

S
Shengliang Guan 已提交
329
  mndTransDrop(pTrans);
S
Shengliang Guan 已提交
330
  return 0;
S
Shengliang Guan 已提交
331 332
}

S
Shengliang Guan 已提交
333 334
static int32_t mndProcessCreateUserReq(SRpcMsg *pReq) {
  SMnode        *pMnode = pReq->info.node;
S
Shengliang Guan 已提交
335 336 337 338 339
  int32_t        code = -1;
  SUserObj      *pUser = NULL;
  SUserObj      *pOperUser = NULL;
  SCreateUserReq createReq = {0};

S
Shengliang Guan 已提交
340
  if (tDeserializeSCreateUserReq(pReq->pCont, pReq->contLen, &createReq) != 0) {
S
Shengliang Guan 已提交
341
    terrno = TSDB_CODE_INVALID_MSG;
342
    goto _OVER;
S
Shengliang Guan 已提交
343
  }
S
Shengliang Guan 已提交
344

345
  mInfo("user:%s, start to create", createReq.user);
346 347 348
  if (mndCheckOperPrivilege(pMnode, pReq->info.conn.user, MND_OPER_CREATE_USER) != 0) {
    goto _OVER;
  }
S
Shengliang Guan 已提交
349

S
Shengliang Guan 已提交
350
  if (createReq.user[0] == 0) {
S
Shengliang Guan 已提交
351
    terrno = TSDB_CODE_MND_INVALID_USER_FORMAT;
352
    goto _OVER;
S
Shengliang Guan 已提交
353 354
  }

S
Shengliang Guan 已提交
355
  if (createReq.pass[0] == 0) {
S
Shengliang Guan 已提交
356
    terrno = TSDB_CODE_MND_INVALID_PASS_FORMAT;
357
    goto _OVER;
S
Shengliang Guan 已提交
358 359
  }

S
Shengliang Guan 已提交
360
  pUser = mndAcquireUser(pMnode, createReq.user);
S
Shengliang Guan 已提交
361
  if (pUser != NULL) {
S
Shengliang Guan 已提交
362
    terrno = TSDB_CODE_MND_USER_ALREADY_EXIST;
363
    goto _OVER;
S
Shengliang Guan 已提交
364 365
  }

366
  pOperUser = mndAcquireUser(pMnode, pReq->info.conn.user);
S
Shengliang Guan 已提交
367
  if (pOperUser == NULL) {
S
Shengliang Guan 已提交
368
    terrno = TSDB_CODE_MND_NO_USER_FROM_CONN;
369
    goto _OVER;
S
Shengliang Guan 已提交
370 371
  }

C
Cary Xu 已提交
372 373 374 375
  if ((terrno = grantCheck(TSDB_GRANT_USER)) != 0) {
    code = terrno;
    goto _OVER;
  }
376

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

380
_OVER:
S
Shengliang Guan 已提交
381
  if (code != 0 && code != TSDB_CODE_ACTION_IN_PROGRESS) {
S
Shengliang Guan 已提交
382
    mError("user:%s, failed to create since %s", createReq.user, terrstr());
S
Shengliang Guan 已提交
383 384
  }

S
Shengliang Guan 已提交
385 386 387 388
  mndReleaseUser(pMnode, pUser);
  mndReleaseUser(pMnode, pOperUser);

  return code;
S
Shengliang Guan 已提交
389 390
}

S
Shengliang Guan 已提交
391
static int32_t mndAlterUser(SMnode *pMnode, SUserObj *pOld, SUserObj *pNew, SRpcMsg *pReq) {
392
  STrans *pTrans = mndTransCreate(pMnode, TRN_POLICY_ROLLBACK, TRN_CONFLICT_NOTHING, pReq, "alter-user");
S
Shengliang Guan 已提交
393
  if (pTrans == NULL) {
S
Shengliang Guan 已提交
394
    mError("user:%s, failed to alter since %s", pOld->user, terrstr());
S
Shengliang Guan 已提交
395 396
    return -1;
  }
397
  mInfo("trans:%d, used to alter user:%s", pTrans->id, pOld->user);
S
Shengliang Guan 已提交
398

399 400 401
  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 已提交
402 403 404
    mndTransDrop(pTrans);
    return -1;
  }
S
Shengliang Guan 已提交
405
  (void)sdbSetRawStatus(pCommitRaw, SDB_STATUS_READY);
S
Shengliang Guan 已提交
406 407 408 409 410 411 412 413 414 415 416

  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 已提交
417
SHashObj *mndDupDbHash(SHashObj *pOld) {
S
Shengliang Guan 已提交
418 419
  SHashObj *pNew =
      taosHashInit(taosHashGetSize(pOld), taosGetDefaultHashFunction(TSDB_DATA_TYPE_BINARY), true, HASH_ENTRY_LOCK);
S
Shengliang Guan 已提交
420 421 422 423 424 425 426 427 428 429 430
  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 已提交
431
      terrno = TSDB_CODE_OUT_OF_MEMORY;
S
Shengliang Guan 已提交
432 433 434 435 436 437 438 439
      return NULL;
    }
    db = taosHashIterate(pOld, db);
  }

  return pNew;
}

S
Shengliang Guan 已提交
440 441
static int32_t mndProcessAlterUserReq(SRpcMsg *pReq) {
  SMnode       *pMnode = pReq->info.node;
S
Shengliang Guan 已提交
442 443
  SSdb         *pSdb = pMnode->pSdb;
  void         *pIter = NULL;
S
Shengliang Guan 已提交
444 445 446
  int32_t       code = -1;
  SUserObj     *pUser = NULL;
  SUserObj     *pOperUser = NULL;
S
Shengliang Guan 已提交
447
  SUserObj      newUser = {0};
S
Shengliang Guan 已提交
448 449
  SAlterUserReq alterReq = {0};

S
Shengliang Guan 已提交
450
  if (tDeserializeSAlterUserReq(pReq->pCont, pReq->contLen, &alterReq) != 0) {
S
Shengliang Guan 已提交
451
    terrno = TSDB_CODE_INVALID_MSG;
452
    goto _OVER;
S
Shengliang Guan 已提交
453
  }
S
Shengliang Guan 已提交
454

455
  mInfo("user:%s, start to alter", alterReq.user);
S
Shengliang Guan 已提交
456

S
Shengliang Guan 已提交
457
  if (alterReq.user[0] == 0) {
S
Shengliang Guan 已提交
458
    terrno = TSDB_CODE_MND_INVALID_USER_FORMAT;
459 460 461 462 463
    goto _OVER;
  }

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

S
Shengliang Guan 已提交
467
  pUser = mndAcquireUser(pMnode, alterReq.user);
S
Shengliang Guan 已提交
468 469
  if (pUser == NULL) {
    terrno = TSDB_CODE_MND_USER_NOT_EXIST;
470
    goto _OVER;
S
Shengliang Guan 已提交
471 472
  }

473
  pOperUser = mndAcquireUser(pMnode, pReq->info.conn.user);
S
Shengliang Guan 已提交
474 475
  if (pOperUser == NULL) {
    terrno = TSDB_CODE_MND_NO_USER_FROM_CONN;
476
    goto _OVER;
S
Shengliang Guan 已提交
477 478
  }

479
  if (mndCheckAlterUserPrivilege(pOperUser, pUser, &alterReq) != 0) {
S
Shengliang Guan 已提交
480 481 482
    goto _OVER;
  }

S
Shengliang Guan 已提交
483
  memcpy(&newUser, pUser, sizeof(SUserObj));
S
Shengliang Guan 已提交
484 485
  newUser.authVersion++;
  newUser.updateTime = taosGetTimestampMs();
S
Shengliang Guan 已提交
486 487

  taosRLockLatch(&pUser->lock);
S
Shengliang Guan 已提交
488 489
  newUser.readDbs = mndDupDbHash(pUser->readDbs);
  newUser.writeDbs = mndDupDbHash(pUser->writeDbs);
S
Shengliang Guan 已提交
490 491
  taosRUnLockLatch(&pUser->lock);

S
Shengliang Guan 已提交
492
  if (newUser.readDbs == NULL || newUser.writeDbs == NULL) {
493
    goto _OVER;
S
Shengliang Guan 已提交
494 495 496 497 498
  }

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

  if (alterReq.alterType == TSDB_ALTER_USER_SUPERUSER) {
S
Shengliang Guan 已提交
503
    newUser.superUser = alterReq.superUser;
S
Shengliang Guan 已提交
504 505
  }

506 507 508 509 510 511 512 513
  if (alterReq.alterType == TSDB_ALTER_USER_ENABLE) {
    newUser.enable = alterReq.enable;
  }

  if (alterReq.alterType == TSDB_ALTER_USER_SYSINFO) {
    newUser.sysInfo = alterReq.sysInfo;
  }

S
Shengliang Guan 已提交
514
  if (alterReq.alterType == TSDB_ALTER_USER_ADD_READ_DB || alterReq.alterType == TSDB_ALTER_USER_ADD_ALL_DB) {
515
    if (strcmp(alterReq.dbname, "1.*") != 0) {
S
Shengliang Guan 已提交
516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534
      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 已提交
535
    }
S
Shengliang Guan 已提交
536 537 538
  }

  if (alterReq.alterType == TSDB_ALTER_USER_ADD_WRITE_DB || alterReq.alterType == TSDB_ALTER_USER_ADD_ALL_DB) {
539
    if (strcmp(alterReq.dbname, "1.*") != 0) {
S
Shengliang Guan 已提交
540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558
      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 已提交
559 560 561
    }
  }

S
Shengliang Guan 已提交
562
  if (alterReq.alterType == TSDB_ALTER_USER_REMOVE_READ_DB || alterReq.alterType == TSDB_ALTER_USER_REMOVE_ALL_DB) {
S
Shengliang 已提交
563
    if (strcmp(alterReq.dbname, "1.*") != 0) {
S
Shengliang Guan 已提交
564 565 566 567 568 569 570 571 572 573 574
      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 已提交
575

S
Shengliang Guan 已提交
576
  if (alterReq.alterType == TSDB_ALTER_USER_REMOVE_WRITE_DB || alterReq.alterType == TSDB_ALTER_USER_REMOVE_ALL_DB) {
S
Shengliang 已提交
577
    if (strcmp(alterReq.dbname, "1.*") != 0) {
S
Shengliang Guan 已提交
578 579 580 581 582 583 584 585 586 587
      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 已提交
588 589
  }

S
Shengliang Guan 已提交
590
  code = mndAlterUser(pMnode, pUser, &newUser, pReq);
S
Shengliang Guan 已提交
591
  if (code == 0) code = TSDB_CODE_ACTION_IN_PROGRESS;
S
Shengliang Guan 已提交
592

593
_OVER:
S
Shengliang Guan 已提交
594
  if (code != 0 && code != TSDB_CODE_ACTION_IN_PROGRESS) {
S
Shengliang Guan 已提交
595
    mError("user:%s, failed to alter since %s", alterReq.user, terrstr());
S
Shengliang Guan 已提交
596 597
  }

S
Shengliang Guan 已提交
598 599
  mndReleaseUser(pMnode, pOperUser);
  mndReleaseUser(pMnode, pUser);
S
Shengliang Guan 已提交
600 601
  taosHashCleanup(newUser.writeDbs);
  taosHashCleanup(newUser.readDbs);
S
Shengliang Guan 已提交
602 603

  return code;
S
Shengliang Guan 已提交
604 605
}

S
Shengliang Guan 已提交
606
static int32_t mndDropUser(SMnode *pMnode, SRpcMsg *pReq, SUserObj *pUser) {
607
  STrans *pTrans = mndTransCreate(pMnode, TRN_POLICY_ROLLBACK, TRN_CONFLICT_NOTHING, pReq, "drop-user");
S
Shengliang Guan 已提交
608 609 610 611
  if (pTrans == NULL) {
    mError("user:%s, failed to drop since %s", pUser->user, terrstr());
    return -1;
  }
612
  mInfo("trans:%d, used to drop user:%s", pTrans->id, pUser->user);
S
Shengliang Guan 已提交
613

614 615 616
  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 已提交
617 618 619
    mndTransDrop(pTrans);
    return -1;
  }
S
Shengliang Guan 已提交
620
  (void)sdbSetRawStatus(pCommitRaw, SDB_STATUS_DROPPED);
S
Shengliang Guan 已提交
621 622 623 624 625 626 627 628 629 630 631

  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 已提交
632 633
static int32_t mndProcessDropUserReq(SRpcMsg *pReq) {
  SMnode      *pMnode = pReq->info.node;
S
Shengliang Guan 已提交
634 635 636 637
  int32_t      code = -1;
  SUserObj    *pUser = NULL;
  SDropUserReq dropReq = {0};

S
Shengliang Guan 已提交
638
  if (tDeserializeSDropUserReq(pReq->pCont, pReq->contLen, &dropReq) != 0) {
S
Shengliang Guan 已提交
639
    terrno = TSDB_CODE_INVALID_MSG;
640
    goto _OVER;
S
Shengliang Guan 已提交
641
  }
S
Shengliang Guan 已提交
642

643
  mInfo("user:%s, start to drop", dropReq.user);
644 645 646
  if (mndCheckOperPrivilege(pMnode, pReq->info.conn.user, MND_OPER_DROP_USER) != 0) {
    goto _OVER;
  }
S
Shengliang Guan 已提交
647

S
Shengliang Guan 已提交
648
  if (dropReq.user[0] == 0) {
S
Shengliang Guan 已提交
649
    terrno = TSDB_CODE_MND_INVALID_USER_FORMAT;
650
    goto _OVER;
S
Shengliang Guan 已提交
651 652
  }

S
Shengliang Guan 已提交
653
  pUser = mndAcquireUser(pMnode, dropReq.user);
S
Shengliang Guan 已提交
654 655
  if (pUser == NULL) {
    terrno = TSDB_CODE_MND_USER_NOT_EXIST;
656
    goto _OVER;
S
Shengliang Guan 已提交
657 658
  }

S
Shengliang Guan 已提交
659
  code = mndDropUser(pMnode, pReq, pUser);
S
Shengliang Guan 已提交
660
  if (code == 0) code = TSDB_CODE_ACTION_IN_PROGRESS;
S
Shengliang Guan 已提交
661

662
_OVER:
S
Shengliang Guan 已提交
663
  if (code != 0 && code != TSDB_CODE_ACTION_IN_PROGRESS) {
S
Shengliang Guan 已提交
664
    mError("user:%s, failed to drop since %s", dropReq.user, terrstr());
S
Shengliang Guan 已提交
665 666
  }

S
Shengliang Guan 已提交
667 668
  mndReleaseUser(pMnode, pUser);
  return code;
S
Shengliang Guan 已提交
669 670
}

S
Shengliang Guan 已提交
671 672
static int32_t mndProcessGetUserAuthReq(SRpcMsg *pReq) {
  SMnode         *pMnode = pReq->info.node;
S
Shengliang Guan 已提交
673 674 675 676 677
  int32_t         code = -1;
  SUserObj       *pUser = NULL;
  SGetUserAuthReq authReq = {0};
  SGetUserAuthRsp authRsp = {0};

S
Shengliang Guan 已提交
678
  if (tDeserializeSGetUserAuthReq(pReq->pCont, pReq->contLen, &authReq) != 0) {
S
Shengliang Guan 已提交
679
    terrno = TSDB_CODE_INVALID_MSG;
680
    goto _OVER;
S
Shengliang Guan 已提交
681
  }
S
Shengliang Guan 已提交
682 683 684 685 686 687

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

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

D
dapan 已提交
691 692 693
  code = mndSetUserAuthRsp(pMnode, pUser, &authRsp);
  if (code) {
    goto _OVER;
S
Shengliang Guan 已提交
694 695
  }

S
Shengliang Guan 已提交
696
  int32_t contLen = tSerializeSGetUserAuthRsp(NULL, 0, &authRsp);
S
Shengliang Guan 已提交
697 698 699
  void   *pRsp = rpcMallocCont(contLen);
  if (pRsp == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
700
    goto _OVER;
S
Shengliang Guan 已提交
701 702
  }

S
Shengliang Guan 已提交
703
  tSerializeSGetUserAuthRsp(pRsp, contLen, &authRsp);
S
Shengliang Guan 已提交
704

S
Shengliang Guan 已提交
705 706
  pReq->info.rsp = pRsp;
  pReq->info.rspLen = contLen;
S
Shengliang Guan 已提交
707 708
  code = 0;

709
_OVER:
710

S
Shengliang Guan 已提交
711
  mndReleaseUser(pMnode, pUser);
S
Shengliang Guan 已提交
712
  tFreeSGetUserAuthRsp(&authRsp);
S
Shengliang Guan 已提交
713 714 715 716

  return code;
}

S
Shengliang Guan 已提交
717 718
static int32_t mndRetrieveUsers(SRpcMsg *pReq, SShowObj *pShow, SSDataBlock *pBlock, int32_t rows) {
  SMnode   *pMnode = pReq->info.node;
S
Shengliang Guan 已提交
719 720 721 722 723 724 725 726 727 728 729
  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;
730
    SColumnInfoData *pColInfo = taosArrayGet(pBlock->pDataBlock, cols);
731
    char             name[TSDB_USER_LEN + VARSTR_HEADER_SIZE] = {0};
732
    STR_WITH_MAXSIZE_TO_VARSTR(name, pUser->user, pShow->pMeta->pSchemas[cols].bytes);
733
    colDataAppend(pColInfo, numOfRows, (const char *)name, false);
734

wafwerar's avatar
wafwerar 已提交
735 736
    cols++;
    pColInfo = taosArrayGet(pBlock->pDataBlock, cols);
737
    colDataAppend(pColInfo, numOfRows, (const char *)&pUser->superUser, false);
738

739 740 741 742 743 744 745
    cols++;
    pColInfo = taosArrayGet(pBlock->pDataBlock, cols);
    colDataAppend(pColInfo, numOfRows, (const char *)&pUser->enable, false);

    cols++;
    pColInfo = taosArrayGet(pBlock->pDataBlock, cols);
    colDataAppend(pColInfo, numOfRows, (const char *)&pUser->sysInfo, false);
746

wafwerar's avatar
wafwerar 已提交
747 748
    cols++;
    pColInfo = taosArrayGet(pBlock->pDataBlock, cols);
749
    colDataAppend(pColInfo, numOfRows, (const char *)&pUser->createdTime, false);
S
Shengliang Guan 已提交
750 751 752 753 754

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

755
  pShow->numOfRows += numOfRows;
S
Shengliang Guan 已提交
756 757 758 759 760 761
  return numOfRows;
}

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

764 765
int32_t mndValidateUserAuthInfo(SMnode *pMnode, SUserAuthVersion *pUsers, int32_t numOfUses, void **ppRsp,
                                int32_t *pRspLen) {
D
dapan 已提交
766 767 768 769 770 771 772 773 774 775 776 777 778 779 780
  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 已提交
781
    pUsers[i].version = ntohl(pUsers[i].version);
D
dapan 已提交
782 783 784 785
    if (pUser->authVersion <= pUsers[i].version) {
      mndReleaseUser(pMnode, pUser);
      continue;
    }
786

D
dapan 已提交
787 788 789 790 791 792 793 794 795 796 797 798 799 800 801
    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;
802

D
dapan 已提交
803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825
    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;
826

D
dapan 已提交
827 828 829
  tFreeSUserAuthBatchRsp(&batchRsp);
  return code;
}