MySQL 8.4.0
Source Code Documentation
auth_common.h
Go to the documentation of this file.
1/* Copyright (c) 2000, 2024, Oracle and/or its affiliates.
2
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License, version 2.0,
5 as published by the Free Software Foundation.
6
7 This program is designed to work with certain software (including
8 but not limited to OpenSSL) that is licensed under separate terms,
9 as designated in a particular file or component or in included license
10 documentation. The authors of MySQL hereby grant you an additional
11 permission to link the program and your derivative works with the
12 separately licensed software that they have either included with
13 the program or referenced in the documentation.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License, version 2.0, for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
23
24#ifndef AUTH_COMMON_INCLUDED
25#define AUTH_COMMON_INCLUDED
26
27#include <assert.h>
28#include <stddef.h>
29#include <stdint.h>
30#include <sys/types.h>
31#include <functional>
32#include <list>
33#include <memory>
34#include <string>
35#include <utility>
36#include <vector>
37
38#include "lex_string.h"
39#include "my_command.h"
40
41#include "my_hostname.h" // HOSTNAME_LENGTH
42#include "my_inttypes.h"
43#include "mysql_com.h" // USERNAME_LENGTH
44#include "template_utils.h"
45
46#include <openssl/rsa.h>
47
48/* Forward Declarations */
49class Alter_info;
51class Item;
52class LEX_COLUMN;
53class String;
54class THD;
55struct CHARSET_INFO;
56struct GRANT_INFO;
58struct HA_CREATE_INFO;
59struct LEX_USER;
60template <class T>
61class List;
62typedef struct user_conn USER_CONN;
64class ACL_USER;
65struct TABLE;
66struct MEM_ROOT;
67class Table_ref;
68enum class role_enum;
69enum class Consumer_type;
70class LEX_GRANT_AS;
71
72namespace consts {
73extern const std::string mysql;
74extern const std::string system_user;
75extern const std::string connection_admin;
76} // namespace consts
77
78/** user, host tuple which reference either acl_cache or g_default_roles */
79typedef std::pair<LEX_CSTRING, LEX_CSTRING> Auth_id_ref;
80typedef std::vector<Auth_id_ref> List_of_auth_id_refs;
81
82bool operator<(const Auth_id_ref &a, const Auth_id_ref &b);
83
85 /**
86 Access granted for all the requested privileges,
87 do not use the grant tables.
88 This flag is used only for the INFORMATION_SCHEMA privileges,
89 for compatibility reasons.
90 */
92 /** Access denied, do not use the grant tables. */
94 /** No decision yet, use the grant tables. */
96};
97
98/* Classes */
99
100/**
101 Per internal table ACL access rules.
102 This class is an interface.
103 Per table(s) specific access rule should be implemented in a subclass.
104 @sa ACL_internal_schema_access
105*/
107 public:
109
110 virtual ~ACL_internal_table_access() = default;
111
112 /**
113 Check access to an internal table.
114 When a privilege is granted, this method add the requested privilege
115 to save_priv.
116 @param want_access the privileges requested
117 @param [in, out] save_priv the privileges granted
118 @param any_combination_will_do true if it's enough to have any privilege
119 for any combination of the table columns.
120 @retval ACL_INTERNAL_ACCESS_GRANTED All the requested privileges
121 are granted, and saved in save_priv.
122 @retval ACL_INTERNAL_ACCESS_DENIED At least one of the requested
123 privileges was denied.
124 @retval ACL_INTERNAL_ACCESS_CHECK_GRANT No requested privilege
125 was denied, and grant should be checked for at least one
126 privilege. Requested privileges that are granted, if any, are saved
127 in save_priv.
128 */
130 ulong want_access, ulong *save_priv,
131 bool any_combination_will_do) const = 0;
132};
133
134/**
135 Per internal schema ACL access rules.
136 This class is an interface.
137 Each per schema specific access rule should be implemented
138 in a different subclass, and registered.
139 Per schema access rules can control:
140 - every schema privileges on schema.*
141 - every table privileges on schema.table
142 @sa ACL_internal_schema_registry
143*/
145 public:
147
148 virtual ~ACL_internal_schema_access() = default;
149
150 /**
151 Check access to an internal schema.
152 @param want_access the privileges requested
153 @param [in, out] save_priv the privileges granted
154 @param any_combination_will_do true if it's enough to have any privilege
155 for any combination of the table columns.
156 @retval ACL_INTERNAL_ACCESS_GRANTED All the requested privileges
157 are granted, and saved in save_priv.
158 @retval ACL_INTERNAL_ACCESS_DENIED At least one of the requested
159 privileges was denied.
160 @retval ACL_INTERNAL_ACCESS_CHECK_GRANT No requested privilege
161 was denied, and grant should be checked for at least one
162 privilege. Requested privileges that are granted, if any, are saved
163 in save_priv.
164 */
166 ulong want_access, ulong *save_priv,
167 bool any_combination_will_do) const = 0;
168
169 /**
170 Search for per table ACL access rules by table name.
171 @param name the table name
172 @return per table access rules, or NULL
173 */
174 virtual const ACL_internal_table_access *lookup(const char *name) const = 0;
175};
176
177/**
178 A registry for per internal schema ACL.
179 An 'internal schema' is a database schema maintained by the
180 server implementation, such as 'performance_schema' and 'INFORMATION_SCHEMA'.
181*/
183 public:
184 static void register_schema(const LEX_CSTRING &name,
185 const ACL_internal_schema_access *access);
186 static const ACL_internal_schema_access *lookup(const char *name);
187};
188
189/**
190 Extension of ACL_internal_schema_access for Information Schema
191*/
193 public:
195
196 ~IS_internal_schema_access() override = default;
197
198 ACL_internal_access_result check(ulong want_access, ulong *save_priv,
199 bool any_combination_will_do) const override;
200
201 const ACL_internal_table_access *lookup(const char *name) const override;
202};
203
204/* Data Structures */
205
206extern const std::vector<std::string> global_acls_vector;
207
233
288
299
311
322
334
343
351
359
367
368/* When we run mysql_upgrade we must make sure that the server can be run
369 using previous mysql.user table schema during acl_load.
370
371 User_table_schema is a common interface for the current and the
372 previous mysql.user table schema.
373 */
375 public:
376 virtual uint host_idx() = 0;
377 virtual uint user_idx() = 0;
378 virtual uint password_idx() = 0;
379 virtual uint select_priv_idx() = 0;
380 virtual uint insert_priv_idx() = 0;
381 virtual uint update_priv_idx() = 0;
382 virtual uint delete_priv_idx() = 0;
383 virtual uint create_priv_idx() = 0;
384 virtual uint drop_priv_idx() = 0;
385 virtual uint reload_priv_idx() = 0;
386 virtual uint shutdown_priv_idx() = 0;
387 virtual uint process_priv_idx() = 0;
388 virtual uint file_priv_idx() = 0;
389 virtual uint grant_priv_idx() = 0;
390 virtual uint references_priv_idx() = 0;
391 virtual uint index_priv_idx() = 0;
392 virtual uint alter_priv_idx() = 0;
393 virtual uint show_db_priv_idx() = 0;
394 virtual uint super_priv_idx() = 0;
395 virtual uint create_tmp_table_priv_idx() = 0;
396 virtual uint lock_tables_priv_idx() = 0;
397 virtual uint execute_priv_idx() = 0;
398 virtual uint repl_slave_priv_idx() = 0;
399 virtual uint repl_client_priv_idx() = 0;
400 virtual uint create_view_priv_idx() = 0;
401 virtual uint show_view_priv_idx() = 0;
402 virtual uint create_routine_priv_idx() = 0;
403 virtual uint alter_routine_priv_idx() = 0;
404 virtual uint create_user_priv_idx() = 0;
405 virtual uint event_priv_idx() = 0;
406 virtual uint trigger_priv_idx() = 0;
407 virtual uint create_tablespace_priv_idx() = 0;
408 virtual uint create_role_priv_idx() = 0;
409 virtual uint drop_role_priv_idx() = 0;
410 virtual uint ssl_type_idx() = 0;
411 virtual uint ssl_cipher_idx() = 0;
412 virtual uint x509_issuer_idx() = 0;
413 virtual uint x509_subject_idx() = 0;
414 virtual uint max_questions_idx() = 0;
415 virtual uint max_updates_idx() = 0;
416 virtual uint max_connections_idx() = 0;
417 virtual uint max_user_connections_idx() = 0;
418 virtual uint plugin_idx() = 0;
419 virtual uint authentication_string_idx() = 0;
420 virtual uint password_expired_idx() = 0;
421 virtual uint password_last_changed_idx() = 0;
422 virtual uint password_lifetime_idx() = 0;
423 virtual uint account_locked_idx() = 0;
424 virtual uint password_reuse_history_idx() = 0;
425 virtual uint password_reuse_time_idx() = 0;
426 // Added in 8.0.13
428 // Added in 8.0.14
429 virtual uint user_attributes_idx() = 0;
430
431 virtual ~User_table_schema() = default;
432};
433
434/*
435 This class describes indices for the current mysql.user table schema.
436 */
438 public:
439 uint host_idx() override { return MYSQL_USER_FIELD_HOST; }
440 uint user_idx() override { return MYSQL_USER_FIELD_USER; }
441 // not available
442 uint password_idx() override {
443 assert(0);
445 }
451 uint drop_priv_idx() override { return MYSQL_USER_FIELD_DROP_PRIV; }
455 uint file_priv_idx() override { return MYSQL_USER_FIELD_FILE_PRIV; }
456 uint grant_priv_idx() override { return MYSQL_USER_FIELD_GRANT_PRIV; }
457 uint references_priv_idx() override {
459 }
460 uint index_priv_idx() override { return MYSQL_USER_FIELD_INDEX_PRIV; }
461 uint alter_priv_idx() override { return MYSQL_USER_FIELD_ALTER_PRIV; }
463 uint super_priv_idx() override { return MYSQL_USER_FIELD_SUPER_PRIV; }
464 uint create_role_priv_idx() override {
466 }
470 }
471 uint lock_tables_priv_idx() override {
473 }
475 uint repl_slave_priv_idx() override {
477 }
478 uint repl_client_priv_idx() override {
480 }
481 uint create_view_priv_idx() override {
483 }
485 uint create_routine_priv_idx() override {
487 }
488 uint alter_routine_priv_idx() override {
490 }
491 uint create_user_priv_idx() override {
493 }
494 uint event_priv_idx() override { return MYSQL_USER_FIELD_EVENT_PRIV; }
498 }
499 uint ssl_type_idx() override { return MYSQL_USER_FIELD_SSL_TYPE; }
500 uint ssl_cipher_idx() override { return MYSQL_USER_FIELD_SSL_CIPHER; }
505 uint max_connections_idx() override {
507 }
508 uint max_user_connections_idx() override {
510 }
511 uint plugin_idx() override { return MYSQL_USER_FIELD_PLUGIN; }
514 }
515 uint password_expired_idx() override {
517 }
520 }
521 uint password_lifetime_idx() override {
523 }
527 }
528 uint password_reuse_time_idx() override {
530 }
533 }
534 uint user_attributes_idx() override {
536 }
537};
538
539/*
540 This class describes indices for the old mysql.user table schema.
541 */
543 public:
589 };
590
591 uint host_idx() override { return MYSQL_USER_FIELD_HOST_56; }
592 uint user_idx() override { return MYSQL_USER_FIELD_USER_56; }
593 uint password_idx() override { return MYSQL_USER_FIELD_PASSWORD_56; }
601 uint shutdown_priv_idx() override {
603 }
607 uint references_priv_idx() override {
609 }
616 }
617 uint lock_tables_priv_idx() override {
619 }
621 uint repl_slave_priv_idx() override {
623 }
624 uint repl_client_priv_idx() override {
626 }
627 uint create_view_priv_idx() override {
629 }
630 uint show_view_priv_idx() override {
632 }
633 uint create_routine_priv_idx() override {
635 }
636 uint alter_routine_priv_idx() override {
638 }
639 uint create_user_priv_idx() override {
641 }
646 }
647 uint ssl_type_idx() override { return MYSQL_USER_FIELD_SSL_TYPE_56; }
651 uint max_questions_idx() override {
653 }
655 uint max_connections_idx() override {
657 }
658 uint max_user_connections_idx() override {
660 }
661 uint plugin_idx() override { return MYSQL_USER_FIELD_PLUGIN_56; }
664 }
665 uint password_expired_idx() override {
667 }
668
669 // those fields are not available in 5.6 db schema
672 }
679 }
683 }
685};
686
688 public:
691 ? implicit_cast<User_table_schema *>(new User_table_old_schema())
692 : implicit_cast<User_table_schema *>(
694 }
695
696 virtual bool is_old_user_table_schema(TABLE *table);
697 virtual ~User_table_schema_factory() = default;
698};
699
702extern const char *any_db; // Special symbol for check_access
703/** controls the extra checks on plugin availability for mysql.user records */
704
705extern bool validate_user_plugins;
706
707/* Function Declarations */
708
709/* sql_authentication */
710void acl_log_connect(const char *user, const char *host, const char *auth_as,
711 const char *db, THD *thd,
714bool acl_check_host(THD *thd, const char *host, const char *ip);
715
716/*
717 User Attributes are the once which are defined during CREATE/ALTER/GRANT
718 statement. These attributes are divided into following categories.
719*/
720
721#define NONE_ATTR 0L
722#define DEFAULT_AUTH_ATTR (1L << 0) /* update defaults auth */
723#define PLUGIN_ATTR (1L << 1) /* update plugin */
724 /* authentication_string */
725#define SSL_ATTR (1L << 2) /* ex: SUBJECT,CIPHER.. */
726#define RESOURCE_ATTR (1L << 3) /* ex: MAX_QUERIES_PER_HOUR.. */
727#define PASSWORD_EXPIRE_ATTR (1L << 4) /* update password expire col */
728#define ACCESS_RIGHTS_ATTR (1L << 5) /* update privileges */
729#define ACCOUNT_LOCK_ATTR (1L << 6) /* update account lock status */
730#define DIFFERENT_PLUGIN_ATTR \
731 (1L << 7) /* updated plugin with a different value */
732#define USER_ATTRIBUTES (1L << 8) /* Request to update user attributes */
733
734/* sql_user */
735void log_user(THD *thd, String *str, LEX_USER *user, bool comma);
736bool check_change_password(THD *thd, const char *host, const char *user,
737 bool retain_current_password);
738bool change_password(THD *thd, LEX_USER *user, const char *password,
739 const char *current_password,
740 bool retain_current_password);
741bool mysql_create_user(THD *thd, List<LEX_USER> &list, bool if_not_exists,
742 bool is_role);
743bool mysql_alter_user(THD *thd, List<LEX_USER> &list, bool if_exists);
744bool mysql_drop_user(THD *thd, List<LEX_USER> &list, bool if_exists,
745 bool drop_role);
748
749/* sql_auth_cache */
750void init_acl_memory();
751int wild_case_compare(CHARSET_INFO *cs, const char *str, const char *wildstr);
752int wild_case_compare(CHARSET_INFO *cs, const char *str, size_t str_len,
753 const char *wildstr, size_t wildstr_len);
754bool hostname_requires_resolving(const char *hostname);
755bool acl_init(bool dont_read_acl_tables);
756bool is_acl_inited();
757void acl_free(bool end = false);
758bool check_engine_type_for_acl_table(THD *thd, bool mdl_locked);
760void grant_free(void);
761bool reload_acl_caches(THD *thd, bool mdl_locked);
762ulong acl_get(THD *thd, const char *host, const char *ip, const char *user,
763 const char *db, bool db_is_pattern);
764bool is_acl_user(THD *thd, const char *host, const char *user);
765bool acl_getroot(THD *thd, Security_context *sctx, const char *user,
766 const char *host, const char *ip, const char *db);
767bool check_acl_tables_intact(THD *thd, bool mdl_locked);
768bool check_acl_tables_intact(THD *thd, Table_ref *tables);
769void notify_flush_event(THD *thd);
771void append_auth_id_string(const THD *thd, const char *user, size_t user_len,
772 const char *host, size_t host_len, String *str);
773
774/* sql_authorization */
775bool skip_grant_tables();
777bool mysql_set_role_default(THD *thd);
778bool mysql_set_active_role_all(THD *thd, const List<LEX_USER> *except_users);
779bool mysql_set_active_role(THD *thd, const List<LEX_USER> *role_list);
780bool mysql_grant(THD *thd, const char *db, List<LEX_USER> &list, ulong rights,
781 bool revoke_grant, bool is_proxy,
782 const List<LEX_CSTRING> &dynamic_privilege,
783 bool grant_all_current_privileges, LEX_GRANT_AS *grant_as);
784bool mysql_routine_grant(THD *thd, Table_ref *table, bool is_proc,
785 List<LEX_USER> &user_list, ulong rights, bool revoke,
786 bool write_to_binlog, bool all_current_privileges);
787int mysql_table_grant(THD *thd, Table_ref *table, List<LEX_USER> &user_list,
788 List<LEX_COLUMN> &column_list, ulong rights, bool revoke,
789 bool all_current_privileges);
790bool check_grant(THD *thd, ulong want_access, Table_ref *tables,
791 bool any_combination_will_do, uint number, bool no_errors);
792bool check_grant_column(THD *thd, GRANT_INFO *grant, const char *db_name,
793 const char *table_name, const char *name, size_t length,
794 Security_context *sctx, ulong want_privilege);
795bool check_column_grant_in_table_ref(THD *thd, Table_ref *table_ref,
796 const char *name, size_t length,
797 ulong want_privilege);
798bool check_grant_all_columns(THD *thd, ulong want_access,
800bool check_grant_routine(THD *thd, ulong want_access, Table_ref *procs,
801 bool is_proc, bool no_error);
802bool check_grant_db(THD *thd, const char *db,
803 const bool check_table_grant = false);
804bool acl_check_proxy_grant_access(THD *thd, const char *host, const char *user,
805 bool with_grant);
806void get_privilege_desc(char *to, uint max_length, ulong access);
807void get_mqh(THD *thd, const char *user, const char *host, USER_CONN *uc);
808ulong get_table_grant(THD *thd, Table_ref *table);
809ulong get_column_grant(THD *thd, GRANT_INFO *grant, const char *db_name,
810 const char *table_name, const char *field_name);
811bool mysql_show_grants(THD *, LEX_USER *, const List_of_auth_id_refs &, bool,
812 bool);
813bool mysql_show_create_user(THD *thd, LEX_USER *user, bool are_both_users_same);
815bool sp_revoke_privileges(THD *thd, const char *sp_db, const char *sp_name,
816 bool is_proc);
817bool sp_grant_privileges(THD *thd, const char *sp_db, const char *sp_name,
818 bool is_proc);
820 const char *db, const char *table);
821int fill_schema_user_privileges(THD *thd, Table_ref *tables, Item *cond);
822int fill_schema_schema_privileges(THD *thd, Table_ref *tables, Item *cond);
823int fill_schema_table_privileges(THD *thd, Table_ref *tables, Item *cond);
824int fill_schema_column_privileges(THD *thd, Table_ref *tables, Item *cond);
826 GRANT_INTERNAL_INFO *grant_internal_info, const char *schema_name);
827
828bool lock_tables_precheck(THD *thd, Table_ref *tables);
829bool create_table_precheck(THD *thd, Table_ref *tables,
831bool check_fk_parent_table_access(THD *thd, HA_CREATE_INFO *create_info,
832 Alter_info *alter_info);
834 bool *fake_lock_tables_acl);
835bool check_readonly(THD *thd, bool err_if_readonly);
836void err_readonly(THD *thd);
837
839
840bool check_one_table_access(THD *thd, ulong privilege, Table_ref *tables);
841bool check_single_table_access(THD *thd, ulong privilege, Table_ref *tables,
842 bool no_errors);
843bool check_routine_access(THD *thd, ulong want_access, const char *db,
844 char *name, bool is_proc, bool no_errors);
845bool check_some_access(THD *thd, ulong want_access, Table_ref *table);
846bool has_full_view_routine_access(THD *thd, const char *db,
847 const char *definer_user,
848 const char *definer_host);
849bool has_partial_view_routine_access(THD *thd, const char *db,
850 const char *routine_name, bool is_proc);
851bool check_access(THD *thd, ulong want_access, const char *db, ulong *save_priv,
852 GRANT_INTERNAL_INFO *grant_internal_info,
853 bool dont_check_global_grants, bool no_errors);
854bool check_table_access(THD *thd, ulong requirements, Table_ref *tables,
855 bool any_combination_of_privileges_will_do, uint number,
856 bool no_errors);
858bool mysql_grant_role(THD *thd, const List<LEX_USER> *users,
859 const List<LEX_USER> *roles, bool with_admin_opt);
860bool mysql_revoke_role(THD *thd, const List<LEX_USER> *users,
861 const List<LEX_USER> *roles);
863
864bool is_granted_table_access(THD *thd, ulong required_acl, Table_ref *table);
865
867 const List<LEX_USER> *users,
868 const List<LEX_USER> *roles);
869void roles_graphml(THD *thd, String *);
870bool has_grant_role_privilege(THD *thd, const List<LEX_USER> *roles);
872std::string create_authid_str_from(const LEX_USER *user);
873std::pair<std::string, std::string> get_authid_from_quoted_string(
874 std::string str);
875void append_identifier(String *packet, const char *name, size_t length);
876bool is_role_id(LEX_USER *authid);
877void shutdown_acl_cache();
879 LEX_CSTRING role_host);
880bool is_mandatory_role(LEX_CSTRING role, LEX_CSTRING role_host,
881 bool *is_mandatory);
882bool check_global_access(THD *thd, ulong want_access);
883
884/* sql_user_table */
886bool is_acl_table_name(const char *name);
887#ifndef NDEBUG
888bool is_acl_table(const TABLE *table);
889#endif
890
897
899extern bool opt_auto_generate_certs;
900bool do_auto_cert_generation(ssl_artifacts_status auto_detection_status,
901 const char **ssl_ca, const char **ssl_key,
902 const char **ssl_cert);
903
904#define DEFAULT_SSL_CA_CERT "ca.pem"
905#define DEFAULT_SSL_CA_KEY "ca-key.pem"
906#define DEFAULT_SSL_SERVER_CERT "server-cert.pem"
907#define DEFAULT_SSL_SERVER_KEY "server-key.pem"
908
909void update_mandatory_roles(void);
910bool check_authorization_id_string(THD *thd, LEX_STRING &mandatory_roles);
911void func_current_role(const THD *thd, String *active_role);
912
914
918 virtual ~Security_context_policy() = default;
921};
922
923typedef std::function<bool(Security_context *,
926
927template <class Derived>
929 public:
930 bool operator()(Security_context *sctx, Operation op) override {
931 if (op == Precheck && static_cast<Derived *>(this)->precheck(sctx))
932 return true;
933 if (op == Execute && static_cast<Derived *>(this)->create(sctx))
934 return true;
935 return false;
936 }
937};
938
939template <class Derived>
941 public:
942 bool operator()(Security_context *sctx, Operation op) override {
943 if (op == Precheck && static_cast<Derived *>(this)->precheck(sctx))
944 return true;
945 if (op == Execute && static_cast<Derived *>(this)->grant_privileges(sctx))
946 return true;
947 return false;
948 }
949};
950
951template <typename T>
952using Sctx_ptr = std::unique_ptr<T, std::function<void(T *)>>;
953
954/**
955 Factory for creating any Security_context given a pre-constructed policy.
956*/
958 public:
959 /**
960 Default Security_context factory implementation. Given two policies and
961 a authid this class returns a Security_context.
962 @param thd The thread handle
963 @param user User name associated with auth id
964 @param host Host name associated with auth id
965 @param extend_user_profile The policy for creating the user profile
966 @param priv The policy for authorizing the authid to
967 use the server.
968 @param static_priv Static privileges for authid.
969 @param drop_policy The policy for deleting the authid and
970 revoke privileges
971 */
972 Security_context_factory(THD *thd, std::string user, std::string host,
973 Security_context_functor extend_user_profile,
975 Security_context_functor static_priv,
976 std::function<void(Security_context *)> drop_policy)
977 : m_thd(thd),
978 m_user(std::move(user)),
979 m_host(std::move(host)),
980 m_user_profile(std::move(extend_user_profile)),
981 m_privileges(std::move(priv)),
982 m_static_privileges(std::move(static_priv)),
983 m_drop_policy(std::move(drop_policy)) {}
984
986
987 private:
989
991 std::string m_user;
992 std::string m_host;
996 const std::function<void(Security_context *)> m_drop_policy;
997};
998
999class Default_local_authid : public Create_authid<Default_local_authid> {
1000 public:
1001 Default_local_authid(const THD *thd);
1002 bool precheck(Security_context *sctx);
1003 bool create(Security_context *sctx);
1004
1005 private:
1006 const THD *m_thd;
1007};
1008
1009/**
1010 Grant the privilege temporarily to the in-memory global privileges map.
1011 This class is not thread safe.
1012 */
1014 : public Grant_privileges<Grant_temporary_dynamic_privileges> {
1015 public:
1017 std::vector<std::string> privs);
1018 bool precheck(Security_context *sctx);
1020
1021 private:
1022 const THD *m_thd;
1023 const std::vector<std::string> m_privs;
1024};
1025
1027 public:
1028 explicit Drop_temporary_dynamic_privileges(std::vector<std::string> privs)
1029 : m_privs(std::move(privs)) {}
1030 void operator()(Security_context *sctx);
1031
1032 private:
1033 std::vector<std::string> m_privs;
1034};
1035
1037 : public Grant_privileges<Grant_temporary_static_privileges> {
1038 public:
1039 Grant_temporary_static_privileges(const THD *thd, const ulong privs);
1040 bool precheck(Security_context *sctx);
1042
1043 private:
1044 /** THD handle */
1045 const THD *m_thd;
1046
1047 /** Privileges */
1048 const ulong m_privs;
1049};
1050
1051bool operator==(const LEX_CSTRING &a, const LEX_CSTRING &b);
1052bool is_partial_revoke_exists(THD *thd);
1053void set_system_user_flag(THD *thd, bool check_for_main_security_ctx = false);
1055 bool check_for_main_security_ctx = false);
1056
1057/**
1058 Storage container for default auth ids. Default roles are only weakly
1059 depending on ACL_USERs. You can retain a default role even if the
1060 corresponding ACL_USER is missing in the acl_cache.
1061*/
1062class Auth_id {
1063 public:
1065 Auth_id(const char *user, size_t user_len, const char *host, size_t host_len);
1066 Auth_id(const Auth_id_ref &id);
1067 Auth_id(const LEX_CSTRING &user, const LEX_CSTRING &host);
1068 Auth_id(const std::string &user, const std::string &host);
1069 Auth_id(const LEX_USER *lex_user);
1070 Auth_id(const ACL_USER *acl_user);
1071
1073 Auth_id(const Auth_id &id);
1074 Auth_id &operator=(const Auth_id &) = default;
1075
1076 bool operator<(const Auth_id &id) const;
1077 void auth_str(std::string *out) const;
1078 std::string auth_str() const;
1079 const std::string &user() const;
1080 const std::string &host() const;
1081
1082 private:
1083 void create_key();
1084 /** User part */
1085 std::string m_user;
1086 /** Host part */
1087 std::string m_host;
1088 /**
1089 Key: Internal representation mainly to facilitate use of
1090 Auth_id class in standard container.
1091 Format: 'user\0host\0'
1092 */
1093 std::string m_key;
1094};
1095
1096/*
1097 As of now Role_id is an alias of Auth_id.
1098 We may extend the Auth_id as Role_id once
1099 more substances are added to latter.
1100*/
1102
1103/**
1104 Length of string buffer, that is enough to contain
1105 username and hostname parts of the user identifier with trailing zero in
1106 MySQL standard format:
1107 user_name_part\@host_name_part\\0
1108*/
1109static constexpr int USER_HOST_BUFF_SIZE =
1111
1113 std::string user;
1114 std::string host;
1115 std::string password;
1117};
1118
1119void generate_random_password(std::string *password, uint32_t);
1120typedef std::list<random_password_info> Userhostpassword_list;
1122 const Userhostpassword_list &generated_passwords);
1123bool lock_and_get_mandatory_roles(std::vector<Role_id> *mandatory_roles);
1125 const std::string &json_blob, bool expect_text);
1126
1127/* helper method to check if sandbox mode should be turned off or not */
1129
1130#if OPENSSL_VERSION_NUMBER >= 0x30000000L
1131bool decrypt_RSA_private_key(uchar *pkt, int cipher_length,
1132 unsigned char *plain_text, size_t plain_text_len,
1133 EVP_PKEY *private_key);
1134#else /* OPENSSL_VERSION_NUMBER >= 0x30000000L */
1135bool decrypt_RSA_private_key(uchar *pkt, int cipher_length,
1136 unsigned char *plain_text, size_t plain_text_len,
1137 RSA *private_key);
1138#endif /* OPENSSL_VERSION_NUMBER >= 0x30000000L */
1139
1140#endif /* AUTH_COMMON_INCLUDED */
mysql_dynamic_priv_table_field
Definition: auth_common.h:360
@ MYSQL_DYNAMIC_PRIV_FIELD_PRIV
Definition: auth_common.h:363
@ MYSQL_DYNAMIC_PRIV_FIELD_HOST
Definition: auth_common.h:362
@ MYSQL_DYNAMIC_PRIV_FIELD_USER
Definition: auth_common.h:361
@ MYSQL_DYNAMIC_PRIV_FIELD_COUNT
Definition: auth_common.h:365
@ MYSQL_DYNAMIC_PRIV_FIELD_WITH_GRANT_OPTION
Definition: auth_common.h:364
mysql_columns_priv_table_field
Definition: auth_common.h:312
@ MYSQL_COLUMNS_PRIV_FIELD_COLUMN_NAME
Definition: auth_common.h:317
@ MYSQL_COLUMNS_PRIV_FIELD_HOST
Definition: auth_common.h:313
@ MYSQL_COLUMNS_PRIV_FIELD_COLUMN_PRIV
Definition: auth_common.h:319
@ MYSQL_COLUMNS_PRIV_FIELD_TABLE_NAME
Definition: auth_common.h:316
@ MYSQL_COLUMNS_PRIV_FIELD_COUNT
Definition: auth_common.h:320
@ MYSQL_COLUMNS_PRIV_FIELD_DB
Definition: auth_common.h:314
@ MYSQL_COLUMNS_PRIV_FIELD_USER
Definition: auth_common.h:315
@ MYSQL_COLUMNS_PRIV_FIELD_TIMESTAMP
Definition: auth_common.h:318
void roles_graphml(THD *thd, String *)
Definition: sql_authorization.cc:4893
bool mysql_routine_grant(THD *thd, Table_ref *table, bool is_proc, List< LEX_USER > &user_list, ulong rights, bool revoke, bool write_to_binlog, bool all_current_privileges)
Store routine level grants in the privilege tables.
Definition: sql_authorization.cc:2917
bool check_fk_parent_table_access(THD *thd, HA_CREATE_INFO *create_info, Alter_info *alter_info)
Checks foreign key's parent table access.
Definition: sql_authorization.cc:5926
mysql_procs_priv_table_field
Definition: auth_common.h:300
@ MYSQL_PROCS_PRIV_FIELD_PROC_PRIV
Definition: auth_common.h:307
@ MYSQL_PROCS_PRIV_FIELD_ROUTINE_NAME
Definition: auth_common.h:304
@ MYSQL_PROCS_PRIV_FIELD_COUNT
Definition: auth_common.h:309
@ MYSQL_PROCS_PRIV_FIELD_HOST
Definition: auth_common.h:301
@ MYSQL_PROCS_PRIV_FIELD_DB
Definition: auth_common.h:302
@ MYSQL_PROCS_PRIV_FIELD_ROUTINE_TYPE
Definition: auth_common.h:305
@ MYSQL_PROCS_PRIV_FIELD_GRANTOR
Definition: auth_common.h:306
@ MYSQL_PROCS_PRIV_FIELD_USER
Definition: auth_common.h:303
@ MYSQL_PROCS_PRIV_FIELD_TIMESTAMP
Definition: auth_common.h:308
bool acl_check_host(THD *thd, const char *host, const char *ip)
Definition: sql_authentication.cc:2142
bool lock_tables_precheck(THD *thd, Table_ref *tables)
Check privileges for LOCK TABLES statement.
Definition: sql_authorization.cc:1717
bool skip_grant_tables()
Definition: sql_auth_cache.cc:163
bool acl_check_proxy_grant_access(THD *thd, const char *host, const char *user, bool with_grant)
Definition: sql_authorization.cc:5546
bool check_access(THD *thd, ulong want_access, const char *db, ulong *save_priv, GRANT_INTERNAL_INFO *grant_internal_info, bool dont_check_global_grants, bool no_errors)
Compare requested privileges with the privileges acquired from the User- and Db-tables.
Definition: sql_authorization.cc:2139
void func_current_role(const THD *thd, String *active_role)
Helper function for Item_func_current_role.
Definition: sql_authorization.cc:6262
bool check_column_grant_in_table_ref(THD *thd, Table_ref *table_ref, const char *name, size_t length, ulong want_privilege)
Check the privileges for a column depending on the type of table.
Definition: sql_authorization.cc:4035
uint32 global_password_history
Global sysvar: the number of old passwords to check in the history.
Definition: sql_auth_cache.cc:3644
bool mysql_alter_or_clear_default_roles(THD *thd, role_enum role_type, const List< LEX_USER > *users, const List< LEX_USER > *roles)
Set the default roles to NONE, ALL or list of authorization IDs as roles, depending upon the role_typ...
Definition: sql_authorization.cc:6403
int fill_schema_table_privileges(THD *thd, Table_ref *tables, Item *cond)
Definition: sql_authorization.cc:5748
bool is_granted_table_access(THD *thd, ulong required_acl, Table_ref *table)
Given a Table_ref object this function checks against.
Definition: sql_authorization.cc:2445
bool check_some_access(THD *thd, ulong want_access, Table_ref *table)
Check if the given table has any of the asked privileges.
Definition: sql_authorization.cc:2029
void append_auth_id_string(const THD *thd, const char *user, size_t user_len, const char *host, size_t host_len, String *str)
Append the user@host to the str.
Definition: sql_auth_cache.cc:714
std::pair< LEX_CSTRING, LEX_CSTRING > Auth_id_ref
user, host tuple which reference either acl_cache or g_default_roles
Definition: auth_common.h:79
std::unique_ptr< T, std::function< void(T *)> > Sctx_ptr
Definition: auth_common.h:952
bool check_one_table_access(THD *thd, ulong privilege, Table_ref *tables)
Check grants for commands which work only with one table and all other tables belonging to subselects...
Definition: sql_authorization.cc:1904
mysql_role_edges_table_field
Definition: auth_common.h:335
@ MYSQL_ROLE_EDGES_FIELD_TO_USER
Definition: auth_common.h:339
@ MYSQL_ROLE_EDGES_FIELD_WITH_ADMIN_OPTION
Definition: auth_common.h:340
@ MYSQL_ROLE_EDGES_FIELD_FROM_USER
Definition: auth_common.h:337
@ MYSQL_ROLE_EDGES_FIELD_TO_HOST
Definition: auth_common.h:338
@ MYSQL_ROLE_EDGES_FIELD_FROM_HOST
Definition: auth_common.h:336
@ MYSQL_ROLE_EDGES_FIELD_COUNT
Definition: auth_common.h:341
void acl_log_connect(const char *user, const char *host, const char *auth_as, const char *db, THD *thd, enum enum_server_command command)
Logging connection for the general query log, extracted from acl_authenticate() as it's reused at dif...
Definition: sql_authentication.cc:3810
bool reload_acl_caches(THD *thd, bool mdl_locked)
Reload all ACL caches.
Definition: sql_auth_cache.cc:3662
bool is_acl_table_name(const char *name)
Check if given table name is a ACL table name.
Definition: sql_user_table.cc:2622
int fill_schema_schema_privileges(THD *thd, Table_ref *tables, Item *cond)
Definition: sql_authorization.cc:5686
std::function< bool(Security_context *, Security_context_policy::Operation)> Security_context_functor
Definition: auth_common.h:925
bool check_routine_access(THD *thd, ulong want_access, const char *db, char *name, bool is_proc, bool no_errors)
Definition: sql_authorization.cc:1977
bool validate_user_plugins
controls the extra checks on plugin availability for mysql.user records
Definition: sql_auth_cache.cc:167
bool mysql_user_table_is_in_short_password_format
void acl_free(bool end=false)
Definition: sql_auth_cache.cc:1982
bool mysql_revoke_role(THD *thd, const List< LEX_USER > *users, const List< LEX_USER > *roles)
Definition: sql_authorization.cc:3083
bool check_acl_tables_intact(THD *thd, bool mdl_locked)
Opens the ACL tables and checks their sanity.
Definition: sql_auth_cache.cc:2106
bool mysql_show_grants(THD *, LEX_USER *, const List_of_auth_id_refs &, bool, bool)
SHOW GRANTS FOR user USING [ALL | role [,role ...]].
Definition: sql_authorization.cc:4787
void init_acl_memory()
Allocates the memory in the the global_acl_memory MEM_ROOT.
Definition: sql_auth_cache.cc:189
bool sp_grant_privileges(THD *thd, const char *sp_db, const char *sp_name, bool is_proc)
Grant EXECUTE,ALTER privilege for a stored procedure.
Definition: sql_authorization.cc:5389
mysql_db_table_field
Definition: auth_common.h:208
@ MYSQL_DB_FIELD_GRANT_PRIV
Definition: auth_common.h:218
@ MYSQL_DB_FIELD_DELETE_PRIV
Definition: auth_common.h:215
@ MYSQL_DB_FIELD_INDEX_PRIV
Definition: auth_common.h:220
@ MYSQL_DB_FIELD_UPDATE_PRIV
Definition: auth_common.h:214
@ MYSQL_DB_FIELD_CREATE_VIEW_PRIV
Definition: auth_common.h:224
@ MYSQL_DB_FIELD_ALTER_PRIV
Definition: auth_common.h:221
@ MYSQL_DB_FIELD_LOCK_TABLES_PRIV
Definition: auth_common.h:223
@ MYSQL_DB_FIELD_COUNT
Definition: auth_common.h:231
@ MYSQL_DB_FIELD_TRIGGER_PRIV
Definition: auth_common.h:230
@ MYSQL_DB_FIELD_CREATE_PRIV
Definition: auth_common.h:216
@ MYSQL_DB_FIELD_CREATE_ROUTINE_PRIV
Definition: auth_common.h:226
@ MYSQL_DB_FIELD_SELECT_PRIV
Definition: auth_common.h:212
@ MYSQL_DB_FIELD_EXECUTE_PRIV
Definition: auth_common.h:228
@ MYSQL_DB_FIELD_INSERT_PRIV
Definition: auth_common.h:213
@ MYSQL_DB_FIELD_EVENT_PRIV
Definition: auth_common.h:229
@ MYSQL_DB_FIELD_ALTER_ROUTINE_PRIV
Definition: auth_common.h:227
@ MYSQL_DB_FIELD_CREATE_TMP_TABLE_PRIV
Definition: auth_common.h:222
@ MYSQL_DB_FIELD_USER
Definition: auth_common.h:211
@ MYSQL_DB_FIELD_HOST
Definition: auth_common.h:209
@ MYSQL_DB_FIELD_DROP_PRIV
Definition: auth_common.h:217
@ MYSQL_DB_FIELD_DB
Definition: auth_common.h:210
@ MYSQL_DB_FIELD_SHOW_VIEW_PRIV
Definition: auth_common.h:225
@ MYSQL_DB_FIELD_REFERENCES_PRIV
Definition: auth_common.h:219
bool is_mandatory_role(LEX_CSTRING role, LEX_CSTRING role_host, bool *is_mandatory)
Determine if a role@role_host authid is a mandatory role.
Definition: sql_authorization.cc:6803
int mysql_table_grant(THD *thd, Table_ref *table, List< LEX_USER > &user_list, List< LEX_COLUMN > &column_list, ulong rights, bool revoke, bool all_current_privileges)
Definition: sql_authorization.cc:2627
int acl_authenticate(THD *thd, enum_server_command command)
Perform the handshake, authorize the client and update thd sctx variables.
Definition: sql_authentication.cc:3946
const std::vector< std::string > global_acls_vector
Consts for static privileges.
Definition: auth_acls.cc:62
bool lock_and_get_mandatory_roles(std::vector< Role_id > *mandatory_roles)
Copy a list of mandatory role authorization IDs.
Definition: sql_authorization.cc:6315
Auth_id_ref create_authid_from(const LEX_USER *user)
Definition: sql_authorization.cc:6641
bool mysql_grant_role(THD *thd, const List< LEX_USER > *users, const List< LEX_USER > *roles, bool with_admin_opt)
Grants a list of roles to a list of users.
Definition: sql_authorization.cc:3312
bool check_change_password(THD *thd, const char *host, const char *user, bool retain_current_password)
Definition: sql_user.cc:157
void get_privilege_desc(char *to, uint max_length, ulong access)
Definition: sql_authorization.cc:4520
int wild_case_compare(CHARSET_INFO *cs, const char *str, const char *wildstr)
Definition: sql_auth_cache.cc:799
bool mysql_alter_user_comment(THD *thd, const List< LEX_USER > *users, const std::string &json_blob, bool expect_text)
void get_mqh(THD *thd, const char *user, const char *host, USER_CONN *uc)
Definition: sql_auth_cache.cc:3109
bool is_acl_table(const TABLE *table)
Check if given TABLE* is a ACL table name.
Definition: sql_user_table.cc:2640
bool mysql_show_create_user(THD *thd, LEX_USER *user, bool are_both_users_same)
Auxiliary function for constructing CREATE USER sql for a given user.
Definition: sql_user.cc:260
ulong get_table_grant(THD *thd, Table_ref *table)
Definition: sql_authorization.cc:4426
bool do_auto_cert_generation(ssl_artifacts_status auto_detection_status, const char **ssl_ca, const char **ssl_key, const char **ssl_cert)
Check auto_generate_certs option and generate SSL certificates if required.
Definition: sql_authentication.cc:5701
const char * any_db
Definition: sql_authorization.cc:524
bool check_lock_view_underlying_table_access(THD *thd, Table_ref *tbl, bool *fake_lock_tables_acl)
For LOCK TABLES on a view checks if user in which context view is executed or user that has initiated...
Definition: sql_authorization.cc:5990
void set_connection_admin_flag(THD *thd, bool check_for_main_security_ctx=false)
Set the connection_admin flag in the THD.
Definition: auth_common.cc:189
bool mysql_rename_user(THD *thd, List< LEX_USER > &list)
Definition: sql_user.cc:3207
bool check_global_access(THD *thd, ulong want_access)
check for global access and give descriptive error message if it fails.
Definition: sql_authorization.cc:5901
bool grant_init(bool skip_grant_tables)
Initialize structures responsible for table/column-level privilege checking and load information for ...
Definition: sql_auth_cache.cc:2350
uint32 global_password_reuse_interval
Definition: auth_common.h:913
void commit_and_close_mysql_tables(THD *thd)
A helper function to commit statement transaction and close ACL tables after reading some data from t...
Definition: sql_user_table.cc:509
std::vector< Auth_id_ref > List_of_auth_id_refs
Definition: auth_common.h:80
void set_system_user_flag(THD *thd, bool check_for_main_security_ctx=false)
Set the system_user flag in the THD.
Definition: auth_common.cc:166
bool check_grant_column(THD *thd, GRANT_INFO *grant, const char *db_name, const char *table_name, const char *name, size_t length, Security_context *sctx, ulong want_privilege)
Definition: sql_authorization.cc:3955
bool acl_getroot(THD *thd, Security_context *sctx, const char *user, const char *host, const char *ip, const char *db)
Definition: sql_auth_cache.cc:1503
ulong get_global_acl_cache_size()
Definition: sql_auth_cache.cc:110
bool create_table_precheck(THD *thd, Table_ref *tables, Table_ref *create_table)
CREATE TABLE query pre-check.
Definition: sql_authorization.cc:1745
bool mysql_set_active_role_none(THD *thd)
Reset active roles.
Definition: sql_authorization.cc:6705
bool check_readonly(THD *thd, bool err_if_readonly)
Performs standardized check whether to prohibit (true) or allow (false) operations based on read_only...
Definition: sql_authorization.cc:1847
bool check_grant(THD *thd, ulong want_access, Table_ref *tables, bool any_combination_will_do, uint number, bool no_errors)
Check table level grants.
Definition: sql_authorization.cc:3771
bool acl_init(bool dont_read_acl_tables)
Definition: sql_auth_cache.cc:1747
bool acl_can_access_user(THD *thd, LEX_USER *user)
Auxiliary function for the CAN_ACCESS_USER internal function used to check if a row from mysql....
Definition: sql_user.cc:209
bool change_password(THD *thd, LEX_USER *user, const char *password, const char *current_password, bool retain_current_password)
Change a password hash for a user.
Definition: sql_user.cc:2038
std::list< random_password_info > Userhostpassword_list
Definition: auth_common.h:1120
const ACL_internal_schema_access * get_cached_schema_access(GRANT_INTERNAL_INFO *grant_internal_info, const char *schema_name)
Get a cached internal schema access.
Definition: sql_authorization.cc:1650
bool send_password_result_set(THD *thd, const Userhostpassword_list &generated_passwords)
Sends the result set of generated passwords to the client.
Definition: sql_user.cc:979
bool operator<(const Auth_id_ref &a, const Auth_id_ref &b)
Definition: sql_authorization.cc:7474
std::string create_authid_str_from(const LEX_USER *user)
Helper used for producing a key to a key-value-map.
Definition: sql_authorization.cc:6633
bool mysql_set_active_role_all(THD *thd, const List< LEX_USER > *except_users)
Activates all granted role in the current security context.
Definition: sql_authorization.cc:6749
bool mysql_revoke_all(THD *thd, List< LEX_USER > &list)
Definition: sql_authorization.cc:5131
ACL_internal_access_result
Definition: auth_common.h:84
@ ACL_INTERNAL_ACCESS_GRANTED
Access granted for all the requested privileges, do not use the grant tables.
Definition: auth_common.h:91
@ ACL_INTERNAL_ACCESS_CHECK_GRANT
No decision yet, use the grant tables.
Definition: auth_common.h:95
@ ACL_INTERNAL_ACCESS_DENIED
Access denied, do not use the grant tables.
Definition: auth_common.h:93
bool turn_off_sandbox_mode(THD *thd, LEX_USER *user)
Helper method to turn off sandbox mode once registration step is complete.
Definition: sql_user.cc:1023
mysql_password_history_table_field
Definition: auth_common.h:352
@ MYSQL_PASSWORD_HISTORY_FIELD_COUNT
Definition: auth_common.h:357
@ MYSQL_PASSWORD_HISTORY_FIELD_PASSWORD_TIMESTAMP
Definition: auth_common.h:355
@ MYSQL_PASSWORD_HISTORY_FIELD_HOST
Definition: auth_common.h:353
@ MYSQL_PASSWORD_HISTORY_FIELD_USER
Definition: auth_common.h:354
@ MYSQL_PASSWORD_HISTORY_FIELD_PASSWORD
Definition: auth_common.h:356
bool mysql_create_user(THD *thd, List< LEX_USER > &list, bool if_not_exists, bool is_role)
Definition: sql_user.cc:2769
bool check_grant_routine(THD *thd, ulong want_access, Table_ref *procs, bool is_proc, bool no_error)
Definition: sql_authorization.cc:4324
void fill_effective_table_privileges(THD *thd, GRANT_INFO *grant, const char *db, const char *table)
Definition: sql_authorization.cc:5479
bool operator==(const LEX_CSTRING &a, const LEX_CSTRING &b)
Definition: sql_authorization.cc:7491
void get_default_roles(const Auth_id_ref &user, List_of_auth_id_refs &list)
Shallow copy a list of default role authorization IDs from an Role_id storage.
Definition: sql_authorization.cc:6293
int fill_schema_column_privileges(THD *thd, Table_ref *tables, Item *cond)
Definition: sql_authorization.cc:5813
bool check_table_encryption_admin_access(THD *thd)
Check if a current user has the privilege TABLE_ENCRYPTION_ADMIN required to create encrypted table.
Definition: sql_authorization.cc:2411
bool is_role_id(LEX_USER *authid)
Definition: sql_authorization.cc:806
bool check_grant_all_columns(THD *thd, ulong want_access, Field_iterator_table_ref *fields)
check if a query can access a set of columns
Definition: sql_authorization.cc:4113
bool is_granted_role(LEX_CSTRING user, LEX_CSTRING host, LEX_CSTRING role, LEX_CSTRING role_host)
This function works just like check_if_granted_role, but also guarantees that the proper lock is take...
Definition: sql_authorization.cc:6782
mysql_default_roles_table_field
Definition: auth_common.h:344
@ MYSQL_DEFAULT_ROLES_FIELD_DEFAULT_ROLE_USER
Definition: auth_common.h:348
@ MYSQL_DEFAULT_ROLES_FIELD_COUNT
Definition: auth_common.h:349
@ MYSQL_DEFAULT_ROLES_FIELD_DEFAULT_ROLE_HOST
Definition: auth_common.h:347
@ MYSQL_DEFAULT_ROLES_FIELD_HOST
Definition: auth_common.h:345
@ MYSQL_DEFAULT_ROLES_FIELD_USER
Definition: auth_common.h:346
void append_identifier(String *packet, const char *name, size_t length)
Convert and quote the given identifier if needed and append it to the target string.
Definition: sql_show.cc:1461
bool mysql_grant(THD *thd, const char *db, List< LEX_USER > &list, ulong rights, bool revoke_grant, bool is_proxy, const List< LEX_CSTRING > &dynamic_privilege, bool grant_all_current_privileges, LEX_GRANT_AS *grant_as)
Definition: sql_authorization.cc:3435
bool is_acl_user(THD *thd, const char *host, const char *user)
Definition: sql_auth_cache.cc:1216
void update_mandatory_roles(void)
Definition: sql_authorization.cc:7325
bool has_full_view_routine_access(THD *thd, const char *db, const char *definer_user, const char *definer_host)
Check if user has full access to view routine's properties (i.e including stored routine code).
Definition: sql_authorization.cc:2059
void notify_flush_event(THD *thd)
Audit notification for flush.
Definition: sql_auth_cache.cc:1689
bool check_table_access(THD *thd, ulong requirements, Table_ref *tables, bool any_combination_of_privileges_will_do, uint number, bool no_errors)
Check if the requested privileges exists in either User-, DB- or, tables- tables.
Definition: sql_authorization.cc:2341
bool is_secure_transport(int vio_type)
Definition: sql_authentication.cc:4378
bool disconnect_on_expired_password
Definition: sql_authentication.cc:1279
bool wildcard_db_grant_exists()
mysql_tables_priv_table_field
Definition: auth_common.h:323
@ MYSQL_TABLES_PRIV_FIELD_HOST
Definition: auth_common.h:324
@ MYSQL_TABLES_PRIV_FIELD_GRANTOR
Definition: auth_common.h:328
@ MYSQL_TABLES_PRIV_FIELD_COUNT
Definition: auth_common.h:332
@ MYSQL_TABLES_PRIV_FIELD_COLUMN_PRIV
Definition: auth_common.h:331
@ MYSQL_TABLES_PRIV_FIELD_TABLE_NAME
Definition: auth_common.h:327
@ MYSQL_TABLES_PRIV_FIELD_TABLE_PRIV
Definition: auth_common.h:330
@ MYSQL_TABLES_PRIV_FIELD_TIMESTAMP
Definition: auth_common.h:329
@ MYSQL_TABLES_PRIV_FIELD_USER
Definition: auth_common.h:326
@ MYSQL_TABLES_PRIV_FIELD_DB
Definition: auth_common.h:325
void shutdown_acl_cache()
Shutdown the global Acl_cache system which was only initialized if the rwlocks were initialized.
Definition: sql_auth_cache.cc:3453
void log_user(THD *thd, String *str, LEX_USER *user, bool comma)
Auxiliary function for constructing a user list string.
Definition: sql_user.cc:125
bool sp_revoke_privileges(THD *thd, const char *sp_db, const char *sp_name, bool is_proc)
Revoke privileges for all users on a stored procedure.
Definition: sql_authorization.cc:5300
mysql_proxies_priv_table_feild
Definition: auth_common.h:289
@ MYSQL_PROXIES_PRIV_FIELD_HOST
Definition: auth_common.h:290
@ MYSQL_PROXIES_PRIV_FIELD_PROXIED_USER
Definition: auth_common.h:293
@ MYSQL_PROXIES_PRIV_FIELD_PROXIED_HOST
Definition: auth_common.h:292
@ MYSQL_PROXIES_PRIV_FIELD_COUNT
Definition: auth_common.h:297
@ MYSQL_PROXIES_PRIV_FIELD_WITH_GRANT
Definition: auth_common.h:294
@ MYSQL_PROXIES_PRIV_FIELD_USER
Definition: auth_common.h:291
@ MYSQL_PROXIES_PRIV_FIELD_GRANTOR
Definition: auth_common.h:295
@ MYSQL_PROXIES_PRIV_FIELD_TIMESTAMP
Definition: auth_common.h:296
bool check_single_table_access(THD *thd, ulong privilege, Table_ref *tables, bool no_errors)
Check grants for commands which work only with one table.
Definition: sql_authorization.cc:1943
void err_readonly(THD *thd)
Generates appropriate error messages for read-only state depending on whether user has SUPER privileg...
Definition: sql_authorization.cc:1883
void grant_free(void)
Definition: sql_auth_cache.cc:2330
bool check_grant_db(THD *thd, const char *db, const bool check_table_grant=false)
Check if a user has the right to access a database.
Definition: sql_authorization.cc:4262
void generate_random_password(std::string *password, uint32_t)
Generates a random password of the length decided by the system variable generated_random_password_le...
Definition: sql_user.cc:959
bool decrypt_RSA_private_key(uchar *pkt, int cipher_length, unsigned char *plain_text, size_t plain_text_len, RSA *private_key)
Decrypt pkt data using RSA private key.
Definition: auth_common.cc:229
bool is_acl_inited()
Definition: sql_auth_cache.cc:3893
std::pair< std::string, std::string > get_authid_from_quoted_string(std::string str)
Return the unquoted authorization id as a user,host-tuple.
Definition: sql_authorization.cc:4594
ssl_artifacts_status
Definition: auth_common.h:891
@ SSL_ARTIFACTS_VIA_OPTIONS
Definition: auth_common.h:893
@ SSL_ARTIFACTS_AUTO_DETECTED
Definition: auth_common.h:895
@ SSL_ARTIFACT_TRACES_FOUND
Definition: auth_common.h:894
@ SSL_ARTIFACTS_NOT_FOUND
Definition: auth_common.h:892
bool mysql_drop_user(THD *thd, List< LEX_USER > &list, bool if_exists, bool drop_role)
Drop a list of users and all their privileges.
Definition: sql_user.cc:3055
ulong acl_get(THD *thd, const char *host, const char *ip, const char *user, const char *db, bool db_is_pattern)
Get privilege for a host, user, and db combination.
Definition: sql_auth_cache.cc:1348
bool is_partial_revoke_exists(THD *thd)
Method to check if there exists at least one partial revokes in the cache.
Definition: sql_auth_cache.cc:3877
bool mysql_set_active_role(THD *thd, const List< LEX_USER > *role_list)
Definition: sql_authorization.cc:6759
bool mysql_alter_user(THD *thd, List< LEX_USER > &list, bool if_exists)
Definition: sql_user.cc:3402
int fill_schema_user_privileges(THD *thd, Table_ref *tables, Item *cond)
Definition: sql_authorization.cc:5610
mysql_user_table_field
Definition: auth_common.h:234
@ MYSQL_USER_FIELD_CREATE_TABLESPACE_PRIV
Definition: auth_common.h:265
@ MYSQL_USER_FIELD_SUPER_PRIV
Definition: auth_common.h:252
@ MYSQL_USER_FIELD_DROP_PRIV
Definition: auth_common.h:242
@ MYSQL_USER_FIELD_ACCOUNT_LOCKED
Definition: auth_common.h:279
@ MYSQL_USER_FIELD_SSL_TYPE
Definition: auth_common.h:266
@ MYSQL_USER_FIELD_SSL_CIPHER
Definition: auth_common.h:267
@ MYSQL_USER_FIELD_REPL_CLIENT_PRIV
Definition: auth_common.h:257
@ MYSQL_USER_FIELD_MAX_USER_CONNECTIONS
Definition: auth_common.h:273
@ MYSQL_USER_FIELD_COUNT
Definition: auth_common.h:286
@ MYSQL_USER_FIELD_PROCESS_PRIV
Definition: auth_common.h:245
@ MYSQL_USER_FIELD_SELECT_PRIV
Definition: auth_common.h:237
@ MYSQL_USER_FIELD_USER
Definition: auth_common.h:236
@ MYSQL_USER_FIELD_MAX_CONNECTIONS
Definition: auth_common.h:272
@ MYSQL_USER_FIELD_REFERENCES_PRIV
Definition: auth_common.h:248
@ MYSQL_USER_FIELD_PASSWORD_EXPIRED
Definition: auth_common.h:276
@ MYSQL_USER_FIELD_CREATE_ROUTINE_PRIV
Definition: auth_common.h:260
@ MYSQL_USER_FIELD_ALTER_ROUTINE_PRIV
Definition: auth_common.h:261
@ MYSQL_USER_FIELD_PLUGIN
Definition: auth_common.h:274
@ MYSQL_USER_FIELD_MAX_UPDATES
Definition: auth_common.h:271
@ MYSQL_USER_FIELD_EVENT_PRIV
Definition: auth_common.h:263
@ MYSQL_USER_FIELD_RELOAD_PRIV
Definition: auth_common.h:243
@ MYSQL_USER_FIELD_UPDATE_PRIV
Definition: auth_common.h:239
@ MYSQL_USER_FIELD_TRIGGER_PRIV
Definition: auth_common.h:264
@ MYSQL_USER_FIELD_X509_ISSUER
Definition: auth_common.h:268
@ MYSQL_USER_FIELD_LOCK_TABLES_PRIV
Definition: auth_common.h:254
@ MYSQL_USER_FIELD_CREATE_ROLE_PRIV
Definition: auth_common.h:280
@ MYSQL_USER_FIELD_PASSWORD_LAST_CHANGED
Definition: auth_common.h:277
@ MYSQL_USER_FIELD_INSERT_PRIV
Definition: auth_common.h:238
@ MYSQL_USER_FIELD_REPL_SLAVE_PRIV
Definition: auth_common.h:256
@ MYSQL_USER_FIELD_FILE_PRIV
Definition: auth_common.h:246
@ MYSQL_USER_FIELD_DROP_ROLE_PRIV
Definition: auth_common.h:281
@ MYSQL_USER_FIELD_INDEX_PRIV
Definition: auth_common.h:249
@ MYSQL_USER_FIELD_HOST
Definition: auth_common.h:235
@ MYSQL_USER_FIELD_PASSWORD_LIFETIME
Definition: auth_common.h:278
@ MYSQL_USER_FIELD_X509_SUBJECT
Definition: auth_common.h:269
@ MYSQL_USER_FIELD_AUTHENTICATION_STRING
Definition: auth_common.h:275
@ MYSQL_USER_FIELD_SHOW_DB_PRIV
Definition: auth_common.h:251
@ MYSQL_USER_FIELD_SHOW_VIEW_PRIV
Definition: auth_common.h:259
@ MYSQL_USER_FIELD_CREATE_USER_PRIV
Definition: auth_common.h:262
@ MYSQL_USER_FIELD_EXECUTE_PRIV
Definition: auth_common.h:255
@ MYSQL_USER_FIELD_MAX_QUESTIONS
Definition: auth_common.h:270
@ MYSQL_USER_FIELD_CREATE_VIEW_PRIV
Definition: auth_common.h:258
@ MYSQL_USER_FIELD_SHUTDOWN_PRIV
Definition: auth_common.h:244
@ MYSQL_USER_FIELD_CREATE_PRIV
Definition: auth_common.h:241
@ MYSQL_USER_FIELD_ALTER_PRIV
Definition: auth_common.h:250
@ MYSQL_USER_FIELD_CREATE_TMP_TABLE_PRIV
Definition: auth_common.h:253
@ MYSQL_USER_FIELD_GRANT_PRIV
Definition: auth_common.h:247
@ MYSQL_USER_FIELD_PASSWORD_REQUIRE_CURRENT
Definition: auth_common.h:284
@ MYSQL_USER_FIELD_PASSWORD_REUSE_TIME
Definition: auth_common.h:283
@ MYSQL_USER_FIELD_USER_ATTRIBUTES
Definition: auth_common.h:285
@ MYSQL_USER_FIELD_DELETE_PRIV
Definition: auth_common.h:240
@ MYSQL_USER_FIELD_PASSWORD_REUSE_HISTORY
Definition: auth_common.h:282
bool hostname_requires_resolving(const char *hostname)
Check if the given host name needs to be resolved or not.
Definition: sql_auth_cache.cc:878
bool has_grant_role_privilege(THD *thd, const List< LEX_USER > *roles)
Definition: sql_authorization.cc:2514
bool mysql_set_role_default(THD *thd)
Activates all the default roles in the current security context.
Definition: sql_authorization.cc:6726
bool check_authorization_id_string(THD *thd, LEX_STRING &mandatory_roles)
Definition: sql_authorization.cc:7237
bool check_engine_type_for_acl_table(THD *thd, bool mdl_locked)
Definition: sql_auth_cache.cc:2010
bool has_partial_view_routine_access(THD *thd, const char *db, const char *routine_name, bool is_proc)
Check if user has partial access to view routine's properties (i.e.
Definition: sql_authorization.cc:2087
static constexpr int USER_HOST_BUFF_SIZE
Length of string buffer, that is enough to contain username and hostname parts of the user identifier...
Definition: auth_common.h:1109
bool opt_auto_generate_certs
Definition: sql_authentication.cc:1295
ulong get_column_grant(THD *thd, GRANT_INFO *grant, const char *db_name, const char *table_name, const char *field_name)
Definition: sql_authorization.cc:4463
bool drop_role(THD *thd, TABLE *edge_table, TABLE *defaults_table, const Auth_id_ref &authid_user)
Definition: sql_authorization.cc:634
Definition: sql_auth_cache.h:246
Per internal schema ACL access rules.
Definition: auth_common.h:144
virtual const ACL_internal_table_access * lookup(const char *name) const =0
Search for per table ACL access rules by table name.
virtual ACL_internal_access_result check(ulong want_access, ulong *save_priv, bool any_combination_will_do) const =0
Check access to an internal schema.
virtual ~ACL_internal_schema_access()=default
ACL_internal_schema_access()=default
A registry for per internal schema ACL.
Definition: auth_common.h:182
static const ACL_internal_schema_access * lookup(const char *name)
Search per internal schema ACL by name.
Definition: sql_auth_cache.cc:213
static void register_schema(const LEX_CSTRING &name, const ACL_internal_schema_access *access)
Add an internal schema to the registry.
Definition: sql_auth_cache.cc:198
Per internal table ACL access rules.
Definition: auth_common.h:106
virtual ~ACL_internal_table_access()=default
ACL_internal_table_access()=default
virtual ACL_internal_access_result check(ulong want_access, ulong *save_priv, bool any_combination_will_do) const =0
Check access to an internal table.
Data describing the table being created by CREATE TABLE or altered by ALTER TABLE.
Definition: sql_alter.h:205
Storage container for default auth ids.
Definition: auth_common.h:1062
const std::string & host() const
Definition: auth_common.cc:125
std::string m_user
User part.
Definition: auth_common.h:1085
Auth_id & operator=(const Auth_id &)=default
void create_key()
Definition: auth_common.cc:57
const std::string & user() const
Definition: auth_common.cc:124
bool operator<(const Auth_id &id) const
Definition: auth_common.cc:101
std::string auth_str() const
Definition: auth_common.cc:116
std::string m_key
Key: Internal representation mainly to facilitate use of Auth_id class in standard container.
Definition: auth_common.h:1093
std::string m_host
Host part.
Definition: auth_common.h:1087
Definition: auth_common.h:928
bool operator()(Security_context *sctx, Operation op) override
Definition: auth_common.h:930
Definition: auth_common.h:999
const THD * m_thd
Definition: auth_common.h:1006
bool create(Security_context *sctx)
Create a local authid without modifying any tables.
Definition: sql_authorization.cc:7351
Default_local_authid(const THD *thd)
Definition: sql_authorization.cc:7331
bool precheck(Security_context *sctx)
Check if the security context can be created as a local authid.
Definition: sql_authorization.cc:7340
Definition: auth_common.h:1026
Drop_temporary_dynamic_privileges(std::vector< std::string > privs)
Definition: auth_common.h:1028
void operator()(Security_context *sctx)
Definition: sql_authorization.cc:7377
std::vector< std::string > m_privs
Definition: auth_common.h:1033
Generic iterator over the fields of an arbitrary table reference.
Definition: table.h:4140
Definition: auth_common.h:940
bool operator()(Security_context *sctx, Operation op) override
Definition: auth_common.h:942
Grant the privilege temporarily to the in-memory global privileges map.
Definition: auth_common.h:1014
const std::vector< std::string > m_privs
Definition: auth_common.h:1023
Grant_temporary_dynamic_privileges(const THD *thd, std::vector< std::string > privs)
Definition: sql_authorization.cc:7355
bool grant_privileges(Security_context *sctx)
Grant dynamic privileges to an in-memory global authid.
Definition: sql_authorization.cc:7371
const THD * m_thd
Definition: auth_common.h:1022
bool precheck(Security_context *sctx)
Definition: sql_authorization.cc:7359
Definition: auth_common.h:1037
const ulong m_privs
Privileges.
Definition: auth_common.h:1048
bool grant_privileges(Security_context *sctx)
Definition: sql_authorization.cc:7391
bool precheck(Security_context *sctx)
Definition: sql_authorization.cc:7386
const THD * m_thd
THD handle.
Definition: auth_common.h:1045
Grant_temporary_static_privileges(const THD *thd, const ulong privs)
Definition: sql_authorization.cc:7382
Extension of ACL_internal_schema_access for Information Schema.
Definition: auth_common.h:192
~IS_internal_schema_access() override=default
IS_internal_schema_access()=default
const ACL_internal_table_access * lookup(const char *name) const override
Search for per table ACL access rules by table name.
Definition: sql_authorization.cc:1701
ACL_internal_access_result check(ulong want_access, ulong *save_priv, bool any_combination_will_do) const override
Check access to an internal schema.
Definition: sql_authorization.cc:1683
Base class that is used to represent any kind of expression in a relational query.
Definition: item.h:934
Definition: sql_lex.h:3726
Definition: sql_lex.h:3738
Definition: sql_list.h:467
Factory for creating any Security_context given a pre-constructed policy.
Definition: auth_common.h:957
Security_context_functor m_static_privileges
Definition: auth_common.h:995
Security_context_functor m_privileges
Definition: auth_common.h:994
Security_context_factory(THD *thd, std::string user, std::string host, Security_context_functor extend_user_profile, Security_context_functor priv, Security_context_functor static_priv, std::function< void(Security_context *)> drop_policy)
Default Security_context factory implementation.
Definition: auth_common.h:972
std::string m_user
Definition: auth_common.h:991
Sctx_ptr< Security_context > create()
Definition: sql_authorization.cc:7427
std::string m_host
Definition: auth_common.h:992
bool apply_pre_constructed_policies(Security_context *sctx)
Definition: sql_authorization.cc:7397
Security_context_functor m_user_profile
Definition: auth_common.h:993
THD * m_thd
Definition: auth_common.h:990
const std::function< void(Security_context *)> m_drop_policy
Definition: auth_common.h:996
A set of THD members describing the current authenticated user.
Definition: sql_security_ctx.h:53
Using this class is fraught with peril, and you need to be very careful when doing so.
Definition: sql_string.h:167
For each client connection we create a separate thread with THD serving as a thread/connection descri...
Definition: sql_lexer_thd.h:36
Definition: table.h:2863
Definition: auth_common.h:437
uint repl_client_priv_idx() override
Definition: auth_common.h:478
uint max_user_connections_idx() override
Definition: auth_common.h:508
uint plugin_idx() override
Definition: auth_common.h:511
uint create_tablespace_priv_idx() override
Definition: auth_common.h:496
uint account_locked_idx() override
Definition: auth_common.h:524
uint create_priv_idx() override
Definition: auth_common.h:450
uint create_tmp_table_priv_idx() override
Definition: auth_common.h:468
uint password_idx() override
Definition: auth_common.h:442
uint trigger_priv_idx() override
Definition: auth_common.h:495
uint max_questions_idx() override
Definition: auth_common.h:503
uint create_view_priv_idx() override
Definition: auth_common.h:481
uint index_priv_idx() override
Definition: auth_common.h:460
uint insert_priv_idx() override
Definition: auth_common.h:447
uint user_idx() override
Definition: auth_common.h:440
uint alter_routine_priv_idx() override
Definition: auth_common.h:488
uint create_user_priv_idx() override
Definition: auth_common.h:491
uint password_reuse_time_idx() override
Definition: auth_common.h:528
uint password_expired_idx() override
Definition: auth_common.h:515
uint password_require_current_idx() override
Definition: auth_common.h:531
uint shutdown_priv_idx() override
Definition: auth_common.h:453
uint drop_priv_idx() override
Definition: auth_common.h:451
uint host_idx() override
Definition: auth_common.h:439
uint file_priv_idx() override
Definition: auth_common.h:455
uint authentication_string_idx() override
Definition: auth_common.h:512
uint drop_role_priv_idx() override
Definition: auth_common.h:467
uint repl_slave_priv_idx() override
Definition: auth_common.h:475
uint x509_subject_idx() override
Definition: auth_common.h:502
uint references_priv_idx() override
Definition: auth_common.h:457
uint password_lifetime_idx() override
Definition: auth_common.h:521
uint event_priv_idx() override
Definition: auth_common.h:494
uint process_priv_idx() override
Definition: auth_common.h:454
uint max_connections_idx() override
Definition: auth_common.h:505
uint password_reuse_history_idx() override
Definition: auth_common.h:525
uint create_routine_priv_idx() override
Definition: auth_common.h:485
uint ssl_cipher_idx() override
Definition: auth_common.h:500
uint super_priv_idx() override
Definition: auth_common.h:463
uint update_priv_idx() override
Definition: auth_common.h:448
uint reload_priv_idx() override
Definition: auth_common.h:452
uint create_role_priv_idx() override
Definition: auth_common.h:464
uint password_last_changed_idx() override
Definition: auth_common.h:518
uint lock_tables_priv_idx() override
Definition: auth_common.h:471
uint show_db_priv_idx() override
Definition: auth_common.h:462
uint user_attributes_idx() override
Definition: auth_common.h:534
uint x509_issuer_idx() override
Definition: auth_common.h:501
uint grant_priv_idx() override
Definition: auth_common.h:456
uint ssl_type_idx() override
Definition: auth_common.h:499
uint alter_priv_idx() override
Definition: auth_common.h:461
uint max_updates_idx() override
Definition: auth_common.h:504
uint execute_priv_idx() override
Definition: auth_common.h:474
uint select_priv_idx() override
Definition: auth_common.h:446
uint show_view_priv_idx() override
Definition: auth_common.h:484
uint delete_priv_idx() override
Definition: auth_common.h:449
Definition: auth_common.h:542
uint file_priv_idx() override
Definition: auth_common.h:605
uint user_idx() override
Definition: auth_common.h:592
uint insert_priv_idx() override
Definition: auth_common.h:595
uint shutdown_priv_idx() override
Definition: auth_common.h:601
uint account_locked_idx() override
Definition: auth_common.h:674
uint x509_issuer_idx() override
Definition: auth_common.h:649
uint password_reuse_time_idx() override
Definition: auth_common.h:680
uint host_idx() override
Definition: auth_common.h:591
uint x509_subject_idx() override
Definition: auth_common.h:650
uint index_priv_idx() override
Definition: auth_common.h:610
mysql_user_table_field_56
Definition: auth_common.h:544
@ MYSQL_USER_FIELD_SUPER_PRIV_56
Definition: auth_common.h:563
@ MYSQL_USER_FIELD_SELECT_PRIV_56
Definition: auth_common.h:548
@ MYSQL_USER_FIELD_REFERENCES_PRIV_56
Definition: auth_common.h:559
@ MYSQL_USER_FIELD_SHOW_DB_PRIV_56
Definition: auth_common.h:562
@ MYSQL_USER_FIELD_UPDATE_PRIV_56
Definition: auth_common.h:550
@ MYSQL_USER_FIELD_DROP_PRIV_56
Definition: auth_common.h:553
@ MYSQL_USER_FIELD_PLUGIN_56
Definition: auth_common.h:585
@ MYSQL_USER_FIELD_FILE_PRIV_56
Definition: auth_common.h:557
@ MYSQL_USER_FIELD_X509_SUBJECT_56
Definition: auth_common.h:580
@ MYSQL_USER_FIELD_REPL_CLIENT_PRIV_56
Definition: auth_common.h:568
@ MYSQL_USER_FIELD_PASSWORD_56
Definition: auth_common.h:547
@ MYSQL_USER_FIELD_MAX_USER_CONNECTIONS_56
Definition: auth_common.h:584
@ MYSQL_USER_FIELD_X509_ISSUER_56
Definition: auth_common.h:579
@ MYSQL_USER_FIELD_PROCESS_PRIV_56
Definition: auth_common.h:556
@ MYSQL_USER_FIELD_ALTER_ROUTINE_PRIV_56
Definition: auth_common.h:572
@ MYSQL_USER_FIELD_COUNT_56
Definition: auth_common.h:588
@ MYSQL_USER_FIELD_EVENT_PRIV_56
Definition: auth_common.h:574
@ MYSQL_USER_FIELD_SHUTDOWN_PRIV_56
Definition: auth_common.h:555
@ MYSQL_USER_FIELD_SSL_TYPE_56
Definition: auth_common.h:577
@ MYSQL_USER_FIELD_SSL_CIPHER_56
Definition: auth_common.h:578
@ MYSQL_USER_FIELD_CREATE_VIEW_PRIV_56
Definition: auth_common.h:569
@ MYSQL_USER_FIELD_DELETE_PRIV_56
Definition: auth_common.h:551
@ MYSQL_USER_FIELD_MAX_CONNECTIONS_56
Definition: auth_common.h:583
@ MYSQL_USER_FIELD_CREATE_USER_PRIV_56
Definition: auth_common.h:573
@ MYSQL_USER_FIELD_CREATE_ROUTINE_PRIV_56
Definition: auth_common.h:571
@ MYSQL_USER_FIELD_CREATE_PRIV_56
Definition: auth_common.h:552
@ MYSQL_USER_FIELD_EXECUTE_PRIV_56
Definition: auth_common.h:566
@ MYSQL_USER_FIELD_MAX_QUESTIONS_56
Definition: auth_common.h:581
@ MYSQL_USER_FIELD_HOST_56
Definition: auth_common.h:545
@ MYSQL_USER_FIELD_GRANT_PRIV_56
Definition: auth_common.h:558
@ MYSQL_USER_FIELD_AUTHENTICATION_STRING_56
Definition: auth_common.h:586
@ MYSQL_USER_FIELD_RELOAD_PRIV_56
Definition: auth_common.h:554
@ MYSQL_USER_FIELD_SHOW_VIEW_PRIV_56
Definition: auth_common.h:570
@ MYSQL_USER_FIELD_LOCK_TABLES_PRIV_56
Definition: auth_common.h:565
@ MYSQL_USER_FIELD_TRIGGER_PRIV_56
Definition: auth_common.h:575
@ MYSQL_USER_FIELD_PASSWORD_EXPIRED_56
Definition: auth_common.h:587
@ MYSQL_USER_FIELD_CREATE_TMP_TABLE_PRIV_56
Definition: auth_common.h:564
@ MYSQL_USER_FIELD_CREATE_TABLESPACE_PRIV_56
Definition: auth_common.h:576
@ MYSQL_USER_FIELD_USER_56
Definition: auth_common.h:546
@ MYSQL_USER_FIELD_INSERT_PRIV_56
Definition: auth_common.h:549
@ MYSQL_USER_FIELD_INDEX_PRIV_56
Definition: auth_common.h:560
@ MYSQL_USER_FIELD_ALTER_PRIV_56
Definition: auth_common.h:561
@ MYSQL_USER_FIELD_REPL_SLAVE_PRIV_56
Definition: auth_common.h:567
@ MYSQL_USER_FIELD_MAX_UPDATES_56
Definition: auth_common.h:582
uint drop_role_priv_idx() override
Definition: auth_common.h:676
uint user_attributes_idx() override
Definition: auth_common.h:684
uint lock_tables_priv_idx() override
Definition: auth_common.h:617
uint create_tmp_table_priv_idx() override
Definition: auth_common.h:614
uint password_lifetime_idx() override
Definition: auth_common.h:673
uint process_priv_idx() override
Definition: auth_common.h:604
uint create_view_priv_idx() override
Definition: auth_common.h:627
uint plugin_idx() override
Definition: auth_common.h:661
uint max_user_connections_idx() override
Definition: auth_common.h:658
uint select_priv_idx() override
Definition: auth_common.h:594
uint references_priv_idx() override
Definition: auth_common.h:607
uint grant_priv_idx() override
Definition: auth_common.h:606
uint repl_slave_priv_idx() override
Definition: auth_common.h:621
uint max_updates_idx() override
Definition: auth_common.h:654
uint delete_priv_idx() override
Definition: auth_common.h:597
uint create_user_priv_idx() override
Definition: auth_common.h:639
uint repl_client_priv_idx() override
Definition: auth_common.h:624
uint show_view_priv_idx() override
Definition: auth_common.h:630
uint password_reuse_history_idx() override
Definition: auth_common.h:677
uint update_priv_idx() override
Definition: auth_common.h:596
uint create_priv_idx() override
Definition: auth_common.h:598
uint max_questions_idx() override
Definition: auth_common.h:651
uint drop_priv_idx() override
Definition: auth_common.h:599
uint alter_priv_idx() override
Definition: auth_common.h:611
uint execute_priv_idx() override
Definition: auth_common.h:620
uint password_idx() override
Definition: auth_common.h:593
uint password_expired_idx() override
Definition: auth_common.h:665
uint password_last_changed_idx() override
Definition: auth_common.h:670
uint authentication_string_idx() override
Definition: auth_common.h:662
uint show_db_priv_idx() override
Definition: auth_common.h:612
uint create_tablespace_priv_idx() override
Definition: auth_common.h:644
uint password_require_current_idx() override
Definition: auth_common.h:681
uint ssl_type_idx() override
Definition: auth_common.h:647
uint max_connections_idx() override
Definition: auth_common.h:655
uint reload_priv_idx() override
Definition: auth_common.h:600
uint create_role_priv_idx() override
Definition: auth_common.h:675
uint alter_routine_priv_idx() override
Definition: auth_common.h:636
uint create_routine_priv_idx() override
Definition: auth_common.h:633
uint super_priv_idx() override
Definition: auth_common.h:613
uint ssl_cipher_idx() override
Definition: auth_common.h:648
uint trigger_priv_idx() override
Definition: auth_common.h:643
uint event_priv_idx() override
Definition: auth_common.h:642
Definition: auth_common.h:687
virtual ~User_table_schema_factory()=default
virtual User_table_schema * get_user_table_schema(TABLE *table)
Definition: auth_common.h:689
virtual bool is_old_user_table_schema(TABLE *table)
Definition: auth_common.cc:48
Definition: auth_common.h:374
virtual uint user_attributes_idx()=0
virtual uint event_priv_idx()=0
virtual uint update_priv_idx()=0
virtual uint max_connections_idx()=0
virtual uint user_idx()=0
virtual uint select_priv_idx()=0
virtual uint repl_client_priv_idx()=0
virtual uint x509_issuer_idx()=0
virtual uint references_priv_idx()=0
virtual uint alter_priv_idx()=0
virtual uint password_last_changed_idx()=0
virtual uint host_idx()=0
virtual uint trigger_priv_idx()=0
virtual uint show_view_priv_idx()=0
virtual uint process_priv_idx()=0
virtual uint create_tablespace_priv_idx()=0
virtual uint reload_priv_idx()=0
virtual uint drop_priv_idx()=0
virtual uint password_expired_idx()=0
virtual uint max_user_connections_idx()=0
virtual uint max_updates_idx()=0
virtual uint password_reuse_time_idx()=0
virtual uint create_view_priv_idx()=0
virtual uint create_tmp_table_priv_idx()=0
virtual uint ssl_type_idx()=0
virtual uint password_lifetime_idx()=0
virtual uint show_db_priv_idx()=0
virtual uint password_reuse_history_idx()=0
virtual uint create_role_priv_idx()=0
virtual uint create_priv_idx()=0
virtual uint account_locked_idx()=0
virtual uint x509_subject_idx()=0
virtual uint alter_routine_priv_idx()=0
virtual uint super_priv_idx()=0
virtual uint password_require_current_idx()=0
virtual uint repl_slave_priv_idx()=0
virtual uint shutdown_priv_idx()=0
virtual uint lock_tables_priv_idx()=0
virtual uint authentication_string_idx()=0
virtual uint drop_role_priv_idx()=0
virtual uint ssl_cipher_idx()=0
virtual uint create_user_priv_idx()=0
virtual uint password_idx()=0
virtual uint grant_priv_idx()=0
virtual uint plugin_idx()=0
virtual uint index_priv_idx()=0
virtual uint max_questions_idx()=0
virtual uint create_routine_priv_idx()=0
virtual uint execute_priv_idx()=0
virtual uint delete_priv_idx()=0
virtual uint file_priv_idx()=0
virtual uint insert_priv_idx()=0
virtual ~User_table_schema()=default
Definition: sp_head.h:123
PFS_table * create_table(PFS_table_share *share, PFS_thread *opening_thread, const void *identity)
Create instrumentation for a table instance.
Definition: pfs_instr.cc:1308
enum_server_command
A list of all MySQL protocol commands.
Definition: my_command.h:48
Common definition used by mysys, performance schema and server & client.
static constexpr int HOSTNAME_LENGTH
Definition: my_hostname.h:43
Some integer typedefs for easier portability.
unsigned char uchar
Definition: my_inttypes.h:52
uint32_t uint32
Definition: my_inttypes.h:67
Common definition between mysql server & client.
#define USERNAME_LENGTH
Definition: mysql_com.h:69
static char * password
Definition: mysql_secure_installation.cc:58
char * user
Definition: mysqladmin.cc:66
const char * host
Definition: mysqladmin.cc:65
std::string str(const mysqlrouter::ConfigGenerator::Options::Endpoint &ep)
Definition: config_generator.cc:1073
static PFS_engine_table_share_proxy table
Definition: pfs.cc:61
Definition: acl_table_user.cc:80
const std::string mysql
const std::string system_user
const std::string connection_admin
Definition: commit_order_queue.h:34
bool length(const dd::Spatial_reference_system *srs, const Geometry *g1, double *length, bool *null) noexcept
Computes the length of linestrings and multilinestrings.
Definition: length.cc:76
static mysql_service_status_t create(const char *service_names[], reference_caching_channel *out_channel) noexcept
Definition: component.cc:45
const char * table_name
Definition: rules_table_service.cc:56
Cursor end()
A past-the-end Cursor.
Definition: rules_table_service.cc:192
const char * db_name
Definition: rules_table_service.cc:55
Definition: gcs_xcom_synode.h:64
std::conditional_t< !std::is_array< T >::value, std::unique_ptr< T, detail::Deleter< T > >, std::conditional_t< detail::is_unbounded_array_v< T >, std::unique_ptr< T, detail::Array_deleter< std::remove_extent_t< T > > >, void > > unique_ptr
The following is a common type that is returned by all the ut::make_unique (non-aligned) specializati...
Definition: ut0new.h:2438
std::list< T, ut::allocator< T > > list
Specialization of list which uses ut_allocator.
Definition: ut0new.h:2878
role_enum
Definition: sql_admin.h:255
struct rsa_st RSA
Definition: sql_authentication.h:103
Consumer_type
Target types where the rewritten query will be added.
Definition: sql_rewrite.h:38
case opt name
Definition: sslopt-case.h:29
Definition: m_ctype.h:423
The current state of the privilege checking process for the current user, SQL statement and SQL objec...
Definition: table.h:368
State information for internal tables grants.
Definition: table.h:345
Struct to hold information about the table that should be created.
Definition: handler.h:3201
Definition: table.h:2730
The MEM_ROOT is a simple arena, where allocations are carved out of larger blocks.
Definition: my_alloc.h:83
Definition: mysql_lex_string.h:40
Definition: mysql_lex_string.h:35
Definition: auth_common.h:915
virtual bool operator()(Security_context *, Operation)=0
Security_context_policy(const Security_context_policy &)=default
Operation
Definition: auth_common.h:916
@ Precheck
Definition: auth_common.h:916
@ Execute
Definition: auth_common.h:916
Security_context_policy()=default
virtual ~Security_context_policy()=default
Definition: table.h:1405
Definition: auth_common.h:1112
std::string host
Definition: auth_common.h:1114
std::string user
Definition: auth_common.h:1113
unsigned int authentication_factor
Definition: auth_common.h:1116
std::string password
Definition: auth_common.h:1115
Definition: sql_connect.h:70
command
Definition: version_token.cc:280
enum enum_vio_type vio_type(const MYSQL_VIO vio)