apply new hurd patch to my tree
[debian/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 $    */
3
4 /*-
5  * Copyright (c) 1992 Keith Muller.
6  * Copyright (c) 1992, 1993
7  *      The Regents of the University of California.  All rights reserved.
8  *
9  * This code is derived from software contributed to Berkeley by
10  * Keith Muller of the University of California, San Diego.
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions
14  * are met:
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.
23  *
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
34  * SUCH DAMAGE.
35  */
36
37 #ifndef lint
38 #if 0
39 static const char sccsid[] = "@(#)cache.c       8.1 (Berkeley) 5/31/93";
40 #else
41 static const char rcsid[] = "$OpenBSD: cache.c,v 1.17 2004/03/16 03:28:34 tedu Exp $";
42 #endif
43 #endif /* not lint */
44
45 #include <sys/types.h>
46 #include <sys/time.h>
47 #include <sys/stat.h>
48 #include <sys/param.h>
49 #include <string.h>
50 #include <stdio.h>
51 #include <pwd.h>
52 #include <grp.h>
53 #include <unistd.h>
54 #include <stdlib.h>
55 #include "pax.h"
56 #include "cache.h"
57 #include "extern.h"
58
59 /*
60  * routines that control user, group, uid and gid caches (for the archive
61  * member print routine).
62  * IMPORTANT:
63  * these routines cache BOTH hits and misses, a major performance improvement
64  */
65
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 */
72
73 /*
74  * uidtb_start
75  *      creates an empty uidtb
76  * Return:
77  *      0 if ok, -1 otherwise
78  */
79
80 int
81 uidtb_start(void)
82 {
83         static int fail = 0;
84
85         if (uidtb != NULL)
86                 return(0);
87         if (fail)
88                 return(-1);
89         if ((uidtb = (UIDC **)calloc(UID_SZ, sizeof(UIDC *))) == NULL) {
90                 ++fail;
91                 paxwarn(1, "Unable to allocate memory for user id cache table");
92                 return(-1);
93         }
94         return(0);
95 }
96
97 /*
98  * gidtb_start
99  *      creates an empty gidtb
100  * Return:
101  *      0 if ok, -1 otherwise
102  */
103
104 int
105 gidtb_start(void)
106 {
107         static int fail = 0;
108
109         if (gidtb != NULL)
110                 return(0);
111         if (fail)
112                 return(-1);
113         if ((gidtb = (GIDC **)calloc(GID_SZ, sizeof(GIDC *))) == NULL) {
114                 ++fail;
115                 paxwarn(1, "Unable to allocate memory for group id cache table");
116                 return(-1);
117         }
118         return(0);
119 }
120
121 /*
122  * usrtb_start
123  *      creates an empty usrtb
124  * Return:
125  *      0 if ok, -1 otherwise
126  */
127
128 int
129 usrtb_start(void)
130 {
131         static int fail = 0;
132
133         if (usrtb != NULL)
134                 return(0);
135         if (fail)
136                 return(-1);
137         if ((usrtb = (UIDC **)calloc(UNM_SZ, sizeof(UIDC *))) == NULL) {
138                 ++fail;
139                 paxwarn(1, "Unable to allocate memory for user name cache table");
140                 return(-1);
141         }
142         return(0);
143 }
144
145 /*
146  * grptb_start
147  *      creates an empty grptb
148  * Return:
149  *      0 if ok, -1 otherwise
150  */
151
152 int
153 grptb_start(void)
154 {
155         static int fail = 0;
156
157         if (grptb != NULL)
158                 return(0);
159         if (fail)
160                 return(-1);
161         if ((grptb = (GIDC **)calloc(GNM_SZ, sizeof(GIDC *))) == NULL) {
162                 ++fail;
163                 paxwarn(1,"Unable to allocate memory for group name cache table");
164                 return(-1);
165         }
166         return(0);
167 }
168
169 /*
170  * name_uid()
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.
173  * Return
174  *      Pointer to stored name (or a empty string)
175  */
176
177 char *
178 name_uid(uid_t uid, int frc)
179 {
180         struct passwd *pw;
181         UIDC *ptr;
182
183         if ((uidtb == NULL) && (uidtb_start() < 0))
184                 return("");
185
186         /*
187          * see if we have this uid cached
188          */
189         ptr = uidtb[uid % UID_SZ];
190         if ((ptr != NULL) && (ptr->valid > 0) && (ptr->uid == uid)) {
191                 /*
192                  * have an entry for this uid
193                  */
194                 if (frc || (ptr->valid == VALID))
195                         return(ptr->name);
196                 return("");
197         }
198
199         /*
200          * No entry for this uid, we will add it
201          */
202         if (!pwopn) {
203 #ifdef DEBIAN
204                 setpwent();
205 #else
206                 setpassent(1);
207 #endif
208                 ++pwopn;
209         }
210         if (ptr == NULL)
211                 ptr = uidtb[uid % UID_SZ] = malloc(sizeof(UIDC));
212
213         if ((pw = getpwuid(uid)) == NULL) {
214                 /*
215                  * no match for this uid in the local password file
216                  * a string that is the uid in numeric format
217                  */
218                 if (ptr == NULL)
219                         return("");
220                 ptr->uid = uid;
221                 ptr->valid = INVALID;
222                 (void)snprintf(ptr->name, sizeof(ptr->name), "%lu",
223                                (unsigned long)uid);
224                 if (frc == 0)
225                         return("");
226         } else {
227                 /*
228                  * there is an entry for this uid in the password file
229                  */
230                 if (ptr == NULL)
231                         return(pw->pw_name);
232                 ptr->uid = uid;
233                 (void)strlcpy(ptr->name, pw->pw_name, sizeof(ptr->name));
234                 ptr->valid = VALID;
235         }
236         return(ptr->name);
237 }
238
239 /*
240  * name_gid()
241  *      caches the name (if any) for the gid. If frc set, we always return the
242  *      the stored name (if valid or invalid match). We use a simple hash table.
243  * Return
244  *      Pointer to stored name (or a empty string)
245  */
246
247 char *
248 name_gid(gid_t gid, int frc)
249 {
250         struct group *gr;
251         GIDC *ptr;
252
253         if ((gidtb == NULL) && (gidtb_start() < 0))
254                 return("");
255
256         /*
257          * see if we have this gid cached
258          */
259         ptr = gidtb[gid % GID_SZ];
260         if ((ptr != NULL) && (ptr->valid > 0) && (ptr->gid == gid)) {
261                 /*
262                  * have an entry for this gid
263                  */
264                 if (frc || (ptr->valid == VALID))
265                         return(ptr->name);
266                 return("");
267         }
268
269         /*
270          * No entry for this gid, we will add it
271          */
272         if (!gropn) {
273 #ifdef DEBIAN
274                 setgrent();
275 #else
276                 setgroupent(1);
277 #endif
278                 ++gropn;
279         }
280         if (ptr == NULL)
281                 ptr = gidtb[gid % GID_SZ] = malloc(sizeof(GIDC));
282
283         if ((gr = getgrgid(gid)) == NULL) {
284                 /*
285                  * no match for this gid in the local group file, put in
286                  * a string that is the gid in numberic format
287                  */
288                 if (ptr == NULL)
289                         return("");
290                 ptr->gid = gid;
291                 ptr->valid = INVALID;
292                 (void)snprintf(ptr->name, sizeof(ptr->name), "%lu",
293                                (unsigned long)gid);
294                 if (frc == 0)
295                         return("");
296         } else {
297                 /*
298                  * there is an entry for this group in the group file
299                  */
300                 if (ptr == NULL)
301                         return(gr->gr_name);
302                 ptr->gid = gid;
303                 (void)strlcpy(ptr->name, gr->gr_name, sizeof(ptr->name));
304                 ptr->valid = VALID;
305         }
306         return(ptr->name);
307 }
308
309 /*
310  * uid_name()
311  *      caches the uid for a given user name. We use a simple hash table.
312  * Return
313  *      the uid (if any) for a user name, or a -1 if no match can be found
314  */
315
316 int
317 uid_name(char *name, uid_t *uid)
318 {
319         struct passwd *pw;
320         UIDC *ptr;
321         int namelen;
322
323         /*
324          * return -1 for mangled names
325          */
326         if (((namelen = strlen(name)) == 0) || (name[0] == '\0'))
327                 return(-1);
328         if ((usrtb == NULL) && (usrtb_start() < 0))
329                 return(-1);
330
331         /*
332          * look up in hash table, if found and valid return the uid,
333          * if found and invalid, return a -1
334          */
335         ptr = usrtb[st_hash(name, namelen, UNM_SZ)];
336         if ((ptr != NULL) && (ptr->valid > 0) && !strcmp(name, ptr->name)) {
337                 if (ptr->valid == INVALID)
338                         return(-1);
339                 *uid = ptr->uid;
340                 return(0);
341         }
342
343         if (!pwopn) {
344 #ifdef DEBIAN
345                 setpwent();
346 #else
347                 setpassent(1);
348 #endif
349                 ++pwopn;
350         }
351
352         if (ptr == NULL)
353                 ptr = usrtb[st_hash(name, namelen, UNM_SZ)] =
354                   (UIDC *)malloc(sizeof(UIDC));
355
356         /*
357          * no match, look it up, if no match store it as an invalid entry,
358          * or store the matching uid
359          */
360         if (ptr == NULL) {
361                 if ((pw = getpwnam(name)) == NULL)
362                         return(-1);
363                 *uid = pw->pw_uid;
364                 return(0);
365         }
366         (void)strlcpy(ptr->name, name, sizeof(ptr->name));
367         if ((pw = getpwnam(name)) == NULL) {
368                 ptr->valid = INVALID;
369                 return(-1);
370         }
371         ptr->valid = VALID;
372         *uid = ptr->uid = pw->pw_uid;
373         return(0);
374 }
375
376 /*
377  * gid_name()
378  *      caches the gid for a given group name. We use a simple hash table.
379  * Return
380  *      the gid (if any) for a group name, or a -1 if no match can be found
381  */
382
383 int
384 gid_name(char *name, gid_t *gid)
385 {
386         struct group *gr;
387         GIDC *ptr;
388         int namelen;
389
390         /*
391          * return -1 for mangled names
392          */
393         if (((namelen = strlen(name)) == 0) || (name[0] == '\0'))
394                 return(-1);
395         if ((grptb == NULL) && (grptb_start() < 0))
396                 return(-1);
397
398         /*
399          * look up in hash table, if found and valid return the uid,
400          * if found and invalid, return a -1
401          */
402         ptr = grptb[st_hash(name, namelen, GID_SZ)];
403         if ((ptr != NULL) && (ptr->valid > 0) && !strcmp(name, ptr->name)) {
404                 if (ptr->valid == INVALID)
405                         return(-1);
406                 *gid = ptr->gid;
407                 return(0);
408         }
409
410         if (!gropn) {
411 #ifdef DEBIAN
412                 setgrent();
413 #else
414                 setgroupent(1);
415 #endif
416                 ++gropn;
417         }
418         if (ptr == NULL)
419                 ptr = grptb[st_hash(name, namelen, GID_SZ)] =
420                   (GIDC *)malloc(sizeof(GIDC));
421
422         /*
423          * no match, look it up, if no match store it as an invalid entry,
424          * or store the matching gid
425          */
426         if (ptr == NULL) {
427                 if ((gr = getgrnam(name)) == NULL)
428                         return(-1);
429                 *gid = gr->gr_gid;
430                 return(0);
431         }
432
433         (void)strlcpy(ptr->name, name, sizeof(ptr->name));
434         if ((gr = getgrnam(name)) == NULL) {
435                 ptr->valid = INVALID;
436                 return(-1);
437         }
438         ptr->valid = VALID;
439         *gid = ptr->gid = gr->gr_gid;
440         return(0);
441 }