mndUser.c 8.2 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 18
#include "mndSync.h"
#include "mndTrans.h"
S
Shengliang Guan 已提交
19
#include "tkey.h"
S
Shengliang Guan 已提交
20

S
Shengliang Guan 已提交
21
#define SDB_USER_VER 1
S
Shengliang Guan 已提交
22

S
Shengliang Guan 已提交
23
static SSdbRaw *mndUserActionEncode(SUserObj *pUser) {
S
Shengliang Guan 已提交
24
  SSdbRaw *pRaw = sdbAllocRaw(SDB_USER, SDB_USER_VER, sizeof(SUserObj));
S
Shengliang Guan 已提交
25 26 27 28 29
  if (pRaw == NULL) return NULL;

  int32_t dataPos = 0;
  SDB_SET_BINARY(pRaw, dataPos, pUser->user, TSDB_USER_LEN)
  SDB_SET_BINARY(pRaw, dataPos, pUser->pass, TSDB_KEY_LEN)
S
Shengliang Guan 已提交
30
  SDB_SET_BINARY(pRaw, dataPos, pUser->acct, TSDB_USER_LEN)
S
Shengliang Guan 已提交
31 32
  SDB_SET_INT64(pRaw, dataPos, pUser->createdTime)
  SDB_SET_INT64(pRaw, dataPos, pUser->updateTime)
S
Shengliang Guan 已提交
33
  SDB_SET_INT8(pRaw, dataPos, pUser->superAuth)
S
Shengliang Guan 已提交
34
  SDB_SET_DATALEN(pRaw, dataPos);
S
Shengliang Guan 已提交
35 36

  return pRaw;
S
Shengliang Guan 已提交
37 38
}

S
Shengliang Guan 已提交
39
static SSdbRow *mndUserActionDecode(SSdbRaw *pRaw) {
S
Shengliang Guan 已提交
40 41
  int8_t sver = 0;
  if (sdbGetRawSoftVer(pRaw, &sver) != 0) return NULL;
S
Shengliang Guan 已提交
42

S
Shengliang Guan 已提交
43
  if (sver != SDB_USER_VER) {
S
Shengliang Guan 已提交
44
    mError("failed to decode user since %s", terrstr());
S
Shengliang Guan 已提交
45
    terrno = TSDB_CODE_SDB_INVALID_DATA_VER;
S
Shengliang Guan 已提交
46 47
    return NULL;
  }
S
Shengliang Guan 已提交
48

S
Shengliang Guan 已提交
49
  SSdbRow  *pRow = sdbAllocRow(sizeof(SUserObj));
S
Shengliang Guan 已提交
50 51
  SUserObj *pUser = sdbGetRowObj(pRow);
  if (pUser == NULL) return NULL;
S
Shengliang Guan 已提交
52

S
Shengliang Guan 已提交
53 54 55 56 57 58
  int32_t dataPos = 0;
  SDB_GET_BINARY(pRaw, pRow, dataPos, pUser->user, TSDB_USER_LEN)
  SDB_GET_BINARY(pRaw, pRow, dataPos, pUser->pass, TSDB_KEY_LEN)
  SDB_GET_BINARY(pRaw, pRow, dataPos, pUser->acct, TSDB_USER_LEN)
  SDB_GET_INT64(pRaw, pRow, dataPos, &pUser->createdTime)
  SDB_GET_INT64(pRaw, pRow, dataPos, &pUser->updateTime)
S
Shengliang Guan 已提交
59
  SDB_GET_INT8(pRaw, pRow, dataPos, &pUser->superAuth)
S
Shengliang Guan 已提交
60

S
Shengliang Guan 已提交
61
  return pRow;
S
Shengliang Guan 已提交
62
}
S
Shengliang Guan 已提交
63

S
Shengliang Guan 已提交
64
static int32_t mndUserActionInsert(SSdb *pSdb, SUserObj *pUser) {
S
Shengliang Guan 已提交
65
  mTrace("user:%s, perform insert action", pUser->user);
S
Shengliang Guan 已提交
66 67
  pUser->prohibitDbHash = taosHashInit(8, taosGetDefaultHashFunction(TSDB_DATA_TYPE_BINARY), true, HASH_ENTRY_LOCK);
  if (pUser->prohibitDbHash == NULL) {
S
Shengliang Guan 已提交
68
    terrno = TSDB_CODE_OUT_OF_MEMORY;
S
Shengliang Guan 已提交
69
    mError("user:%s, failed to perform insert action since %s", pUser->user, terrstr());
S
Shengliang Guan 已提交
70
    return -1;
S
Shengliang Guan 已提交
71 72
  }

S
Shengliang Guan 已提交
73 74
  SAcctObj *pAcct = sdbAcquire(pSdb, SDB_ACCT, pUser->acct);
  if (pAcct == NULL) {
S
Shengliang Guan 已提交
75
    terrno = TSDB_CODE_MND_ACCT_NOT_EXIST;
S
Shengliang Guan 已提交
76
    mError("user:%s, failed to perform insert action since %s", pUser->user, terrstr());
S
Shengliang Guan 已提交
77
    return -1;
S
Shengliang Guan 已提交
78
  }
S
Shengliang Guan 已提交
79 80
  pUser->acctId = pAcct->acctId;
  sdbRelease(pSdb, pAcct);
S
Shengliang Guan 已提交
81

S
Shengliang Guan 已提交
82 83
  return 0;
}
S
Shengliang Guan 已提交
84

S
Shengliang Guan 已提交
85
static int32_t mndUserActionDelete(SSdb *pSdb, SUserObj *pUser) {
S
Shengliang Guan 已提交
86
  mTrace("user:%s, perform delete action", pUser->user);
S
Shengliang Guan 已提交
87 88 89
  if (pUser->prohibitDbHash) {
    taosHashCleanup(pUser->prohibitDbHash);
    pUser->prohibitDbHash = NULL;
S
Shengliang Guan 已提交
90 91
  }

S
Shengliang Guan 已提交
92 93 94
  return 0;
}

S
Shengliang Guan 已提交
95
static int32_t mndUserActionUpdate(SSdb *pSdb, SUserObj *pSrcUser, SUserObj *pDstUser) {
S
Shengliang Guan 已提交
96 97 98 99 100 101
  mTrace("user:%s, perform update action", pSrcUser->user);
  memcpy(pSrcUser->user, pDstUser->user, TSDB_USER_LEN);
  memcpy(pSrcUser->pass, pDstUser->pass, TSDB_KEY_LEN);
  memcpy(pSrcUser->acct, pDstUser->acct, TSDB_USER_LEN);
  pSrcUser->createdTime = pDstUser->createdTime;
  pSrcUser->updateTime = pDstUser->updateTime;
S
Shengliang Guan 已提交
102
  pSrcUser->superAuth = pDstUser->superAuth;
S
Shengliang Guan 已提交
103 104 105
  return 0;
}

S
Shengliang Guan 已提交
106
static int32_t mndCreateDefaultUser(SMnode *pMnode, char *acct, char *user, char *pass) {
S
Shengliang Guan 已提交
107 108 109 110 111
  SUserObj userObj = {0};
  tstrncpy(userObj.user, user, TSDB_USER_LEN);
  tstrncpy(userObj.acct, acct, TSDB_USER_LEN);
  taosEncryptPass((uint8_t *)pass, strlen(pass), userObj.pass);
  userObj.createdTime = taosGetTimestampMs();
S
Shengliang Guan 已提交
112
  userObj.updateTime = userObj.createdTime;
S
Shengliang Guan 已提交
113 114

  if (strcmp(user, TSDB_DEFAULT_USER) == 0) {
S
Shengliang Guan 已提交
115
    userObj.superAuth = 1;
S
Shengliang Guan 已提交
116 117
  }

S
Shengliang Guan 已提交
118
  SSdbRaw *pRaw = mndUserActionEncode(&userObj);
S
Shengliang Guan 已提交
119
  if (pRaw == NULL) return -1;
S
Shengliang Guan 已提交
120
  sdbSetRawStatus(pRaw, SDB_STATUS_READY);
S
Shengliang Guan 已提交
121

S
Shengliang Guan 已提交
122
  mTrace("user:%s, will be created while deploy sdb", userObj.user);
S
Shengliang Guan 已提交
123
  return sdbWrite(pMnode->pSdb, pRaw);
S
Shengliang Guan 已提交
124
}
S
Shengliang Guan 已提交
125

S
Shengliang Guan 已提交
126 127
static int32_t mndCreateDefaultUsers(SMnode *pMnode) {
  if (mndCreateDefaultUser(pMnode, TSDB_DEFAULT_USER, TSDB_DEFAULT_USER, TSDB_DEFAULT_PASS) != 0) {
S
Shengliang Guan 已提交
128 129
    return -1;
  }
S
Shengliang Guan 已提交
130

S
Shengliang Guan 已提交
131
  if (mndCreateDefaultUser(pMnode, TSDB_DEFAULT_USER, "_" TSDB_DEFAULT_USER, TSDB_DEFAULT_PASS) != 0) {
S
Shengliang Guan 已提交
132 133
    return -1;
  }
S
Shengliang Guan 已提交
134

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

S
Shengliang Guan 已提交
138
static int32_t mndCreateUser(SMnode *pMnode, char *acct, char *user, char *pass, SMnodeMsg *pMsg) {
S
Shengliang Guan 已提交
139 140 141 142 143 144
  SUserObj userObj = {0};
  tstrncpy(userObj.user, user, TSDB_USER_LEN);
  tstrncpy(userObj.acct, acct, TSDB_USER_LEN);
  taosEncryptPass((uint8_t *)pass, strlen(pass), userObj.pass);
  userObj.createdTime = taosGetTimestampMs();
  userObj.updateTime = userObj.createdTime;
S
Shengliang Guan 已提交
145
  userObj.superAuth = 0;
S
Shengliang Guan 已提交
146

S
Shengliang Guan 已提交
147
  STrans *pTrans = mndTransCreate(pMnode, TRN_POLICY_ROLLBACK, pMsg->rpcMsg.handle);
S
Shengliang Guan 已提交
148 149
  if (pTrans == NULL) return -1;

S
Shengliang Guan 已提交
150
  SSdbRaw *pRedoRaw = mndUserActionEncode(&userObj);
S
Shengliang Guan 已提交
151
  if (pRedoRaw == NULL || mndTransAppendRedolog(pTrans, pRedoRaw) != 0) {
S
Shengliang Guan 已提交
152
    mError("failed to append redo log since %s", terrstr());
S
Shengliang Guan 已提交
153
    mndTransDrop(pTrans);
S
Shengliang Guan 已提交
154
    return -1;
S
Shengliang Guan 已提交
155
  }
S
Shengliang Guan 已提交
156
  sdbSetRawStatus(pRedoRaw, SDB_STATUS_CREATING);
S
Shengliang Guan 已提交
157

S
Shengliang Guan 已提交
158
  SSdbRaw *pUndoRaw = mndUserActionEncode(&userObj);
S
Shengliang Guan 已提交
159
  if (pUndoRaw == NULL || mndTransAppendUndolog(pTrans, pUndoRaw) != 0) {
S
Shengliang Guan 已提交
160
    mError("failed to append undo log since %s", terrstr());
S
Shengliang Guan 已提交
161
    mndTransDrop(pTrans);
S
Shengliang Guan 已提交
162
    return -1;
S
Shengliang Guan 已提交
163
  }
S
Shengliang Guan 已提交
164
  sdbSetRawStatus(pUndoRaw, SDB_STATUS_DROPPED);
S
Shengliang Guan 已提交
165

S
Shengliang Guan 已提交
166
  SSdbRaw *pCommitRaw = mndUserActionEncode(&userObj);
S
Shengliang Guan 已提交
167
  if (pCommitRaw == NULL || mndTransAppendCommitlog(pTrans, pCommitRaw) != 0) {
S
Shengliang Guan 已提交
168
    mError("failed to append commit log since %s", terrstr());
S
Shengliang Guan 已提交
169
    mndTransDrop(pTrans);
S
Shengliang Guan 已提交
170
    return -1;
S
Shengliang Guan 已提交
171
  }
S
Shengliang Guan 已提交
172
  sdbSetRawStatus(pCommitRaw, SDB_STATUS_READY);
S
Shengliang Guan 已提交
173

S
Shengliang Guan 已提交
174 175
  if (mndTransPrepare(pTrans, mndSyncPropose) != 0) {
    mndTransDrop(pTrans);
S
Shengliang Guan 已提交
176
    return -1;
S
Shengliang Guan 已提交
177 178
  }

S
Shengliang Guan 已提交
179
  mndTransDrop(pTrans);
S
Shengliang Guan 已提交
180
  return 0;
S
Shengliang Guan 已提交
181 182
}

183 184
static int32_t mndProcessCreateUserMsg(SMnodeMsg *pMsg) {
  SMnode         *pMnode = pMsg->pMnode;
S
Shengliang Guan 已提交
185 186 187
  SCreateUserMsg *pCreate = pMsg->rpcMsg.pCont;

  if (pCreate->user[0] == 0) {
S
Shengliang Guan 已提交
188 189 190
    terrno = TSDB_CODE_MND_INVALID_USER_FORMAT;
    mError("user:%s, failed to create since %s", pCreate->user, terrstr());
    return -1;
S
Shengliang Guan 已提交
191 192 193
  }

  if (pCreate->pass[0] == 0) {
S
Shengliang Guan 已提交
194 195 196
    terrno = TSDB_CODE_MND_INVALID_PASS_FORMAT;
    mError("user:%s, failed to create since %s", pCreate->user, terrstr());
    return -1;
S
Shengliang Guan 已提交
197 198
  }

S
Shengliang Guan 已提交
199
  SUserObj *pUser = sdbAcquire(pMnode->pSdb, SDB_USER, pCreate->user);
S
Shengliang Guan 已提交
200
  if (pUser != NULL) {
S
Shengliang Guan 已提交
201
    sdbRelease(pMnode->pSdb, pUser);
S
Shengliang Guan 已提交
202 203 204
    terrno = TSDB_CODE_MND_USER_ALREADY_EXIST;
    mError("user:%s, failed to create since %s", pCreate->user, terrstr());
    return -1;
S
Shengliang Guan 已提交
205 206
  }

S
Shengliang Guan 已提交
207
  SUserObj *pOperUser = sdbAcquire(pMnode->pSdb, SDB_USER, pMsg->user);
S
Shengliang Guan 已提交
208
  if (pOperUser == NULL) {
S
Shengliang Guan 已提交
209 210 211
    terrno = TSDB_CODE_MND_NO_USER_FROM_CONN;
    mError("user:%s, failed to create since %s", pCreate->user, terrstr());
    return -1;
S
Shengliang Guan 已提交
212 213
  }

S
Shengliang Guan 已提交
214 215
  int32_t code = mndCreateUser(pMnode, pOperUser->acct, pCreate->user, pCreate->pass, pMsg);
  sdbRelease(pMnode->pSdb, pOperUser);
S
Shengliang Guan 已提交
216 217

  if (code != 0) {
S
Shengliang Guan 已提交
218 219
    mError("user:%s, failed to create since %s", pCreate->user, terrstr());
    return -1;
S
Shengliang Guan 已提交
220 221 222 223 224
  }

  return TSDB_CODE_MND_ACTION_IN_PROGRESS;
}

S
Shengliang Guan 已提交
225
int32_t mndInitUser(SMnode *pMnode) {
S
Shengliang Guan 已提交
226 227
  SSdbTable table = {.sdbType = SDB_USER,
                     .keyType = SDB_KEY_BINARY,
S
Shengliang Guan 已提交
228 229 230 231 232 233
                     .deployFp = (SdbDeployFp)mndCreateDefaultUsers,
                     .encodeFp = (SdbEncodeFp)mndUserActionEncode,
                     .decodeFp = (SdbDecodeFp)mndUserActionDecode,
                     .insertFp = (SdbInsertFp)mndUserActionInsert,
                     .updateFp = (SdbUpdateFp)mndUserActionUpdate,
                     .deleteFp = (SdbDeleteFp)mndUserActionDelete};
S
Shengliang Guan 已提交
234

S
Shengliang Guan 已提交
235
  mndSetMsgHandle(pMnode, TSDB_MSG_TYPE_CREATE_USER, mndProcessCreateUserMsg);
S
Shengliang Guan 已提交
236

S
Shengliang Guan 已提交
237
  return sdbSetTable(pMnode->pSdb, table);
S
Shengliang Guan 已提交
238 239
}

S
Shengliang Guan 已提交
240 241 242 243 244 245 246 247 248 249 250 251
void mndCleanupUser(SMnode *pMnode) {}

SUserObj *mndAcquireUser(SMnode *pMnode, const char *userName) {
  SSdb *pSdb = pMnode->pSdb;
  return sdbAcquire(pSdb, SDB_USER, &userName);
}

void mndReleaseUser(SMnode *pMnode, SUserObj *pUser) {
  SSdb *pSdb = pMnode->pSdb;
  sdbRelease(pSdb, pUser);
}