mndUser.c 7.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 "mndSync.h"
S
Shengliang Guan 已提交
18
#include "tkey.h"
S
Shengliang Guan 已提交
19
#include "mndTrans.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 33 34
  SDB_SET_INT64(pRaw, dataPos, pUser->createdTime)
  SDB_SET_INT64(pRaw, dataPos, pUser->updateTime)
  SDB_SET_INT8(pRaw, dataPos, pUser->rootAuth)
  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 44
  if (sver != SDB_USER_VER) {
    terrno = TSDB_CODE_SDB_INVALID_DATA_VER;
S
Shengliang Guan 已提交
45 46
    return NULL;
  }
S
Shengliang Guan 已提交
47

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

S
Shengliang Guan 已提交
52 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)
  SDB_GET_INT8(pRaw, pRow, dataPos, &pUser->rootAuth)
S
Shengliang Guan 已提交
59

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

S
Shengliang Guan 已提交
63
static int32_t mndUserActionInsert(SSdb *pSdb, SUserObj *pUser) {
S
Shengliang Guan 已提交
64 65
  pUser->prohibitDbHash = taosHashInit(8, taosGetDefaultHashFunction(TSDB_DATA_TYPE_BINARY), true, HASH_ENTRY_LOCK);
  if (pUser->prohibitDbHash == NULL) {
S
Shengliang Guan 已提交
66
    terrno = TSDB_CODE_OUT_OF_MEMORY;
S
Shengliang Guan 已提交
67
    return -1;
S
Shengliang Guan 已提交
68 69
  }

S
Shengliang Guan 已提交
70
  pUser->pAcct = sdbAcquire(pSdb, SDB_ACCT, pUser->acct);
S
Shengliang Guan 已提交
71
  if (pUser->pAcct == NULL) {
S
Shengliang Guan 已提交
72 73
    terrno = TSDB_CODE_MND_ACCT_NOT_EXIST;
    return -1;
S
Shengliang Guan 已提交
74 75
  }

S
Shengliang Guan 已提交
76 77
  return 0;
}
S
Shengliang Guan 已提交
78

S
Shengliang Guan 已提交
79
static int32_t mndUserActionDelete(SSdb *pSdb, SUserObj *pUser) {
S
Shengliang Guan 已提交
80 81 82
  if (pUser->prohibitDbHash) {
    taosHashCleanup(pUser->prohibitDbHash);
    pUser->prohibitDbHash = NULL;
S
Shengliang Guan 已提交
83 84
  }

S
Shengliang Guan 已提交
85
  if (pUser->acct != NULL) {
S
Shengliang Guan 已提交
86
    sdbRelease(pSdb, pUser->pAcct);
S
Shengliang Guan 已提交
87
    pUser->pAcct = NULL;
S
Shengliang Guan 已提交
88 89
  }

S
Shengliang Guan 已提交
90 91 92
  return 0;
}

S
Shengliang Guan 已提交
93
static int32_t mndUserActionUpdate(SSdb *pSdb, SUserObj *pSrcUser, SUserObj *pDstUser) {
S
Shengliang Guan 已提交
94 95 96
  SUserObj tObj;
  int32_t  len = (int32_t)((int8_t *)tObj.prohibitDbHash - (int8_t *)&tObj);
  memcpy(pDstUser, pSrcUser, len);
S
Shengliang Guan 已提交
97 98 99
  return 0;
}

S
Shengliang Guan 已提交
100
static int32_t mndCreateDefaultUser(SMnode *pMnode, char *acct, char *user, char *pass) {
S
Shengliang Guan 已提交
101 102 103 104 105
  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 已提交
106
  userObj.updateTime = userObj.createdTime;
S
Shengliang Guan 已提交
107 108 109

  if (strcmp(user, TSDB_DEFAULT_USER) == 0) {
    userObj.rootAuth = 1;
S
Shengliang Guan 已提交
110 111
  }

S
Shengliang Guan 已提交
112
  SSdbRaw *pRaw = mndUserActionEncode(&userObj);
S
Shengliang Guan 已提交
113
  if (pRaw == NULL) return -1;
S
Shengliang Guan 已提交
114
  sdbSetRawStatus(pRaw, SDB_STATUS_READY);
S
Shengliang Guan 已提交
115

S
Shengliang Guan 已提交
116
  return sdbWrite(pMnode->pSdb, pRaw);
S
Shengliang Guan 已提交
117
}
S
Shengliang Guan 已提交
118

S
Shengliang Guan 已提交
119 120
static int32_t mndCreateDefaultUsers(SMnode *pMnode) {
  if (mndCreateDefaultUser(pMnode, TSDB_DEFAULT_USER, TSDB_DEFAULT_USER, TSDB_DEFAULT_PASS) != 0) {
S
Shengliang Guan 已提交
121 122
    return -1;
  }
S
Shengliang Guan 已提交
123

S
Shengliang Guan 已提交
124
  if (mndCreateDefaultUser(pMnode, TSDB_DEFAULT_USER, "_" TSDB_DEFAULT_USER, TSDB_DEFAULT_PASS) != 0) {
S
Shengliang Guan 已提交
125 126
    return -1;
  }
S
Shengliang Guan 已提交
127

S
Shengliang Guan 已提交
128
  return 0;
S
Shengliang Guan 已提交
129 130
}

S
Shengliang Guan 已提交
131
static int32_t mndCreateUser(SMnode *pMnode, char *acct, char *user, char *pass, SMnodeMsg *pMsg) {
S
Shengliang Guan 已提交
132 133 134 135 136 137 138 139
  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;
  userObj.rootAuth = 0;

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

S
Shengliang Guan 已提交
143
  SSdbRaw *pRedoRaw = mndUserActionEncode(&userObj);
S
Shengliang Guan 已提交
144
  if (pRedoRaw == NULL || mndTransAppendRedolog(pTrans, pRedoRaw) != 0) {
S
Shengliang Guan 已提交
145
    mError("failed to append redo log since %s", terrstr());
S
Shengliang Guan 已提交
146
    mndTransDrop(pTrans);
S
Shengliang Guan 已提交
147
    return -1;
S
Shengliang Guan 已提交
148
  }
S
Shengliang Guan 已提交
149
  sdbSetRawStatus(pRedoRaw, SDB_STATUS_CREATING);
S
Shengliang Guan 已提交
150

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

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

S
Shengliang Guan 已提交
167 168
  if (mndTransPrepare(pTrans, mndSyncPropose) != 0) {
    mndTransDrop(pTrans);
S
Shengliang Guan 已提交
169
    return -1;
S
Shengliang Guan 已提交
170 171
  }

S
Shengliang Guan 已提交
172
  mndTransDrop(pTrans);
S
Shengliang Guan 已提交
173
  return 0;
S
Shengliang Guan 已提交
174 175
}

S
Shengliang Guan 已提交
176
static int32_t mndProcessCreateUserMsg(SMnode *pMnode, SMnodeMsg *pMsg) {
S
Shengliang Guan 已提交
177 178 179
  SCreateUserMsg *pCreate = pMsg->rpcMsg.pCont;

  if (pCreate->user[0] == 0) {
S
Shengliang Guan 已提交
180 181 182
    terrno = TSDB_CODE_MND_INVALID_USER_FORMAT;
    mError("user:%s, failed to create since %s", pCreate->user, terrstr());
    return -1;
S
Shengliang Guan 已提交
183 184 185
  }

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

S
Shengliang Guan 已提交
191
  SUserObj *pUser = sdbAcquire(pMnode->pSdb, SDB_USER, pCreate->user);
S
Shengliang Guan 已提交
192
  if (pUser != NULL) {
S
Shengliang Guan 已提交
193
    sdbRelease(pMnode->pSdb, pUser);
S
Shengliang Guan 已提交
194 195 196
    terrno = TSDB_CODE_MND_USER_ALREADY_EXIST;
    mError("user:%s, failed to create since %s", pCreate->user, terrstr());
    return -1;
S
Shengliang Guan 已提交
197 198
  }

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

S
Shengliang Guan 已提交
206 207
  int32_t code = mndCreateUser(pMnode, pOperUser->acct, pCreate->user, pCreate->pass, pMsg);
  sdbRelease(pMnode->pSdb, pOperUser);
S
Shengliang Guan 已提交
208 209

  if (code != 0) {
S
Shengliang Guan 已提交
210 211
    mError("user:%s, failed to create since %s", pCreate->user, terrstr());
    return -1;
S
Shengliang Guan 已提交
212 213 214 215 216
  }

  return TSDB_CODE_MND_ACTION_IN_PROGRESS;
}

S
Shengliang Guan 已提交
217
int32_t mndInitUser(SMnode *pMnode) {
S
Shengliang Guan 已提交
218 219
  SSdbTable table = {.sdbType = SDB_USER,
                     .keyType = SDB_KEY_BINARY,
S
Shengliang Guan 已提交
220 221 222 223 224 225
                     .deployFp = (SdbDeployFp)mndCreateDefaultUsers,
                     .encodeFp = (SdbEncodeFp)mndUserActionEncode,
                     .decodeFp = (SdbDecodeFp)mndUserActionDecode,
                     .insertFp = (SdbInsertFp)mndUserActionInsert,
                     .updateFp = (SdbUpdateFp)mndUserActionUpdate,
                     .deleteFp = (SdbDeleteFp)mndUserActionDelete};
S
Shengliang Guan 已提交
226

S
Shengliang Guan 已提交
227
  mndSetMsgHandle(pMnode, TSDB_MSG_TYPE_CREATE_USER, mndProcessCreateUserMsg);
S
Shengliang Guan 已提交
228

S
Shengliang Guan 已提交
229
  return sdbSetTable(pMnode->pSdb, table);
S
Shengliang Guan 已提交
230 231
}

S
Shengliang Guan 已提交
232
void mndCleanupUser(SMnode *pMnode) {}