mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-27 04:43:02 +01:00
94 lines
2.9 KiB
C
94 lines
2.9 KiB
C
|
/*
|
||
|
* PROGRAM: JRD Access Method
|
||
|
* MODULE: scl.h
|
||
|
* DESCRIPTION: Security class definitions
|
||
|
*
|
||
|
* The contents of this file are subject to the Interbase Public
|
||
|
* License Version 1.0 (the "License"); you may not use this file
|
||
|
* except in compliance with the License. You may obtain a copy
|
||
|
* of the License at http://www.Inprise.com/IPL.html
|
||
|
*
|
||
|
* Software distributed under the License is distributed on an
|
||
|
* "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express
|
||
|
* or implied. See the License for the specific language governing
|
||
|
* rights and limitations under the License.
|
||
|
*
|
||
|
* The Original Code was created by Inprise Corporation
|
||
|
* and its predecessors. Portions created by Inprise Corporation are
|
||
|
* Copyright (C) Inprise Corporation.
|
||
|
*
|
||
|
* All Rights Reserved.
|
||
|
* Contributor(s): ______________________________________.
|
||
|
*/
|
||
|
|
||
|
#ifndef JRD_SCL_H
|
||
|
#define JRD_SCL_H
|
||
|
|
||
|
/* Security class definition */
|
||
|
|
||
|
#ifndef GATEWAY
|
||
|
typedef struct scl {
|
||
|
struct blk scl_header;
|
||
|
struct scl *scl_next; /* Next security class in system */
|
||
|
USHORT scl_flags; /* Access permissions */
|
||
|
TEXT scl_name[2];
|
||
|
} *SCL;
|
||
|
#else
|
||
|
typedef struct scl {
|
||
|
struct blk scl_header;
|
||
|
struct sbm *scl_flags; /* Access permissions */
|
||
|
} *SCL;
|
||
|
#endif
|
||
|
|
||
|
#define SCL_read 1 /* Read access */
|
||
|
#define SCL_write 2 /* Write access */
|
||
|
#define SCL_delete 4 /* Delete access */
|
||
|
#define SCL_control 8 /* Control access */
|
||
|
#define SCL_grant 16 /* Grant privileges */
|
||
|
#define SCL_exists 32 /* At least ACL exists */
|
||
|
#define SCL_scanned 64 /* But we did look */
|
||
|
#define SCL_protect 128 /* Change protection */
|
||
|
#define SCL_corrupt 256 /* ACL does look too good */
|
||
|
#define SCL_sql_insert 512
|
||
|
#define SCL_sql_delete 1024
|
||
|
#define SCL_sql_update 2048
|
||
|
#define SCL_sql_references 4096
|
||
|
#define SCL_execute 8192
|
||
|
|
||
|
|
||
|
|
||
|
/* information about the user */
|
||
|
|
||
|
typedef struct usr {
|
||
|
struct blk usr_header;
|
||
|
TEXT *usr_user_name; /* User name */
|
||
|
TEXT *usr_sql_role_name; /* Role name */
|
||
|
TEXT *usr_project_name; /* Project name */
|
||
|
TEXT *usr_org_name; /* Organizaion name */
|
||
|
TEXT *usr_node_name; /* Network node name */
|
||
|
USHORT usr_user_id; /* User id */
|
||
|
USHORT usr_group_id; /* Group id */
|
||
|
USHORT usr_node_id; /* Node id */
|
||
|
USHORT usr_flags; /* Misc. crud */
|
||
|
#ifdef GATEWAY
|
||
|
struct rel *usr_relations; /* Relations owned by the user */
|
||
|
struct sbm *usr_security_class; /* Security information for user */
|
||
|
TEXT *usr_dbms_user; /* Name of user as defined by DBMS */
|
||
|
SLONG usr_dbms_uid; /* Number of user as defined by DBMS */
|
||
|
#endif
|
||
|
TEXT usr_data[2];
|
||
|
} *USR;
|
||
|
|
||
|
#define USR_locksmith 1 /* User has great karma */
|
||
|
#define USR_dba 2 /* User has DBA privileges */
|
||
|
#define USR_owner 4 /* User owns database */
|
||
|
|
||
|
/*
|
||
|
* User name assigned to any user granted USR_locksmith rights.
|
||
|
* If this name is changed, modify also the trigger in
|
||
|
* jrd/grant.gdl (which turns into jrd/trig.h.
|
||
|
*/
|
||
|
#define SYSDBA_USER_NAME "SYSDBA"
|
||
|
|
||
|
#endif /* JRD_SCL_H */
|