2 * SPDX-License-Identifier: BSD-3-Clause
4 * Copyright (c) 1990, 1993
5 * The Regents of the University of California. All rights reserved.
7 * This code is derived from software contributed to Berkeley by
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * 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.
18 * 3. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 #if defined(LIBC_SCCS) && !defined(lint)
36 static char sccsid
[] = "@(#)ndbm.c 8.4 (Berkeley) 7/21/94";
37 #endif /* LIBC_SCCS and not lint */
38 #include <sys/cdefs.h>
39 __FBSDID("$FreeBSD$ : src/lib/libc/db/hash/ndbm.c Nov 20 19:49:47 2017 UTC by pfg - SVN Revision 326025");
42 * This package provides a dbm compatible interface to the new hashing
43 * package described in db(3).
46 #include <sys/param.h>
55 #define __DBINTERFACE_PRIVATE /* activate prototypes from db_local.h */
64 dbm_open(const char *file
, int flags
, mode_t mode
)
67 char path
[MAXPATHLEN
];
76 if( strlen(file
) >= sizeof(path
) - strlen(DBM_SUFFIX
)) {
80 (void)strcpy(path
, file
);
81 (void)strcat(path
, DBM_SUFFIX
);
82 return ((DBM
*)__hash_open(path
, flags
, mode
, 0, &info
));
88 (void)(db
->close
)(db
);
97 dbm_fetch(DBM
*db
, datum key
)
101 DBT dbtkey
, dbtretdata
;
103 dbtkey
.data
= key
.dptr
;
104 dbtkey
.size
= key
.dsize
;
105 status
= (db
->get
)(db
, &dbtkey
, &dbtretdata
, 0);
107 dbtretdata
.data
= NULL
;
110 retdata
.dptr
= dbtretdata
.data
;
111 retdata
.dsize
= dbtretdata
.size
;
121 dbm_firstkey(DBM
*db
)
125 DBT dbtretkey
, dbtretdata
;
127 status
= (db
->seq
)(db
, &dbtretkey
, &dbtretdata
, R_FIRST
);
129 dbtretkey
.data
= NULL
;
130 retkey
.dptr
= dbtretkey
.data
;
131 retkey
.dsize
= dbtretkey
.size
;
145 DBT dbtretkey
, dbtretdata
;
147 status
= (db
->seq
)(db
, &dbtretkey
, &dbtretdata
, R_NEXT
);
149 dbtretkey
.data
= NULL
;
150 retkey
.dptr
= dbtretkey
.data
;
151 retkey
.dsize
= dbtretkey
.size
;
161 dbm_delete(DBM
*db
, datum key
)
166 dbtkey
.data
= key
.dptr
;
167 dbtkey
.size
= key
.dsize
;
168 status
= (db
->del
)(db
, &dbtkey
, 0);
179 * 1 if DBM_INSERT and entry exists
182 dbm_store(DBM
*db
, datum key
, datum data
, int flags
)
186 dbtkey
.data
= key
.dptr
;
187 dbtkey
.size
= key
.dsize
;
188 dbtdata
.data
= data
.dptr
;
189 dbtdata
.size
= data
.dsize
;
190 return ((db
->put
)(db
, &dbtkey
, &dbtdata
,
191 (flags
== DBM_INSERT
) ? R_NOOVERWRITE
: 0));
199 hp
= (HTAB
*)db
->internal
;
204 dbm_clearerr(DBM
*db
)
208 hp
= (HTAB
*)db
->internal
;
216 return(((HTAB
*)db
->internal
)->fp
);