]>
git.saurik.com Git - apple/network_cmds.git/blob - ypserv.tproj/ypdb.c
9530e42bcbd3a2aaeb0379ba09b184b452b0e224
2 * Copyright (c) 1999 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.
8 * This file contains Original Code and/or Modifications of Original Code
9 * as defined in and that are subject to the Apple Public Source License
10 * Version 2.0 (the 'License'). You may not use this file except in
11 * compliance with the License. Please obtain a copy of the License at
12 * http://www.opensource.apple.com/apsl/ and read it before using this
15 * The Original Code and all software distributed under the License are
16 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
17 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
18 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
20 * Please see the License for the specific language governing rights and
21 * limitations under the License.
23 * @APPLE_LICENSE_HEADER_END@
25 /* $OpenBSD: ypdb.c,v 1.5 1997/02/09 09:49:36 maja Exp $ */
28 * Copyright (c) 1990, 1993
29 * The Regents of the University of California. All rights reserved.
30 * All rights reserved.
32 * This code is derived from software contributed to Berkeley by
35 * This code is derived from ndbm module of BSD4.4 db (hash) by
38 * Redistribution and use in source and binary forms, with or without
39 * modification, are permitted provided that the following conditions
41 * 1. Redistributions of source code must retain the above copyright
42 * notice, this list of conditions and the following disclaimer.
43 * 2. Redistributions in binary form must reproduce the above copyright
44 * notice, this list of conditions and the following disclaimer in the
45 * documentation and/or other materials provided with the distribution.
46 * 3. All advertising materials mentioning features or use of this software
47 * must display the following acknowledgement:
48 * This product includes software developed by the University of
49 * California, Berkeley and its contributors.
50 * 4. Neither the name of the University nor the names of its contributors
51 * may be used to endorse or promote products derived from this software
52 * without specific prior written permission.
54 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
55 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
56 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
57 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
58 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
59 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
60 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
61 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
62 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
63 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
67 #include <sys/param.h>
68 #include <sys/types.h>
75 extern DBM
*__hash_open();
77 extern DBM
*__bt_open();
87 ypdb_open(file
, flags
, mode
)
93 char path
[MAXPATHLEN
];
98 info
.cachesize
= NULL
;
101 snprintf(path
, sizeof(path
), "%s%s", file
, YPDB_SUFFIX
);
102 return ((DBM
*)__hash_open(path
, flags
, mode
, &info
, 0));
105 char path
[MAXPATHLEN
];
116 snprintf(path
, sizeof(path
), "%s%s", file
, YPDB_SUFFIX
);
117 db
= (DBM
*)__bt_open(path
, flags
, mode
, &info
, 0);
129 ypdb_open_suf(file
, flags
, mode
)
139 info
.cachesize
= NULL
;
142 return ((DBM
*)__hash_open(file
, flags
, mode
, &info
, 0));
155 db
= (DBM
*)__bt_open(file
, flags
, mode
, &info
, 0);
164 (void)(db
->close
)(db
);
181 status
= (db
->get
)(db
, (DBT
*)&key
, (DBT
*)&retval
, 0);
200 datum retdata
, retkey
;
202 status
= (db
->seq
)(db
, (DBT
*)&retkey
, (DBT
*)&retdata
, R_FIRST
);
219 datum retdata
, retkey
;
221 status
= (db
->seq
)(db
, (DBT
*)&retkey
, (DBT
*)&retdata
, R_NEXT
);
243 status
= (db
->seq
)(db
, (DBT
*)&retkey
, (DBT
*)&retdata
, R_FIRST
);
246 while ((retkey
.dptr
!= NULL
) &&
247 ((retkey
.dsize
!= key
.dsize
) ||
248 (strncmp(key
.dptr
,retkey
.dptr
,retkey
.dsize
) != 0))) {
249 status
= (db
->seq
)(db
, (DBT
*)&retkey
, (DBT
*)&retdata
, R_NEXT
);
255 status
= (db
->seq
)(db
, (DBT
*)&key
, (DBT
*)&retdata
, R_CURSOR
);
275 status
= (db
->del
)(db
, (DBT
*)&key
, 0);
286 * 1 if YPDB_INSERT and entry exists
290 ypdb_store(db
, key
, content
, flags
)
295 return ((db
->put
)(db
, (DBT
*)&key
, (DBT
*)&content
,
296 (flags
== YPDB_INSERT
) ? R_NOOVERWRITE
: 0));