1 /* $NetBSD: db3.c,v 1.1.1.2 2014/04/24 12:45:28 pettai Exp $ */
4 * Copyright (c) 1997 - 2006 Kungliga Tekniska Högskolan
5 * (Royal Institute of Technology, Stockholm, Sweden).
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the Institute nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
52 static krb5_error_code
53 DB_close(krb5_context context
, HDB
*db
)
55 DB
*d
= (DB
*)db
->hdb_db
;
56 DBC
*dbcp
= (DBC
*)db
->hdb_dbc
;
58 (*dbcp
->c_close
)(dbcp
);
64 static krb5_error_code
65 DB_destroy(krb5_context context
, HDB
*db
)
69 ret
= hdb_clear_master_key (context
, db
);
75 static krb5_error_code
76 DB_lock(krb5_context context
, HDB
*db
, int operation
)
78 DB
*d
= (DB
*)db
->hdb_db
;
81 return HDB_ERR_CANT_LOCK_DB
;
82 return hdb_lock(fd
, operation
);
85 static krb5_error_code
86 DB_unlock(krb5_context context
, HDB
*db
)
88 DB
*d
= (DB
*)db
->hdb_db
;
91 return HDB_ERR_CANT_LOCK_DB
;
92 return hdb_unlock(fd
);
96 static krb5_error_code
97 DB_seq(krb5_context context
, HDB
*db
,
98 unsigned flags
, hdb_entry_ex
*entry
, int flag
)
101 DBC
*dbcp
= db
->hdb_dbc
;
102 krb5_data key_data
, data
;
105 memset(&key
, 0, sizeof(DBT
));
106 memset(&value
, 0, sizeof(DBT
));
107 if ((*db
->hdb_lock
)(context
, db
, HDB_RLOCK
))
108 return HDB_ERR_DB_INUSE
;
109 code
= (*dbcp
->c_get
)(dbcp
, &key
, &value
, flag
);
110 (*db
->hdb_unlock
)(context
, db
); /* XXX check value */
111 if (code
== DB_NOTFOUND
)
112 return HDB_ERR_NOENTRY
;
116 key_data
.data
= key
.data
;
117 key_data
.length
= key
.size
;
118 data
.data
= value
.data
;
119 data
.length
= value
.size
;
120 memset(entry
, 0, sizeof(*entry
));
121 if (hdb_value2entry(context
, &data
, &entry
->entry
))
122 return DB_seq(context
, db
, flags
, entry
, DB_NEXT
);
123 if (db
->hdb_master_key_set
&& (flags
& HDB_F_DECRYPT
)) {
124 code
= hdb_unseal_keys (context
, db
, &entry
->entry
);
126 hdb_free_entry (context
, entry
);
128 if (entry
->entry
.principal
== NULL
) {
129 entry
->entry
.principal
= malloc(sizeof(*entry
->entry
.principal
));
130 if (entry
->entry
.principal
== NULL
) {
131 hdb_free_entry (context
, entry
);
132 krb5_set_error_message(context
, ENOMEM
, "malloc: out of memory");
135 hdb_key2principal(context
, &key_data
, entry
->entry
.principal
);
142 static krb5_error_code
143 DB_firstkey(krb5_context context
, HDB
*db
, unsigned flags
, hdb_entry_ex
*entry
)
145 return DB_seq(context
, db
, flags
, entry
, DB_FIRST
);
149 static krb5_error_code
150 DB_nextkey(krb5_context context
, HDB
*db
, unsigned flags
, hdb_entry_ex
*entry
)
152 return DB_seq(context
, db
, flags
, entry
, DB_NEXT
);
155 static krb5_error_code
156 DB_rename(krb5_context context
, HDB
*db
, const char *new_name
)
161 asprintf(&old
, "%s.db", db
->hdb_name
);
162 asprintf(&new, "%s.db", new_name
);
163 ret
= rename(old
, new);
170 db
->hdb_name
= strdup(new_name
);
174 static krb5_error_code
175 DB__get(krb5_context context
, HDB
*db
, krb5_data key
, krb5_data
*reply
)
177 DB
*d
= (DB
*)db
->hdb_db
;
181 memset(&k
, 0, sizeof(DBT
));
182 memset(&v
, 0, sizeof(DBT
));
186 if ((code
= (*db
->hdb_lock
)(context
, db
, HDB_RLOCK
)))
188 code
= (*d
->get
)(d
, NULL
, &k
, &v
, 0);
189 (*db
->hdb_unlock
)(context
, db
);
190 if(code
== DB_NOTFOUND
)
191 return HDB_ERR_NOENTRY
;
195 krb5_data_copy(reply
, v
.data
, v
.size
);
199 static krb5_error_code
200 DB__put(krb5_context context
, HDB
*db
, int replace
,
201 krb5_data key
, krb5_data value
)
203 DB
*d
= (DB
*)db
->hdb_db
;
207 memset(&k
, 0, sizeof(DBT
));
208 memset(&v
, 0, sizeof(DBT
));
213 v
.size
= value
.length
;
215 if ((code
= (*db
->hdb_lock
)(context
, db
, HDB_WLOCK
)))
217 code
= (*d
->put
)(d
, NULL
, &k
, &v
, replace
? 0 : DB_NOOVERWRITE
);
218 (*db
->hdb_unlock
)(context
, db
);
219 if(code
== DB_KEYEXIST
)
220 return HDB_ERR_EXISTS
;
226 static krb5_error_code
227 DB__del(krb5_context context
, HDB
*db
, krb5_data key
)
229 DB
*d
= (DB
*)db
->hdb_db
;
231 krb5_error_code code
;
232 memset(&k
, 0, sizeof(DBT
));
236 code
= (*db
->hdb_lock
)(context
, db
, HDB_WLOCK
);
239 code
= (*d
->del
)(d
, NULL
, &k
, 0);
240 (*db
->hdb_unlock
)(context
, db
);
241 if(code
== DB_NOTFOUND
)
242 return HDB_ERR_NOENTRY
;
248 static krb5_error_code
249 DB_open(krb5_context context
, HDB
*db
, int flags
, mode_t mode
)
258 myflags
|= DB_CREATE
;
263 if((flags
& O_ACCMODE
) == O_RDONLY
)
264 myflags
|= DB_RDONLY
;
267 myflags
|= DB_TRUNCATE
;
269 asprintf(&fn
, "%s.db", db
->hdb_name
);
271 krb5_set_error_message(context
, ENOMEM
, "malloc: out of memory");
274 if (db_create(&d
, NULL
, 0) != 0) {
276 krb5_set_error_message(context
, ENOMEM
, "malloc: out of memory");
281 #if (DB_VERSION_MAJOR > 4) || ((DB_VERSION_MAJOR == 4) && (DB_VERSION_MINOR >= 1))
282 ret
= (*d
->open
)(db
->hdb_db
, NULL
, fn
, NULL
, DB_BTREE
, myflags
, mode
);
284 ret
= (*d
->open
)(db
->hdb_db
, fn
, NULL
, DB_BTREE
, myflags
, mode
);
288 /* try to open without .db extension */
289 #if (DB_VERSION_MAJOR > 4) || ((DB_VERSION_MAJOR == 4) && (DB_VERSION_MINOR >= 1))
290 ret
= (*d
->open
)(db
->hdb_db
, NULL
, db
->hdb_name
, NULL
, DB_BTREE
,
293 ret
= (*d
->open
)(db
->hdb_db
, db
->hdb_name
, NULL
, DB_BTREE
,
300 krb5_set_error_message(context
, ret
, "opening %s: %s",
301 db
->hdb_name
, strerror(ret
));
306 ret
= (*d
->cursor
)(d
, NULL
, &dbc
, 0);
308 krb5_set_error_message(context
, ret
, "d->cursor: %s", strerror(ret
));
313 if((flags
& O_ACCMODE
) == O_RDONLY
)
314 ret
= hdb_check_db_format(context
, db
);
316 ret
= hdb_init_db(context
, db
);
317 if(ret
== HDB_ERR_NOENTRY
)
320 DB_close(context
, db
);
321 krb5_set_error_message(context
, ret
, "hdb_open: failed %s database %s",
322 (flags
& O_ACCMODE
) == O_RDONLY
?
323 "checking format of" : "initialize",
331 hdb_db_create(krb5_context context
, HDB
**db
,
332 const char *filename
)
334 *db
= calloc(1, sizeof(**db
));
336 krb5_set_error_message(context
, ENOMEM
, "malloc: out of memory");
340 (*db
)->hdb_db
= NULL
;
341 (*db
)->hdb_name
= strdup(filename
);
342 if ((*db
)->hdb_name
== NULL
) {
345 krb5_set_error_message(context
, ENOMEM
, "malloc: out of memory");
348 (*db
)->hdb_master_key_set
= 0;
349 (*db
)->hdb_openp
= 0;
350 (*db
)->hdb_capability_flags
= HDB_CAP_F_HANDLE_ENTERPRISE_PRINCIPAL
;
351 (*db
)->hdb_open
= DB_open
;
352 (*db
)->hdb_close
= DB_close
;
353 (*db
)->hdb_fetch_kvno
= _hdb_fetch_kvno
;
354 (*db
)->hdb_store
= _hdb_store
;
355 (*db
)->hdb_remove
= _hdb_remove
;
356 (*db
)->hdb_firstkey
= DB_firstkey
;
357 (*db
)->hdb_nextkey
= DB_nextkey
;
358 (*db
)->hdb_lock
= DB_lock
;
359 (*db
)->hdb_unlock
= DB_unlock
;
360 (*db
)->hdb_rename
= DB_rename
;
361 (*db
)->hdb__get
= DB__get
;
362 (*db
)->hdb__put
= DB__put
;
363 (*db
)->hdb__del
= DB__del
;
364 (*db
)->hdb_destroy
= DB_destroy
;
367 #endif /* HAVE_DB3 */