mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
aa3c430675
Added record_rnd_buffer Added --safe-user-create Fix for ALTER TABLE RENAME on windows Docs/manual.texi: Changelog and documentation of new features. More information about using threaded client libraries include/mysql_com.h: Added prototype for my_thread_init() include/mysqld_error.h: New error for --safe-create-user innobase/buf/buf0flu.c: Portability fix innobase/include/univ.i: Portability fix mysql-test/t/distinct.test: Test for distinct bug sql/mysql_priv.h: Added record_rnd_buffer sql/mysqld.cc: Added record_rnd_buffer sql/records.cc: Added record_rnd_buffer sql/share/czech/errmsg.txt: New error message for --safe-user-create sql/share/danish/errmsg.txt: New error message for --safe-user-create sql/share/dutch/errmsg.txt: New error message for --safe-user-create sql/share/english/errmsg.txt: New error message for --safe-user-create sql/share/estonian/errmsg.txt: New error message for --safe-user-create sql/share/french/errmsg.txt: New error message for --safe-user-create sql/share/german/errmsg.txt: New error message for --safe-user-create sql/share/greek/errmsg.txt: New error message for --safe-user-create sql/share/hungarian/errmsg.txt: New error message for --safe-user-create sql/share/italian/errmsg.txt: New error message for --safe-user-create sql/share/japanese/errmsg.txt: New error message for --safe-user-create sql/share/korean/errmsg.txt: New error message for --safe-user-create sql/share/norwegian-ny/errmsg.txt: New error message for --safe-user-create sql/share/norwegian/errmsg.txt: New error message for --safe-user-create sql/share/polish/errmsg.txt: New error message for --safe-user-create sql/share/portuguese/errmsg.txt: New error message for --safe-user-create sql/share/romanian/errmsg.txt: New error message for --safe-user-create sql/share/russian/errmsg.txt: New error message for --safe-user-create sql/share/slovak/errmsg.txt: New error message for --safe-user-create sql/share/spanish/errmsg.txt: New error message for --safe-user-create sql/share/swedish/errmsg.txt: New error message for --safe-user-create sql/sql_acl.cc: Checking of privileges for --safe-user-create sql/sql_acl.h: --safe-user-create sql/sql_base.cc: --safe-user-create sql/sql_parse.cc: --safe-user-create sql/sql_show.cc: --safe-user-create sql/sql_table.cc: Fix for ALTER TABLE RENAME on windows
84 lines
3.5 KiB
C
84 lines
3.5 KiB
C
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
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 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
|
|
|
|
|
#define SELECT_ACL 1
|
|
#define INSERT_ACL 2
|
|
#define UPDATE_ACL 4
|
|
#define DELETE_ACL 8
|
|
#define CREATE_ACL 16
|
|
#define DROP_ACL 32
|
|
#define RELOAD_ACL 64
|
|
#define SHUTDOWN_ACL 128
|
|
#define PROCESS_ACL 256
|
|
#define FILE_ACL 512
|
|
#define GRANT_ACL 1024
|
|
#define REFERENCES_ACL 2048
|
|
#define INDEX_ACL 4096
|
|
#define ALTER_ACL 8192
|
|
#define EXTRA_ACL 16384
|
|
#define DB_ACLS (UPDATE_ACL | SELECT_ACL | INSERT_ACL | \
|
|
DELETE_ACL | CREATE_ACL | DROP_ACL | GRANT_ACL | \
|
|
REFERENCES_ACL | INDEX_ACL | ALTER_ACL)
|
|
#define TABLE_ACLS (SELECT_ACL | INSERT_ACL | UPDATE_ACL | \
|
|
DELETE_ACL | CREATE_ACL | DROP_ACL | GRANT_ACL | \
|
|
REFERENCES_ACL | INDEX_ACL | ALTER_ACL)
|
|
#define COL_ACLS (SELECT_ACL | INSERT_ACL | UPDATE_ACL | REFERENCES_ACL)
|
|
#define GLOBAL_ACLS (SELECT_ACL | INSERT_ACL | UPDATE_ACL | DELETE_ACL |\
|
|
CREATE_ACL | DROP_ACL | RELOAD_ACL | SHUTDOWN_ACL |\
|
|
PROCESS_ACL | FILE_ACL | GRANT_ACL | REFERENCES_ACL |\
|
|
INDEX_ACL | ALTER_ACL)
|
|
#define NO_ACCESS 32768
|
|
|
|
/* defines to change the above bits to how things are stored in tables */
|
|
|
|
#define fix_rights_for_db(A) (((A) & 63) | (((A) & ~63) << 4))
|
|
#define get_rights_for_db(A) (((A) & 63) | (((A) & ~63) >> 4))
|
|
#define fix_rights_for_table(A) (((A) & 63) | (((A) & ~63) << 4))
|
|
#define get_rights_for_table(A) (((A) & 63) | (((A) & ~63) >> 4))
|
|
#define fix_rights_for_column(A) (((A) & COL_ACLS) | ((A & ~COL_ACLS) << 7))
|
|
#define get_rights_for_column(A) (((A) & COL_ACLS) | ((A & ~COL_ACLS) >> 7))
|
|
|
|
/* prototypes */
|
|
|
|
int acl_init(bool dont_read_acl_tables);
|
|
void acl_reload(void);
|
|
void acl_free(bool end=0);
|
|
uint acl_get(const char *host, const char *ip, const char *bin_ip,
|
|
const char *user, const char *db);
|
|
uint acl_getroot(const char *host, const char *ip, const char *user,
|
|
const char *password,const char *scramble,char **priv_user,
|
|
bool old_ver);
|
|
bool acl_check_host(const char *host, const char *ip);
|
|
bool change_password(THD *thd, const char *host, const char *user,
|
|
char *password);
|
|
int mysql_grant(THD *thd, const char *db, List <LEX_USER> &user_list,
|
|
uint rights, bool revoke);
|
|
int mysql_table_grant(THD *thd, TABLE_LIST *table, List <LEX_USER> &user_list,
|
|
List <LEX_COLUMN> &column_list, uint rights,
|
|
bool revoke);
|
|
int grant_init(void);
|
|
void grant_free(void);
|
|
void grant_reload(void);
|
|
bool check_grant(THD *thd, uint want_access, TABLE_LIST *tables,
|
|
uint show_command=0, bool dont_print_error=0);
|
|
bool check_grant_column (THD *thd,TABLE *table, const char *name,uint length,
|
|
uint show_command=0);
|
|
bool check_grant_all_columns(THD *thd, uint want_access, TABLE *table);
|
|
bool check_grant_db(THD *thd,const char *db);
|
|
uint get_table_grant(THD *thd, TABLE_LIST *table);
|
|
uint get_column_grant(THD *thd, TABLE_LIST *table, Field *field);
|
|
int mysql_show_grants(THD *thd, LEX_USER *user);
|