source: rtems/cpukit/libmisc/shell/pwcache.c

Last change on this file was d7417a51, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/04/11 at 18:20:23

2011-12-04 Ralf Corsépius <ralf.corsepius@…>

  • libmisc/shell/pwcache.c: Include "internal.h". Make user_from_uid non-static.
  • Property mode set to 100644
File size: 3.4 KB
Line 
1/*
2 * Copyright (c) 1989, 1993
3 *      The Regents of the University of California.  All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 *    notice, this list of conditions and the following disclaimer in the
12 *    documentation and/or other materials provided with the distribution.
13 * 4. Neither the name of the University nor the names of its contributors
14 *    may be used to endorse or promote products derived from this software
15 *    without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 */
29
30#ifdef HAVE_CONFIG_H
31#include "config.h"
32#endif
33
34#if defined(LIBC_SCCS) && !defined(lint)
35static char sccsid[] = "@(#)pwcache.c   8.1 (Berkeley) 6/4/93";
36#endif /* LIBC_SCCS and not lint */
37#include <sys/cdefs.h>
38__FBSDID("$FreeBSD: src/lib/libc/gen/pwcache.c,v 1.11 2007/01/09 00:27:55 imp Exp $");
39
40#include <sys/types.h>
41
42#include <grp.h>
43#include <pwd.h>
44#include <stdio.h>
45#include <string.h>
46
47#include "internal.h"
48
49#define UT_NAMESIZE 64
50
51#define NCACHE  64                      /* power of 2 */
52#define MASK    (NCACHE - 1)            /* bits to store with */
53
54const char *
55user_from_uid(uid_t uid, int nouser)
56{
57        static struct ncache {
58                uid_t   uid;
59                int     found;
60                char    name[UT_NAMESIZE + 1];
61        } c_uid[NCACHE];
62        static int pwopen;
63        struct passwd *pw;
64        struct ncache *cp;
65
66        cp = c_uid + (uid & MASK);
67        if (cp->uid != uid || !*cp->name) {
68                if (pwopen == 0) {
69                        //setpassent(1);
70                        pwopen = 1;
71                }
72                pw = getpwuid(uid);
73                cp->uid = uid;
74                if (pw != NULL) {
75                        cp->found = 1;
76                        (void)strncpy(cp->name, pw->pw_name, UT_NAMESIZE);
77                        cp->name[UT_NAMESIZE] = '\0';
78                } else {
79                        cp->found = 0;
80                        (void)snprintf(cp->name, UT_NAMESIZE, "%u", uid);
81                        if (nouser)
82                                return (NULL);
83                }
84        }
85        return ((nouser && !cp->found) ? NULL : cp->name);
86}
87
88char *
89group_from_gid(gid_t gid, int nogroup)
90{
91        static struct ncache {
92                gid_t   gid;
93                int     found;
94                char    name[UT_NAMESIZE + 1];
95        } c_gid[NCACHE];
96        static int gropen;
97        struct group *gr;
98        struct ncache *cp;
99
100        cp = c_gid + (gid & MASK);
101        if (cp->gid != gid || !*cp->name) {
102                if (gropen == 0) {
103                        //setgroupent(1);
104                        gropen = 1;
105                }
106                gr = getgrgid(gid);
107                cp->gid = gid;
108                if (gr != NULL) {
109                        cp->found = 1;
110                        (void)strncpy(cp->name, gr->gr_name, UT_NAMESIZE);
111                        cp->name[UT_NAMESIZE] = '\0';
112                } else {
113                        cp->found = 0;
114                        (void)snprintf(cp->name, UT_NAMESIZE, "%u", gid);
115                        if (nogroup)
116                                return (NULL);
117                }
118        }
119        return ((nogroup && !cp->found) ? NULL : cp->name);
120}
121
Note: See TracBrowser for help on using the repository browser.