1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
/*
* $Source$
* $Author$
* $Id$
*
* Copyright 1990,1991 by the Massachusetts Institute of Technology.
* All Rights Reserved.
*
* Export of this software from the United States of America may
* require a specific license from the United States Government.
* It is the responsibility of any person or organization contemplating
* export to obtain such a license before exporting.
*
* WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
* distribute this software and its documentation for any purpose and
* without fee is hereby granted, provided that the above copyright
* notice appear in all copies and that both that copyright notice and
* this permission notice appear in supporting documentation, and that
* the name of M.I.T. not be used in advertising or publicity pertaining
* to distribution of the software without specific, written prior
* permission. M.I.T. makes no representations about the suitability of
* this software for any purpose. It is provided "as is" without express
* or implied warranty.
*
*
* KDC Database interface definitions.
*/
#ifndef KRB5_KDB5_DBM__
#define KRB5_KDB5_DBM__
/* exclusive or shared lock flags */
#define KRB5_DBM_SHARED 0
#define KRB5_DBM_EXCLUSIVE 1
#define KRB5_DB_SHARED KRB5_DBM_SHARED
#define KRB5_DB_EXCLUSIVE KRB5_DBM_EXCLUSIVE
/* #define these to avoid an indirection function; for future implementations,
these may be redirected from a dispatch table/routine */
#define krb5_dbm_db_set_name krb5_db_set_name
#define krb5_dbm_db_set_nonblocking krb5_db_set_nonblocking
#define krb5_dbm_db_init krb5_db_init
#define krb5_dbm_db_fini krb5_db_fini
#define krb5_dbm_db_get_age krb5_db_get_age
#define krb5_dbm_db_create krb5_db_create
#define krb5_dbm_db_destroy kdb5_db_destroy
#define krb5_dbm_db_rename krb5_db_rename
#define krb5_dbm_db_get_principal krb5_db_get_principal
#define krb5_dbm_db_free_principal krb5_db_free_principal
#define krb5_dbm_db_put_principal krb5_db_put_principal
#define krb5_dbm_db_delete_principal krb5_db_delete_principal
#define krb5_dbm_db_iterate krb5_db_iterate
#define krb5_dbm_db_lock krb5_db_lock
#define krb5_dbm_db_unlock krb5_db_unlock
#define krb5_dbm_db_set_lockmode krb5_db_set_lockmode
#define krb5_dbm_db_close_database krb5_db_close_database
#define krb5_dbm_db_open_database krb5_db_open_database
/* libkdb.spec */
krb5_error_code krb5_dbm_db_set_name PROTOTYPE((char * ));
krb5_error_code krb5_dbm_db_init PROTOTYPE((void ));
krb5_error_code krb5_dbm_db_fini PROTOTYPE((void ));
krb5_error_code krb5_dbm_db_get_age PROTOTYPE((char *, time_t * ));
krb5_error_code krb5_dbm_db_create PROTOTYPE((char * ));
krb5_error_code krb5_dbm_db_destroy PROTOTYPE((char * ));
krb5_error_code krb5_dbm_db_rename PROTOTYPE((char *, char * ));
krb5_error_code krb5_dbm_db_get_principal PROTOTYPE((krb5_principal,
krb5_db_entry *,
int *,
krb5_boolean * ));
void krb5_dbm_db_free_principal PROTOTYPE((krb5_db_entry *, int ));
krb5_error_code krb5_dbm_db_put_principal PROTOTYPE((krb5_db_entry *,
int * ));
krb5_error_code krb5_dbm_db_iterate
PROTOTYPE((krb5_error_code (*) PROTOTYPE((krb5_pointer,
krb5_db_entry *)),
krb5_pointer ));
/* need to play games here, since we take a pointer and the real thing,
and it might be narrow. */
#ifdef NARROW_PROTOTYPES
krb5_error_code krb5_dbm_db_set_nonblocking PROTOTYPE((krb5_boolean,
krb5_boolean * ));
krb5_boolean krb5_dbm_db_set_lockmode
PROTOTYPE((krb5_boolean ));
#else
krb5_error_code krb5_dbm_db_set_nonblocking PROTOTYPE((int, /* krb5_boolean */
krb5_boolean * ));
krb5_boolean krb5_dbm_db_set_lockmode
PROTOTYPE((int /* krb5_boolean */ ));
#endif /* NARROW_PROTOTYPES */
krb5_error_code krb5_dbm_db_open_database PROTOTYPE ((void));
krb5_error_code krb5_dbm_db_close_database PROTOTYPE ((void));
#endif /* KRB5_KDB5_DBM__ */
|