sql_acl.h
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  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 as published by
  5.    the Free Software Foundation; either version 2 of the License, or
  6.    (at your option) any later version.
  7.    
  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU General Public License
  14.    along with this program; if not, write to the Free Software
  15.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  16. #define SELECT_ACL 1
  17. #define INSERT_ACL 2
  18. #define UPDATE_ACL 4
  19. #define DELETE_ACL 8
  20. #define CREATE_ACL 16
  21. #define DROP_ACL 32
  22. #define RELOAD_ACL 64
  23. #define SHUTDOWN_ACL 128
  24. #define PROCESS_ACL 256
  25. #define FILE_ACL 512
  26. #define GRANT_ACL 1024
  27. #define REFERENCES_ACL 2048
  28. #define INDEX_ACL 4096
  29. #define ALTER_ACL 8192
  30. #define EXTRA_ACL 16384
  31. #define DB_ACLS (UPDATE_ACL | SELECT_ACL | INSERT_ACL | 
  32.  DELETE_ACL | CREATE_ACL | DROP_ACL | GRANT_ACL | 
  33.  REFERENCES_ACL | INDEX_ACL | ALTER_ACL)
  34. #define TABLE_ACLS (SELECT_ACL | INSERT_ACL | UPDATE_ACL | 
  35.  DELETE_ACL | CREATE_ACL | DROP_ACL | GRANT_ACL | 
  36.  REFERENCES_ACL | INDEX_ACL | ALTER_ACL)
  37. #define COL_ACLS (SELECT_ACL | INSERT_ACL | UPDATE_ACL | REFERENCES_ACL)
  38. #define GLOBAL_ACLS (SELECT_ACL | INSERT_ACL | UPDATE_ACL | DELETE_ACL |
  39.  CREATE_ACL | DROP_ACL |  RELOAD_ACL | SHUTDOWN_ACL |
  40.  PROCESS_ACL | FILE_ACL | GRANT_ACL | REFERENCES_ACL |
  41.  INDEX_ACL | ALTER_ACL)
  42. #define NO_ACCESS 32768
  43. /* defines to change the above bits to how things are stored in tables */
  44. #define fix_rights_for_db(A) (((A) & 63) | (((A) & ~63) << 4))
  45. #define get_rights_for_db(A) (((A) & 63) | (((A) & ~63) >> 4))
  46. #define fix_rights_for_table(A) (((A) & 63) | (((A) & ~63) << 4))
  47. #define get_rights_for_table(A) (((A) & 63) | (((A) & ~63) >> 4))
  48. #define fix_rights_for_column(A) (((A) & COL_ACLS) | ((A & ~COL_ACLS) << 7))
  49. #define get_rights_for_column(A) (((A) & COL_ACLS) | ((A & ~COL_ACLS) >> 7))
  50. /* prototypes */
  51. int  acl_init(bool dont_read_acl_tables);
  52. void acl_reload(void);
  53. void acl_free(bool end=0);
  54. uint acl_get(const char *host, const char *ip, const char *bin_ip,
  55.      const char *user, const char *db);
  56. uint acl_getroot(const char *host, const char *ip, const char *user,
  57.  const char *password,const char *scramble,char **priv_user,
  58.  bool old_ver);
  59. bool acl_check_host(const char *host, const char *ip);
  60. bool change_password(THD *thd, const char *host, const char *user,
  61.      char *password);
  62. int mysql_grant(THD *thd, const char *db, List <LEX_USER> &user_list,
  63. uint rights, bool revoke);
  64. int mysql_table_grant(THD *thd, TABLE_LIST *table, List <LEX_USER> &user_list,
  65.       List <LEX_COLUMN> &column_list, uint rights,
  66.       bool revoke);
  67. int  grant_init(void);
  68. void grant_free(void);
  69. void grant_reload(void);
  70. bool check_grant(THD *thd, uint want_access, TABLE_LIST *tables,
  71.  uint show_command=0);
  72. bool check_grant_column (THD *thd,TABLE *table, const char *name,uint length,
  73.  uint show_command=0);
  74. bool check_grant_all_columns(THD *thd, uint want_access, TABLE *table);
  75. bool check_grant_db(THD *thd,const char *db);
  76. uint get_table_grant(THD *thd, TABLE_LIST *table);
  77. uint get_column_grant(THD *thd, TABLE_LIST *table, Field *field);
  78. int mysql_show_grants(THD *thd, LEX_USER *user);