]>
git.saurik.com Git - apple/libinfo.git/blob - util.subproj/pwcache.c
53e79f376eb37c8bdbc4d064f8bfe7f1c9f52ec3
2 * Copyright (c) 1999 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * Portions Copyright (c) 1999 Apple Computer, Inc. All Rights
7 * Reserved. This file contains Original Code and/or Modifications of
8 * Original Code as defined in and that are subject to the Apple Public
9 * Source License Version 1.1 (the "License"). You may not use this file
10 * except in compliance with the License. Please obtain a copy of the
11 * License at http://www.apple.com/publicsource and read it before using
14 * The Original Code and all software distributed under the License are
15 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
16 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
17 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE OR NON- INFRINGEMENT. Please see the
19 * License for the specific language governing rights and limitations
22 * @APPLE_LICENSE_HEADER_END@
25 #include <sys/types.h>
34 #define NCACHE 64 /* power of 2 */
35 #define MASK (NCACHE - 1) /* bits to store with */
38 user_from_uid(uid
, nouser
)
42 static struct ncache
{
44 char name
[UT_NAMESIZE
+ 1];
47 static char nbuf
[15]; /* 32 bits == 10 digits */
48 register struct passwd
*pw
;
49 register struct ncache
**cp
;
51 cp
= &c_uid
[uid
& MASK
];
52 if (*cp
== NULL
|| (*cp
)->uid
!= uid
|| !*(*cp
)->name
) {
57 if ((pw
= getpwuid(uid
)) == NULL
) {
61 (void)snprintf(nbuf
, sizeof(nbuf
), "%u", uid
);
65 *cp
= malloc(sizeof(struct ncache
));
70 (void)strncpy((*cp
)->name
, pw
->pw_name
, UT_NAMESIZE
);
71 (*cp
)->name
[UT_NAMESIZE
] = '\0';
77 group_from_gid(gid
, nogroup
)
81 static struct ncache
{
83 char name
[UT_NAMESIZE
+ 1];
86 static char nbuf
[15]; /* 32 bits == 10 digits */
88 struct ncache
**cp
= NULL
;
90 cp
= &c_gid
[gid
& MASK
];
91 if (*cp
== NULL
|| (*cp
)->gid
!= gid
|| !*(*cp
)->name
) {
96 if ((gr
= getgrgid(gid
)) == NULL
) {
100 (void)snprintf(nbuf
, sizeof(nbuf
), "%u", gid
);
104 *cp
= malloc(sizeof(struct ncache
));
109 (void)strncpy((*cp
)->name
, gr
->gr_name
, UT_NAMESIZE
);
110 (*cp
)->name
[UT_NAMESIZE
] = '\0';
112 return ((*cp
)->name
);