]>
git.saurik.com Git - apple/file_cmds.git/blob - pax/cache.c
1 /* $OpenBSD: cache.c,v 1.17 2004/03/16 03:28:34 tedu Exp $ */
2 /* $NetBSD: cache.c,v 1.4 1995/03/21 09:07:10 cgd Exp $ */
5 * Copyright (c) 1992 Keith Muller.
6 * Copyright (c) 1992, 1993
7 * The Regents of the University of California. All rights reserved.
9 * This code is derived from software contributed to Berkeley by
10 * Keith Muller of the University of California, San Diego.
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in the
19 * documentation and/or other materials provided with the distribution.
20 * 3. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39 static const char sccsid
[] = "@(#)cache.c 8.1 (Berkeley) 5/31/93";
41 static const char rcsid
[] = "$OpenBSD: cache.c,v 1.17 2004/03/16 03:28:34 tedu Exp $";
45 #include <sys/types.h>
48 #include <sys/param.h>
60 * routines that control user, group, uid and gid caches (for the archive
61 * member print routine).
63 * these routines cache BOTH hits and misses, a major performance improvement
66 static int pwopn
= 0; /* is password file open */
67 static int gropn
= 0; /* is group file open */
68 static UIDC
**uidtb
= NULL
; /* uid to name cache */
69 static GIDC
**gidtb
= NULL
; /* gid to name cache */
70 static UIDC
**usrtb
= NULL
; /* user name to uid cache */
71 static GIDC
**grptb
= NULL
; /* group name to gid cache */
75 * creates an empty uidtb
77 * 0 if ok, -1 otherwise
89 if ((uidtb
= (UIDC
**)calloc(UID_SZ
, sizeof(UIDC
*))) == NULL
) {
91 paxwarn(1, "Unable to allocate memory for user id cache table");
99 * creates an empty gidtb
101 * 0 if ok, -1 otherwise
113 if ((gidtb
= (GIDC
**)calloc(GID_SZ
, sizeof(GIDC
*))) == NULL
) {
115 paxwarn(1, "Unable to allocate memory for group id cache table");
123 * creates an empty usrtb
125 * 0 if ok, -1 otherwise
137 if ((usrtb
= (UIDC
**)calloc(UNM_SZ
, sizeof(UIDC
*))) == NULL
) {
139 paxwarn(1, "Unable to allocate memory for user name cache table");
147 * creates an empty grptb
149 * 0 if ok, -1 otherwise
161 if ((grptb
= (GIDC
**)calloc(GNM_SZ
, sizeof(GIDC
*))) == NULL
) {
163 paxwarn(1,"Unable to allocate memory for group name cache table");
171 * caches the name (if any) for the uid. If frc set, we always return the
172 * the stored name (if valid or invalid match). We use a simple hash table.
174 * Pointer to stored name (or a empty string)
178 name_uid(uid_t uid
, int frc
)
183 if ((uidtb
== NULL
) && (uidtb_start() < 0))
187 * see if we have this uid cached
189 ptr
= uidtb
[uid
% UID_SZ
];
190 if ((ptr
!= NULL
) && (ptr
->valid
> 0) && (ptr
->uid
== uid
)) {
192 * have an entry for this uid
194 if (frc
|| (ptr
->valid
== VALID
))
200 * No entry for this uid, we will add it
207 ptr
= uidtb
[uid
% UID_SZ
] = malloc(sizeof(UIDC
));
209 if ((pw
= getpwuid(uid
)) == NULL
) {
211 * no match for this uid in the local password file
212 * a string that is the uid in numeric format
217 ptr
->valid
= INVALID
;
218 (void)snprintf(ptr
->name
, sizeof(ptr
->name
), "%lu",
224 * there is an entry for this uid in the password file
229 (void)strlcpy(ptr
->name
, pw
->pw_name
, sizeof(ptr
->name
));
237 * caches the name (if any) for the gid. If frc set, we always return the
238 * the stored name (if valid or invalid match). We use a simple hash table.
240 * Pointer to stored name (or a empty string)
244 name_gid(gid_t gid
, int frc
)
249 if ((gidtb
== NULL
) && (gidtb_start() < 0))
253 * see if we have this gid cached
255 ptr
= gidtb
[gid
% GID_SZ
];
256 if ((ptr
!= NULL
) && (ptr
->valid
> 0) && (ptr
->gid
== gid
)) {
258 * have an entry for this gid
260 if (frc
|| (ptr
->valid
== VALID
))
266 * No entry for this gid, we will add it
273 ptr
= gidtb
[gid
% GID_SZ
] = malloc(sizeof(GIDC
));
275 if ((gr
= getgrgid(gid
)) == NULL
) {
277 * no match for this gid in the local group file, put in
278 * a string that is the gid in numberic format
283 ptr
->valid
= INVALID
;
284 (void)snprintf(ptr
->name
, sizeof(ptr
->name
), "%lu",
290 * there is an entry for this group in the group file
295 (void)strlcpy(ptr
->name
, gr
->gr_name
, sizeof(ptr
->name
));
303 * caches the uid for a given user name. We use a simple hash table.
305 * the uid (if any) for a user name, or a -1 if no match can be found
309 uid_name(char *name
, uid_t
*uid
)
316 * return -1 for mangled names
318 if (((namelen
= strlen(name
)) == 0) || (name
[0] == '\0'))
320 if ((usrtb
== NULL
) && (usrtb_start() < 0))
324 * look up in hash table, if found and valid return the uid,
325 * if found and invalid, return a -1
327 ptr
= usrtb
[st_hash(name
, namelen
, UNM_SZ
)];
328 if ((ptr
!= NULL
) && (ptr
->valid
> 0) && !strcmp(name
, ptr
->name
)) {
329 if (ptr
->valid
== INVALID
)
341 ptr
= usrtb
[st_hash(name
, namelen
, UNM_SZ
)] =
342 (UIDC
*)malloc(sizeof(UIDC
));
345 * no match, look it up, if no match store it as an invalid entry,
346 * or store the matching uid
349 if ((pw
= getpwnam(name
)) == NULL
)
354 (void)strlcpy(ptr
->name
, name
, sizeof(ptr
->name
));
355 if ((pw
= getpwnam(name
)) == NULL
) {
356 ptr
->valid
= INVALID
;
360 *uid
= ptr
->uid
= pw
->pw_uid
;
366 * caches the gid for a given group name. We use a simple hash table.
368 * the gid (if any) for a group name, or a -1 if no match can be found
372 gid_name(char *name
, gid_t
*gid
)
379 * return -1 for mangled names
381 if (((namelen
= strlen(name
)) == 0) || (name
[0] == '\0'))
383 if ((grptb
== NULL
) && (grptb_start() < 0))
387 * look up in hash table, if found and valid return the uid,
388 * if found and invalid, return a -1
390 ptr
= grptb
[st_hash(name
, namelen
, GID_SZ
)];
391 if ((ptr
!= NULL
) && (ptr
->valid
> 0) && !strcmp(name
, ptr
->name
)) {
392 if (ptr
->valid
== INVALID
)
403 ptr
= grptb
[st_hash(name
, namelen
, GID_SZ
)] =
404 (GIDC
*)malloc(sizeof(GIDC
));
407 * no match, look it up, if no match store it as an invalid entry,
408 * or store the matching gid
411 if ((gr
= getgrnam(name
)) == NULL
)
417 (void)strlcpy(ptr
->name
, name
, sizeof(ptr
->name
));
418 if ((gr
= getgrnam(name
)) == NULL
) {
419 ptr
->valid
= INVALID
;
423 *gid
= ptr
->gid
= gr
->gr_gid
;