acl.h
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:5k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * acl.h
  4.  *   Definition of (and support for) access control list data structures.
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: acl.h,v 1.20.2.1 1999/07/30 17:07:22 scrappy Exp $
  10.  *
  11.  * NOTES
  12.  *   For backward-compatability purposes we have to allow there
  13.  *   to be a null ACL in a pg_class tuple.  This will be defined as
  14.  *   meaning "no protection" (i.e., old catalogs get old semantics).
  15.  *
  16.  *   The AclItems in an ACL array are currently kept in sorted order.
  17.  *   Things will break hard if you change that without changing the
  18.  *   code wherever this is included.
  19.  *
  20.  *-------------------------------------------------------------------------
  21.  */
  22. #ifndef ACL_H
  23. #define ACL_H
  24. #include "nodes/parsenodes.h"
  25. #include "utils/array.h"
  26. #include "utils/memutils.h"
  27. /*
  28.  * AclId system identifier for the user, group, etc.
  29.  * XXX currently UNIX uid for users...
  30.  */
  31. typedef uint32 AclId;
  32. #define ACL_ID_WORLD 0 /* XXX only idtype should be checked */
  33. /*
  34.  * AclIdType tag that describes if the AclId is a user, group, etc.
  35.  */
  36. typedef uint8 AclIdType;
  37. #define ACL_IDTYPE_WORLD 0x00
  38. #define ACL_IDTYPE_UID 0x01 /* user id - from pg_shadow */
  39. #define ACL_IDTYPE_GID 0x02 /* group id - from pg_group */
  40. /*
  41.  * AclMode the actual permissions
  42.  * XXX should probably use bit.h routines.
  43.  * XXX should probably also stuff the modechg cruft in the
  44.  * high bits, too.
  45.  */
  46. typedef uint8 AclMode;
  47. #define ACL_NO 0 /* no permissions */
  48. #define ACL_AP (1<<0) /* append */
  49. #define ACL_RD (1<<1) /* read */
  50. #define ACL_WR (1<<2) /* write (append/delete/replace) */
  51. #define ACL_RU (1<<3) /* place rules */
  52. #define N_ACL_MODES 4
  53. #define ACL_MODECHG_ADD 1
  54. #define ACL_MODECHG_DEL 2
  55. #define ACL_MODECHG_EQL 3
  56. /* change this line if you want to set the default acl permission  */
  57. #define ACL_WORLD_DEFAULT (ACL_NO)
  58. /* #define ACL_WORLD_DEFAULT (ACL_RD|ACL_WR|ACL_AP|ACL_RU) */
  59. #define ACL_OWNER_DEFAULT (ACL_RD|ACL_WR|ACL_AP|ACL_RU)
  60. /*
  61.  * AclItem
  62.  */
  63. typedef struct AclItem
  64. {
  65. AclId ai_id;
  66. AclIdType ai_idtype;
  67. AclMode ai_mode;
  68. /*
  69.  * This is actually type 'aclitem', and we want a fixed size for
  70.  * for all platforms, so we pad this with dummies.
  71.  */
  72. char dummy1, dummy2;
  73. } AclItem;
  74. /* Note: if the size of AclItem changes,
  75.    change the aclitem typlen in pg_type.h */
  76. /*
  77.  * The value of the first dimension-array element. Since these arrays
  78.  * always have a lower-bound of 0, this is the same as the number of
  79.  * elements in the array.
  80.  */
  81. #define ARR_DIM0(a) (((unsigned *) (((char *) a) + sizeof(ArrayType)))[0])
  82. /*
  83.  * Acl a one-dimensional POSTGRES array of AclItem
  84.  */
  85. typedef ArrayType Acl;
  86. #define ACL_NUM(ACL) ARR_DIM0(ACL)
  87. #define ACL_DAT(ACL) ((AclItem *) ARR_DATA_PTR(ACL))
  88. #define ACL_N_SIZE(N) 
  89. ((unsigned) (ARR_OVERHEAD(1) + ((N) * sizeof(AclItem))))
  90. #define ACL_SIZE(ACL) ARR_SIZE(ACL)
  91. /*
  92.  * IdList a one-dimensional POSTGRES array of AclId
  93.  */
  94. typedef ArrayType IdList;
  95. #define IDLIST_NUM(IDL) ARR_DIM0(IDL)
  96. #define IDLIST_DAT(IDL) ((AclId *) ARR_DATA_PTR(IDL))
  97. #define IDLIST_N_SIZE(N) 
  98. ((unsigned) (ARR_OVERHEAD(1) + ((N) * sizeof(AclId))))
  99. #define IDLIST_SIZE(IDL) ARR_SIZE(IDL)
  100. #define ACL_MODECHG_STR "+-=" /* list of valid characters */
  101. #define ACL_MODECHG_ADD_CHR '+'
  102. #define ACL_MODECHG_DEL_CHR '-'
  103. #define ACL_MODECHG_EQL_CHR '='
  104. #define ACL_MODE_STR "arwR" /* list of valid characters */
  105. #define ACL_MODE_AP_CHR 'a'
  106. #define ACL_MODE_RD_CHR 'r'
  107. #define ACL_MODE_WR_CHR 'w'
  108. #define ACL_MODE_RU_CHR 'R'
  109. /* result codes for pg_aclcheck */
  110. #define ACLCHECK_OK   0
  111. #define ACLCHECK_NO_PRIV   1
  112. #define ACLCHECK_NO_CLASS   2
  113. #define ACLCHECK_NOT_OWNER   3
  114. /* warning messages.  set these in aclchk.c. */
  115. extern char *aclcheck_error_strings[];
  116. /*
  117.  * Enable ACL execution tracing and table dumps
  118.  */
  119. /*#define ACLDEBUG_TRACE*/
  120. /*
  121.  * routines used internally (parser, etc.)
  122.  */
  123. extern Acl *aclownerdefault(char *relname, AclId ownerid);
  124. extern Acl *acldefault(char *relname);
  125. extern Acl *aclinsert3(Acl *old_acl, AclItem *mod_aip, unsigned modechg);
  126. extern char *aclmakepriv(char *old_privlist, char new_priv);
  127. extern char *aclmakeuser(char *user_type, char *user);
  128. extern ChangeACLStmt *makeAclStmt(char *privs, List *rel_list, char *grantee,
  129. char grant_or_revoke);
  130. /*
  131.  * exported routines (from acl.c)
  132.  */
  133. extern Acl *makeacl(int n);
  134. extern AclItem *aclitemin(char *s);
  135. extern char *aclitemout(AclItem *aip);
  136. extern Acl *aclinsert(Acl *old_acl, AclItem *mod_aip);
  137. extern Acl *aclremove(Acl *old_acl, AclItem *mod_aip);
  138. extern int32 aclcontains(Acl *acl, AclItem *aip);
  139. /*
  140.  * prototypes for functions in aclchk.c
  141.  */
  142. extern void ChangeAcl(char *relname, AclItem *mod_aip, unsigned modechg);
  143. extern AclId get_grosysid(char *groname);
  144. extern char *get_groname(AclId grosysid);
  145. extern int32 pg_aclcheck(char *relname, char *usename, AclMode mode);
  146. extern int32 pg_ownercheck(char *usename, char *value, int cacheid);
  147. extern int32 pg_func_ownercheck(char *usename, char *funcname,
  148.    int nargs, Oid *arglist);
  149. extern int32 pg_aggr_ownercheck(char *usename, char *aggname,
  150.    Oid basetypeID);
  151. #endif  /* ACL_H */