PostgreSQL Source Code git master
Loading...
Searching...
No Matches
user.h
Go to the documentation of this file.
1/*-------------------------------------------------------------------------
2 *
3 * user.h
4 * Commands for manipulating roles (formerly called users).
5 *
6 *
7 * src/include/commands/user.h
8 *
9 *-------------------------------------------------------------------------
10 */
11#ifndef USER_H
12#define USER_H
13
15#include "libpq/crypt.h"
16#include "nodes/parsenodes.h"
17#include "parser/parse_node.h"
18#include "utils/guc.h"
19
20/* GUCs */
21extern PGDLLIMPORT int Password_encryption; /* values from enum PasswordType */
23
24/* Hook to check passwords in CreateRole() and AlterRole() */
26
28
30extern Oid AlterRole(ParseState *pstate, AlterRoleStmt *stmt);
32extern void DropRole(DropRoleStmt *stmt);
33extern void GrantRole(ParseState *pstate, GrantRoleStmt *stmt);
34extern ObjectAddress RenameRole(const char *oldname, const char *newname);
38
39extern bool check_createrole_self_grant(char **newval, void **extra,
41extern void assign_createrole_self_grant(const char *newval, void *extra);
42
43#endif /* USER_H */
#define PGDLLIMPORT
Definition c.h:1334
PasswordType
Definition crypt.h:41
#define newval
GucSource
Definition guc.h:112
#define stmt
static char * username
Definition initdb.c:153
static rewind_source * source
Definition pg_rewind.c:89
uint64_t Datum
Definition postgres.h:70
unsigned int Oid
static int fb(int x)
Definition pg_list.h:54
ObjectAddress RenameRole(const char *oldname, const char *newname)
Definition user.c:1335
PGDLLIMPORT int Password_encryption
Definition user.c:86
void ReassignOwnedObjects(ReassignOwnedStmt *stmt)
Definition user.c:1612
Oid AlterRole(ParseState *pstate, AlterRoleStmt *stmt)
Definition user.c:620
Oid AlterRoleSet(AlterRoleSetStmt *stmt)
Definition user.c:1001
PGDLLIMPORT check_password_hook_type check_password_hook
Definition user.c:92
bool check_createrole_self_grant(char **newval, void **extra, GucSource source)
Definition user.c:2518
void assign_createrole_self_grant(const char *newval, void *extra)
Definition user.c:2571
void(* check_password_hook_type)(const char *username, const char *shadow_pass, PasswordType password_type, Datum validuntil_time, bool validuntil_null)
Definition user.h:25
void DropRole(DropRoleStmt *stmt)
Definition user.c:1091
Oid CreateRole(ParseState *pstate, CreateRoleStmt *stmt)
Definition user.c:133
PGDLLIMPORT char * createrole_self_grant
Definition user.c:87
void GrantRole(ParseState *pstate, GrantRoleStmt *stmt)
Definition user.c:1481
List * roleSpecsToIds(List *memberNames)
Definition user.c:1653
void DropOwnedObjects(DropOwnedStmt *stmt)
Definition user.c:1584