2 * Copyright (c) 1997 - 2006 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the Institute nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50 static krb5_error_code
51 DB_close(krb5_context context
, HDB
*db
)
53 DB
*d
= (DB
*)db
->hdb_db
;
54 DBC
*dbcp
= (DBC
*)db
->hdb_dbc
;
56 (*dbcp
->c_close
)(dbcp
);
62 static krb5_error_code
63 DB_destroy(krb5_context context
, HDB
*db
)
67 ret
= hdb_clear_master_key (context
, db
);
73 static krb5_error_code
74 DB_lock(krb5_context context
, HDB
*db
, int operation
)
76 DB
*d
= (DB
*)db
->hdb_db
;
80 if (db
->lock_count
> 1) {
82 if (db
->lock_count
== HDB_WLOCK
|| db
->lock_count
== operation
)
87 return HDB_ERR_CANT_LOCK_DB
;
88 ret
= hdb_lock(fd
, operation
);
95 static krb5_error_code
96 DB_unlock(krb5_context context
, HDB
*db
)
98 DB
*d
= (DB
*)db
->hdb_db
;
101 if (db
->lock_count
> 1) {
105 heim_assert(db
->lock_count
== 1, "HDB lock/unlock sequence does not match");
108 if ((*d
->fd
)(d
, &fd
))
109 return HDB_ERR_CANT_LOCK_DB
;
110 return hdb_unlock(fd
);
114 static krb5_error_code
115 DB_seq(krb5_context context
, HDB
*db
,
116 unsigned flags
, hdb_entry_ex
*entry
, int flag
)
119 DBC
*dbcp
= db
->hdb_dbc
;
120 krb5_data key_data
, data
;
123 memset(&key
, 0, sizeof(DBT
));
124 memset(&value
, 0, sizeof(DBT
));
125 if ((*db
->hdb_lock
)(context
, db
, HDB_RLOCK
))
126 return HDB_ERR_DB_INUSE
;
127 code
= (*dbcp
->c_get
)(dbcp
, &key
, &value
, flag
);
128 (*db
->hdb_unlock
)(context
, db
); /* XXX check value */
129 if (code
== DB_NOTFOUND
)
130 return HDB_ERR_NOENTRY
;
134 key_data
.data
= key
.data
;
135 key_data
.length
= key
.size
;
136 data
.data
= value
.data
;
137 data
.length
= value
.size
;
138 memset(entry
, 0, sizeof(*entry
));
139 if (hdb_value2entry(context
, &data
, &entry
->entry
))
140 return DB_seq(context
, db
, flags
, entry
, DB_NEXT
);
141 if (db
->hdb_master_key_set
&& (flags
& HDB_F_DECRYPT
)) {
142 code
= hdb_unseal_keys (context
, db
, &entry
->entry
);
144 hdb_free_entry (context
, entry
);
146 if (entry
->entry
.principal
== NULL
) {
147 entry
->entry
.principal
= malloc(sizeof(*entry
->entry
.principal
));
148 if (entry
->entry
.principal
== NULL
) {
149 hdb_free_entry (context
, entry
);
150 krb5_set_error_message(context
, ENOMEM
, "malloc: out of memory");
153 hdb_key2principal(context
, &key_data
, entry
->entry
.principal
);
160 static krb5_error_code
161 DB_firstkey(krb5_context context
, HDB
*db
, unsigned flags
, hdb_entry_ex
*entry
)
163 return DB_seq(context
, db
, flags
, entry
, DB_FIRST
);
167 static krb5_error_code
168 DB_nextkey(krb5_context context
, HDB
*db
, unsigned flags
, hdb_entry_ex
*entry
)
170 return DB_seq(context
, db
, flags
, entry
, DB_NEXT
);
173 static krb5_error_code
174 DB_rename(krb5_context context
, HDB
*db
, const char *new_name
)
179 asprintf(&old
, "%s.db", db
->hdb_name
);
180 asprintf(&new, "%s.db", new_name
);
181 ret
= rename(old
, new);
188 db
->hdb_name
= strdup(new_name
);
192 static krb5_error_code
193 DB__get(krb5_context context
, HDB
*db
, krb5_data key
, krb5_data
*reply
)
195 DB
*d
= (DB
*)db
->hdb_db
;
199 memset(&k
, 0, sizeof(DBT
));
200 memset(&v
, 0, sizeof(DBT
));
204 if ((code
= (*db
->hdb_lock
)(context
, db
, HDB_RLOCK
)))
206 code
= (*d
->get
)(d
, NULL
, &k
, &v
, 0);
207 (*db
->hdb_unlock
)(context
, db
);
208 if(code
== DB_NOTFOUND
)
209 return HDB_ERR_NOENTRY
;
213 krb5_data_copy(reply
, v
.data
, v
.size
);
217 static krb5_error_code
218 DB__put(krb5_context context
, HDB
*db
, int replace
,
219 krb5_data key
, krb5_data value
)
221 DB
*d
= (DB
*)db
->hdb_db
;
225 memset(&k
, 0, sizeof(DBT
));
226 memset(&v
, 0, sizeof(DBT
));
231 v
.size
= value
.length
;
233 if ((code
= (*db
->hdb_lock
)(context
, db
, HDB_WLOCK
)))
235 code
= (*d
->put
)(d
, NULL
, &k
, &v
, replace
? 0 : DB_NOOVERWRITE
);
236 (*db
->hdb_unlock
)(context
, db
);
237 if(code
== DB_KEYEXIST
)
238 return HDB_ERR_EXISTS
;
244 static krb5_error_code
245 DB__del(krb5_context context
, HDB
*db
, krb5_data key
)
247 DB
*d
= (DB
*)db
->hdb_db
;
249 krb5_error_code code
;
250 memset(&k
, 0, sizeof(DBT
));
254 code
= (*db
->hdb_lock
)(context
, db
, HDB_WLOCK
);
257 code
= (*d
->del
)(d
, NULL
, &k
, 0);
258 (*db
->hdb_unlock
)(context
, db
);
259 if(code
== DB_NOTFOUND
)
260 return HDB_ERR_NOENTRY
;
266 static krb5_error_code
267 DB_open(krb5_context context
, HDB
*db
, int flags
, mode_t mode
)
276 myflags
|= DB_CREATE
;
281 if((flags
& O_ACCMODE
) == O_RDONLY
)
282 myflags
|= DB_RDONLY
;
285 myflags
|= DB_TRUNCATE
;
287 asprintf(&fn
, "%s.db", db
->hdb_name
);
289 krb5_set_error_message(context
, ENOMEM
, "malloc: out of memory");
292 if (db_create(&d
, NULL
, 0) != 0) {
294 krb5_set_error_message(context
, ENOMEM
, "malloc: out of memory");
299 #if (DB_VERSION_MAJOR >= 4) && (DB_VERSION_MINOR >= 1)
300 ret
= (*d
->open
)(db
->hdb_db
, NULL
, fn
, NULL
, DB_BTREE
, myflags
, mode
);
302 ret
= (*d
->open
)(db
->hdb_db
, fn
, NULL
, DB_BTREE
, myflags
, mode
);
306 /* try to open without .db extension */
307 #if (DB_VERSION_MAJOR >= 4) && (DB_VERSION_MINOR >= 1)
308 ret
= (*d
->open
)(db
->hdb_db
, NULL
, db
->hdb_name
, NULL
, DB_BTREE
,
311 ret
= (*d
->open
)(db
->hdb_db
, db
->hdb_name
, NULL
, DB_BTREE
,
318 krb5_set_error_message(context
, ret
, "opening %s: %s",
319 db
->hdb_name
, strerror(ret
));
324 ret
= (*d
->cursor
)(d
, NULL
, &dbc
, 0);
326 krb5_set_error_message(context
, ret
, "d->cursor: %s", strerror(ret
));
331 if((flags
& O_ACCMODE
) == O_RDONLY
)
332 ret
= hdb_check_db_format(context
, db
);
334 ret
= hdb_init_db(context
, db
);
335 if(ret
== HDB_ERR_NOENTRY
)
338 DB_close(context
, db
);
339 krb5_set_error_message(context
, ret
, "hdb_open: failed %s database %s",
340 (flags
& O_ACCMODE
) == O_RDONLY
?
341 "checking format of" : "initialize",
349 hdb_db_create(krb5_context context
, HDB
**db
,
350 const char *filename
)
352 *db
= calloc(1, sizeof(**db
));
354 krb5_set_error_message(context
, ENOMEM
, "malloc: out of memory");
358 (*db
)->hdb_db
= NULL
;
359 (*db
)->hdb_name
= strdup(filename
);
360 if ((*db
)->hdb_name
== NULL
) {
363 krb5_set_error_message(context
, ENOMEM
, "malloc: out of memory");
366 (*db
)->hdb_master_key_set
= 0;
367 (*db
)->hdb_openp
= 0;
368 (*db
)->hdb_capability_flags
= HDB_CAP_F_HANDLE_ENTERPRISE_PRINCIPAL
;
369 (*db
)->hdb_open
= DB_open
;
370 (*db
)->hdb_close
= DB_close
;
371 (*db
)->hdb_fetch_kvno
= _hdb_fetch_kvno
;
372 (*db
)->hdb_store
= _hdb_store
;
373 (*db
)->hdb_remove
= _hdb_remove
;
374 (*db
)->hdb_firstkey
= DB_firstkey
;
375 (*db
)->hdb_nextkey
= DB_nextkey
;
376 (*db
)->hdb_lock
= DB_lock
;
377 (*db
)->hdb_unlock
= DB_unlock
;
378 (*db
)->hdb_rename
= DB_rename
;
379 (*db
)->hdb__get
= DB__get
;
380 (*db
)->hdb__put
= DB__put
;
381 (*db
)->hdb__del
= DB__del
;
382 (*db
)->hdb_destroy
= DB_destroy
;
385 #endif /* HAVE_DB3 */