1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
|
/* Copyright (c) 2000, 2025, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0,
as published by the Free Software Foundation.
This program is designed to work with certain software (including
but not limited to OpenSSL) that is licensed under separate terms,
as designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have either included with
the program or referenced in the documentation.
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. See the
GNU General Public License, version 2.0, for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
/* Internals */
#ifndef AUTH_INTERNAL_INCLUDED
#define AUTH_INTERNAL_INCLUDED
#include <map>
#include <set>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include "mysql_time.h" /* MYSQL_TIME */
#include "sql/auth/auth_common.h"
#include "sql/auth/dynamic_privilege_table.h"
#include "sql/auth/partitioned_rwlock.h"
#include "sql/auth/sql_mfa.h" /* I_multi_factor_auth */
#include "sql/auth/user_table.h"
#include "sql/sql_audit.h"
#include "sql/table.h"
#include "violite.h" /* SSL_type */
class ACL_USER;
class ACL_PROXY_USER;
class GRANT_NAME;
class GRANT_TABLE;
class GRANT_COLUMN;
class Json_object;
class Json_wrapper;
class Restrictions;
struct TABLE;
class Rewrite_params;
typedef struct user_resources USER_RESOURCES;
void append_identifier(const THD *thd, String *packet, const char *name,
size_t length);
typedef std::map<std::string, Access_bitmask> Column_map;
struct Grant_table_aggregate {
Grant_table_aggregate() : table_access(0l), cols(0l) {}
Access_bitmask table_access;
Access_bitmask cols;
Column_map columns;
};
typedef std::map<std::string, Access_bitmask> SP_access_map;
typedef std::map<std::string, Access_bitmask> Db_access_map;
typedef std::map<std::string, Grant_table_aggregate> Table_access_map_storage;
class Table_access_map {
public:
Table_access_map() : m_thd(nullptr) {}
typedef Table_access_map_storage::iterator iterator;
typedef Table_access_map_storage::value_type value_type;
typedef Table_access_map_storage::mapped_type mapped_type;
mapped_type &operator[](const Table_access_map_storage::key_type &key) {
return m_values[key];
}
iterator begin() { return m_values.begin(); }
iterator end() { return m_values.end(); }
iterator find(const Table_access_map_storage::key_type &key) {
return m_values.find(key);
}
void set_thd(THD *thd) { m_thd = thd; }
THD *get_thd() { return m_thd; }
private:
THD *m_thd;
Table_access_map_storage m_values;
};
typedef std::unordered_set<std::string> Grant_acl_set;
std::string create_authid_str_from(const LEX_USER *user);
std::string create_authid_str_from(const ACL_USER *user);
std::string create_authid_str_from(const Auth_id_ref &user);
Auth_id_ref create_authid_from(const LEX_USER *user);
Auth_id_ref create_authid_from(const ACL_USER *user);
std::string get_one_priv(Access_bitmask &revoke_privs);
/* sql_authentication */
class Rsa_authentication_keys;
extern Rsa_authentication_keys *g_sha256_rsa_keys;
extern Rsa_authentication_keys *g_caching_sha2_rsa_keys;
extern char *caching_sha2_rsa_private_key_path;
extern char *caching_sha2_rsa_public_key_path;
extern bool caching_sha2_auto_generate_rsa_keys;
class Auth_id;
template <typename K, typename V>
class Map_with_rw_lock;
extern Map_with_rw_lock<Auth_id, uint> *unknown_accounts;
void optimize_plugin_compare_by_pointer(LEX_CSTRING *plugin_name);
bool auth_plugin_is_built_in(const char *plugin_name);
bool auth_plugin_supports_expiration(const char *plugin_name);
const ACL_internal_table_access *get_cached_table_access(
GRANT_INTERNAL_INFO *grant_internal_info, const char *schema_name,
const char *table_name);
/* sql_auth_cache */
ulong get_sort(uint count, ...);
bool assert_acl_cache_read_lock(THD *thd);
bool assert_acl_cache_write_lock(THD *thd);
/*sql_authentication */
bool sha256_rsa_auth_status();
/* sql_auth_cache */
void rebuild_check_host(void);
ACL_USER *find_acl_user(const char *host, const char *user, bool exact);
ACL_PROXY_USER *acl_find_proxy_user(const char *user, const char *host,
const char *ip, char *authenticated_as,
bool *proxy_used);
void acl_insert_proxy_user(ACL_PROXY_USER *new_value);
void acl_update_user(const char *user, const char *host, enum SSL_type ssl_type,
const char *ssl_cipher, const char *x509_issuer,
const char *x509_subject, USER_RESOURCES *mqh,
Access_bitmask privileges, const LEX_CSTRING &plugin,
const LEX_CSTRING &auth, const std::string &second_auth,
const MYSQL_TIME &password_change_time,
const LEX_ALTER &password_life, Restrictions &restrictions,
acl_table::Pod_user_what_to_update &what_to_update,
uint failed_login_attempts, int password_lock_time,
const I_multi_factor_auth *mfa);
void acl_users_add_one(const char *user, const char *host,
enum SSL_type ssl_type, const char *ssl_cipher,
const char *x509_issuer, const char *x509_subject,
USER_RESOURCES *mqh, Access_bitmask privileges,
const LEX_CSTRING &plugin, const LEX_CSTRING &auth,
const LEX_CSTRING &second_auth,
const MYSQL_TIME &password_change_time,
const LEX_ALTER &password_life, bool add_role_vertex,
Restrictions &restrictions, uint failed_login_attempts,
int password_lock_time, const I_multi_factor_auth *mfa,
THD *thd [[maybe_unused]]);
void acl_insert_user(THD *thd, const char *user, const char *host,
enum SSL_type ssl_type, const char *ssl_cipher,
const char *x509_issuer, const char *x509_subject,
USER_RESOURCES *mqh, Access_bitmask privileges,
const LEX_CSTRING &plugin, const LEX_CSTRING &auth,
const MYSQL_TIME &password_change_time,
const LEX_ALTER &password_life, Restrictions &restrictions,
uint failed_login_attempts, int password_lock_time,
const I_multi_factor_auth *mfa);
void acl_update_proxy_user(ACL_PROXY_USER *new_value, bool is_revoke);
void acl_update_db(const char *user, const char *host, const char *db,
Access_bitmask privileges);
void acl_insert_db(const char *user, const char *host, const char *db,
Access_bitmask privileges);
bool update_sctx_cache(Security_context *sctx, ACL_USER *acl_user_ptr,
bool expired);
bool do_update_sctx(Security_context *sctx, LEX_USER *from_user);
void update_sctx(Security_context *sctx, LEX_USER *to_user);
void clear_and_init_db_cache();
bool acl_reload(THD *thd, bool mdl_locked,
bool preserve_temporary_account_locking,
Lock_state_list *modified_user_lock_state_list);
bool grant_reload(THD *thd, bool mdl_locked);
void clean_user_cache();
bool set_user_salt(ACL_USER *acl_user);
void append_auth_id(const THD *thd, ACL_USER *acl_user, String *str);
/* sql_user_table */
Access_bitmask get_access(TABLE *form, uint fieldnr, uint *next_field);
int replace_db_table(THD *thd, TABLE *table, const char *db,
const LEX_USER &combo, Access_bitmask rights,
bool revoke_grant);
int replace_proxies_priv_table(THD *thd, TABLE *table, const LEX_USER *user,
const LEX_USER *proxied_user,
bool with_grant_arg, bool revoke_grant);
int replace_column_table(THD *thd, GRANT_TABLE *g_t, TABLE *table,
const LEX_USER &combo, List<LEX_COLUMN> &columns,
const char *db, const char *table_name,
Access_bitmask rights, bool revoke_grant);
int replace_table_table(THD *thd, GRANT_TABLE *grant_table,
std::unique_ptr<GRANT_TABLE, Destroy_only<GRANT_TABLE>>
*deleted_grant_table,
TABLE *table, const LEX_USER &combo, const char *db,
const char *table_name, Access_bitmask rights,
Access_bitmask col_rights, bool revoke_grant);
int replace_routine_table(THD *thd, GRANT_NAME *grant_name, TABLE *table,
const LEX_USER &combo, const char *db,
const char *routine_name, bool is_proc,
Access_bitmask rights, bool revoke_grant);
int open_grant_tables(THD *thd, Table_ref *tables, bool *transactional_tables);
void acl_tables_setup_for_read(Table_ref *tables);
void acl_print_ha_error(int handler_error);
bool check_engine_type_for_acl_table(Table_ref *tables, bool report_error);
bool log_and_commit_acl_ddl(
THD *thd, bool transactional_tables,
std::set<LEX_USER *> *extra_users = nullptr,
Rewrite_params *rewrite_params = nullptr, bool extra_error = false,
bool log_to_binlog = true,
Lock_state_list *modified_user_lock_state_list = nullptr);
void acl_notify_htons(THD *thd, enum_sql_command operation,
const List<LEX_USER> *users,
std::set<LEX_USER *> *rewrite_users = nullptr,
const List<LEX_CSTRING> *dynamic_privs = nullptr);
/* sql_authorization */
bool is_privileged_user_for_credential_change(THD *thd);
void rebuild_vertex_index(THD *thd);
void default_roles_init(void);
void default_roles_delete(void);
void roles_graph_init(void);
void roles_graph_delete(void);
void roles_init(void);
void roles_delete(void);
void dynamic_privileges_init(void);
void dynamic_privileges_delete(void);
bool grant_dynamic_privilege(const LEX_CSTRING &str_priv,
const LEX_CSTRING &str_user,
const LEX_CSTRING &str_host,
bool with_grant_option,
Update_dynamic_privilege_table &func);
bool revoke_dynamic_privilege(const LEX_CSTRING &str_priv,
const LEX_CSTRING &str_user,
const LEX_CSTRING &str_host,
Update_dynamic_privilege_table &update_table);
bool revoke_all_dynamic_privileges(const LEX_CSTRING &user,
const LEX_CSTRING &host,
Update_dynamic_privilege_table &func);
bool rename_dynamic_grant(const LEX_CSTRING &old_user,
const LEX_CSTRING &old_host,
const LEX_CSTRING &new_user,
const LEX_CSTRING &new_host,
Update_dynamic_privilege_table &update_table);
bool grant_grant_option_for_all_dynamic_privileges(
const LEX_CSTRING &str_user, const LEX_CSTRING &str_host,
Update_dynamic_privilege_table &func);
bool revoke_grant_option_for_all_dynamic_privileges(
const LEX_CSTRING &str_user, const LEX_CSTRING &str_host,
Update_dynamic_privilege_table &func);
bool grant_dynamic_privileges_to_auth_id(
const Role_id &id, const std::vector<std::string> &priv_list);
void revoke_dynamic_privileges_from_auth_id(
const Role_id &id, const std::vector<std::string> &priv_list);
bool operator==(const Role_id &a, const Auth_id_ref &b);
bool operator==(const Auth_id_ref &a, const Role_id &b);
bool operator==(const std::pair<const Role_id, Role_id> &a,
const Auth_id_ref &b);
bool operator==(const Role_id &a, const Role_id &b);
bool operator==(std::pair<const Role_id, std::pair<std::string, bool>> &a,
const std::string &b);
typedef std::vector<std::pair<Role_id, bool>> List_of_granted_roles;
struct role_id_hash {
std::size_t operator()(const Role_id &k) const {
using std::hash;
using std::size_t;
using std::string;
return ((hash<string>()(k.user()) ^ (hash<string>()(k.host()) << 1)) >> 1);
}
};
typedef std::unordered_multimap<Role_id, Role_id, role_id_hash> Default_roles;
typedef std::map<std::string, bool> Dynamic_privileges;
void get_privilege_access_maps(
ACL_USER *acl_user, const List_of_auth_id_refs *using_roles,
Access_bitmask *access, Db_access_map *db_map, Db_access_map *db_wild_map,
Table_access_map *table_map, SP_access_map *sp_map, SP_access_map *func_map,
List_of_granted_roles *granted_roles, Grant_acl_set *with_admin_acl,
Dynamic_privileges *dynamic_acl, Restrictions &restrictions);
bool clear_default_roles(THD *thd, TABLE *table,
const Auth_id_ref &user_auth_id,
std::vector<Role_id> *default_roles);
void get_granted_roles(LEX_USER *user, List_of_granted_roles *granted_roles);
bool drop_default_role_policy(THD *thd, TABLE *table,
const Auth_id_ref &default_role_policy,
const Auth_id_ref &user);
void revoke_role(THD *thd, ACL_USER *role, ACL_USER *user);
bool revoke_all_roles_from_user(THD *thd, TABLE *edge_table,
TABLE *defaults_table, LEX_USER *user);
bool drop_role(THD *thd, TABLE *edge_table, TABLE *defaults_table,
const Auth_id_ref &authid_user);
bool modify_role_edges_in_table(THD *thd, TABLE *table,
const Auth_id_ref &from_user,
const Auth_id_ref &to_user,
bool with_admin_option, bool delete_option);
Auth_id_ref create_authid_from(const Role_id &user);
Auth_id_ref create_authid_from(const LEX_CSTRING &user,
const LEX_CSTRING &host);
bool roles_rename_authid(THD *thd, TABLE *edge_table, TABLE *defaults_table,
LEX_USER *user_from, LEX_USER *user_to);
bool set_and_validate_user_attributes(
THD *thd, LEX_USER *Str, acl_table::Pod_user_what_to_update &what_to_set,
bool is_privileged_user, bool is_role, Table_ref *history_table,
bool *history_check_done, const char *cmd, Userhostpassword_list &,
I_multi_factor_auth **mfa = nullptr, bool if_not_exists = false);
typedef std::pair<std::string, bool> Grant_privilege;
typedef std::unordered_multimap<Role_id, Grant_privilege, role_id_hash>
User_to_dynamic_privileges_map;
User_to_dynamic_privileges_map *get_dynamic_privileges_map();
User_to_dynamic_privileges_map *swap_dynamic_privileges_map(
User_to_dynamic_privileges_map *map);
bool populate_roles_caches(THD *thd, Table_ref *tablelst);
void grant_role(ACL_USER *role, const ACL_USER *user, bool with_admin_opt);
void get_mandatory_roles(std::vector<Role_id> *mandatory_roles);
extern std::vector<Role_id> *g_mandatory_roles;
void create_role_vertex(ACL_USER *role_acl_user);
void activate_all_granted_roles(const ACL_USER *acl_user,
Security_context *sctx);
void activate_all_granted_and_mandatory_roles(const ACL_USER *acl_user,
Security_context *sctx);
bool alter_user_set_default_roles(THD *thd, TABLE *table, LEX_USER *user,
const List_of_auth_id_refs &new_auth_ids);
bool alter_user_set_default_roles_all(THD *thd, TABLE *def_role_table,
LEX_USER *user);
/*
Checks if any of the users has SYSTEM_USER privilege then current user
must also have SYSTEM_USER privilege.
It is a wrapper over the Privilege_checker class that does
privilege checks for one user at a time.
*/
bool check_system_user_privilege(THD *thd, List<LEX_USER> list);
bool read_user_application_user_metadata_from_table(LEX_CSTRING user,
LEX_CSTRING host,
String *metadata_str,
TABLE *table,
bool mode_no_backslash);
bool is_expected_or_transient_error(THD *thd);
bool report_missing_user_grant_message(THD *thd, bool user_exists,
const char *user, const char *host,
const char *object_name, int err_code);
#endif /* AUTH_INTERNAL_INCLUDED */
|