Darren Tucker | 9d1fd5b | 2010-01-15 12:14:45 +1100 | [diff] [blame] | 1 | /* $OpenBSD: pwcache.c,v 1.9 2005/08/08 08:05:34 espie Exp $ */ |
| 2 | /* |
| 3 | * Copyright (c) 1989, 1993 |
| 4 | * The Regents of the University of California. All rights reserved. |
| 5 | * |
| 6 | * Redistribution and use in source and binary forms, with or without |
| 7 | * modification, are permitted provided that the following conditions |
| 8 | * are met: |
| 9 | * 1. Redistributions of source code must retain the above copyright |
| 10 | * notice, this list of conditions and the following disclaimer. |
| 11 | * 2. Redistributions in binary form must reproduce the above copyright |
| 12 | * notice, this list of conditions and the following disclaimer in the |
| 13 | * documentation and/or other materials provided with the distribution. |
| 14 | * 3. Neither the name of the University nor the names of its contributors |
| 15 | * may be used to endorse or promote products derived from this software |
| 16 | * without specific prior written permission. |
| 17 | * |
| 18 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 19 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 20 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 21 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 22 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 23 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 24 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 25 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 26 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 27 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 28 | * SUCH DAMAGE. |
| 29 | */ |
| 30 | |
Darren Tucker | 909a390 | 2010-01-15 12:38:30 +1100 | [diff] [blame] | 31 | /* OPENBSD ORIGINAL: lib/libc/gen/pwcache.c */ |
| 32 | |
Darren Tucker | ca94485 | 2010-01-16 11:48:27 +1100 | [diff] [blame] | 33 | #include "includes.h" |
| 34 | |
Darren Tucker | 9d1fd5b | 2010-01-15 12:14:45 +1100 | [diff] [blame] | 35 | #include <sys/types.h> |
| 36 | |
| 37 | #include <grp.h> |
| 38 | #include <pwd.h> |
| 39 | #include <stdio.h> |
Darren Tucker | 909a390 | 2010-01-15 12:38:30 +1100 | [diff] [blame] | 40 | #include <stdlib.h> |
Darren Tucker | 9d1fd5b | 2010-01-15 12:14:45 +1100 | [diff] [blame] | 41 | #include <string.h> |
| 42 | |
| 43 | #define NCACHE 64 /* power of 2 */ |
| 44 | #define MASK (NCACHE - 1) /* bits to store with */ |
| 45 | |
Darren Tucker | 909a390 | 2010-01-15 12:38:30 +1100 | [diff] [blame] | 46 | #ifndef HAVE_USER_FROM_UID |
Darren Tucker | 9d1fd5b | 2010-01-15 12:14:45 +1100 | [diff] [blame] | 47 | char * |
| 48 | user_from_uid(uid_t uid, int nouser) |
| 49 | { |
| 50 | static struct ncache { |
| 51 | uid_t uid; |
Darren Tucker | 909a390 | 2010-01-15 12:38:30 +1100 | [diff] [blame] | 52 | char *name; |
Darren Tucker | 9d1fd5b | 2010-01-15 12:14:45 +1100 | [diff] [blame] | 53 | } c_uid[NCACHE]; |
| 54 | static int pwopen; |
| 55 | static char nbuf[15]; /* 32 bits == 10 digits */ |
| 56 | struct passwd *pw; |
| 57 | struct ncache *cp; |
| 58 | |
| 59 | cp = c_uid + (uid & MASK); |
Darren Tucker | 909a390 | 2010-01-15 12:38:30 +1100 | [diff] [blame] | 60 | if (cp->uid != uid || cp->name == NULL) { |
Darren Tucker | 9d1fd5b | 2010-01-15 12:14:45 +1100 | [diff] [blame] | 61 | if (pwopen == 0) { |
Darren Tucker | 612e400 | 2010-01-16 13:53:52 +1100 | [diff] [blame] | 62 | #ifdef HAVE_SETPASSENT |
Darren Tucker | 9d1fd5b | 2010-01-15 12:14:45 +1100 | [diff] [blame] | 63 | setpassent(1); |
Darren Tucker | 612e400 | 2010-01-16 13:53:52 +1100 | [diff] [blame] | 64 | #endif |
Darren Tucker | 9d1fd5b | 2010-01-15 12:14:45 +1100 | [diff] [blame] | 65 | pwopen = 1; |
| 66 | } |
| 67 | if ((pw = getpwuid(uid)) == NULL) { |
| 68 | if (nouser) |
| 69 | return (NULL); |
Darren Tucker | 4c3e00b | 2019-07-06 13:02:34 +1000 | [diff] [blame] | 70 | (void)snprintf(nbuf, sizeof(nbuf), "%lu", (u_long)uid); |
Darren Tucker | 9d1fd5b | 2010-01-15 12:14:45 +1100 | [diff] [blame] | 71 | } |
| 72 | cp->uid = uid; |
Darren Tucker | 909a390 | 2010-01-15 12:38:30 +1100 | [diff] [blame] | 73 | if (cp->name != NULL) |
| 74 | free(cp->name); |
| 75 | cp->name = strdup(pw ? pw->pw_name : nbuf); |
Darren Tucker | 9d1fd5b | 2010-01-15 12:14:45 +1100 | [diff] [blame] | 76 | } |
| 77 | return (cp->name); |
| 78 | } |
Darren Tucker | 909a390 | 2010-01-15 12:38:30 +1100 | [diff] [blame] | 79 | #endif |
Darren Tucker | 9d1fd5b | 2010-01-15 12:14:45 +1100 | [diff] [blame] | 80 | |
Darren Tucker | 909a390 | 2010-01-15 12:38:30 +1100 | [diff] [blame] | 81 | #ifndef HAVE_GROUP_FROM_GID |
Darren Tucker | 9d1fd5b | 2010-01-15 12:14:45 +1100 | [diff] [blame] | 82 | char * |
| 83 | group_from_gid(gid_t gid, int nogroup) |
| 84 | { |
| 85 | static struct ncache { |
| 86 | gid_t gid; |
Darren Tucker | 909a390 | 2010-01-15 12:38:30 +1100 | [diff] [blame] | 87 | char *name; |
Darren Tucker | 9d1fd5b | 2010-01-15 12:14:45 +1100 | [diff] [blame] | 88 | } c_gid[NCACHE]; |
| 89 | static int gropen; |
| 90 | static char nbuf[15]; /* 32 bits == 10 digits */ |
| 91 | struct group *gr; |
| 92 | struct ncache *cp; |
| 93 | |
| 94 | cp = c_gid + (gid & MASK); |
Darren Tucker | 909a390 | 2010-01-15 12:38:30 +1100 | [diff] [blame] | 95 | if (cp->gid != gid || cp->name == NULL) { |
Darren Tucker | 9d1fd5b | 2010-01-15 12:14:45 +1100 | [diff] [blame] | 96 | if (gropen == 0) { |
Darren Tucker | 612e400 | 2010-01-16 13:53:52 +1100 | [diff] [blame] | 97 | #ifdef HAVE_SETGROUPENT |
Darren Tucker | 9d1fd5b | 2010-01-15 12:14:45 +1100 | [diff] [blame] | 98 | setgroupent(1); |
Darren Tucker | 612e400 | 2010-01-16 13:53:52 +1100 | [diff] [blame] | 99 | #endif |
Darren Tucker | 9d1fd5b | 2010-01-15 12:14:45 +1100 | [diff] [blame] | 100 | gropen = 1; |
| 101 | } |
| 102 | if ((gr = getgrgid(gid)) == NULL) { |
| 103 | if (nogroup) |
| 104 | return (NULL); |
Darren Tucker | 4c3e00b | 2019-07-06 13:02:34 +1000 | [diff] [blame] | 105 | (void)snprintf(nbuf, sizeof(nbuf), "%lu", (u_long)gid); |
Darren Tucker | 9d1fd5b | 2010-01-15 12:14:45 +1100 | [diff] [blame] | 106 | } |
| 107 | cp->gid = gid; |
Darren Tucker | 909a390 | 2010-01-15 12:38:30 +1100 | [diff] [blame] | 108 | if (cp->name != NULL) |
| 109 | free(cp->name); |
| 110 | cp->name = strdup(gr ? gr->gr_name : nbuf); |
Darren Tucker | 9d1fd5b | 2010-01-15 12:14:45 +1100 | [diff] [blame] | 111 | } |
| 112 | return (cp->name); |
| 113 | } |
Darren Tucker | 909a390 | 2010-01-15 12:38:30 +1100 | [diff] [blame] | 114 | #endif |