]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/idcache.c
Doc updates + fixed win32 crash in idcache cleanups + dlist class
[bacula/bacula] / bacula / src / lib / idcache.c
1 /* idcache.c -- map user and group IDs, cached for speed
2    Copyright (C) 1985, 1988, 1989, 1990 Free Software Foundation, Inc.
3
4    This program is free software; you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 2, or (at your option)
7    any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software
16    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
17
18 #include "bacula.h"
19
20 struct userid {
21   union {
22       uid_t u;
23       gid_t g;
24   } id;
25   char *name;
26   struct userid *next;
27 };
28
29 static struct userid *user_alist = NULL;
30 /* Use the same struct as for userids.  */
31 static struct userid *group_alist = NULL;
32
33 static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
34
35 /* Translate UID to a login name or a stringified number,
36    with cache.  */
37
38 char *getuser(uid_t uid)
39 {
40   register struct userid *tail;
41   struct passwd *pwent;
42   char usernum_string[20];
43
44   P(mutex);
45   for (tail = user_alist; tail; tail = tail->next) {
46     if (tail->id.u == uid) {
47       V(mutex);
48       return tail->name;
49     }
50   }
51
52   pwent = getpwuid(uid);
53   tail = (struct userid *)malloc(sizeof (struct userid));
54   tail->id.u = uid;
55   if (pwent == 0 || strcmp(pwent->pw_name, "????????") == 0) {
56       sprintf(usernum_string, "%u", (uint32_t)uid);
57       tail->name = bstrdup(usernum_string);
58   } else {
59       tail->name = bstrdup(pwent->pw_name);
60   }
61
62   /* Add to the head of the list, so most recently used is first.  */
63   tail->next = user_alist;
64   user_alist = tail;
65   V(mutex);
66   return tail->name;
67 }
68
69 void free_getuser_cache()
70 {
71   register struct userid *tail;
72
73   P(mutex);
74   for (tail = user_alist; tail; ) {
75      struct userid *otail = tail;
76      free(tail->name);
77      tail = tail->next;
78      free(otail);
79   }
80   user_alist = NULL;
81   V(mutex);
82 }
83
84
85
86 /* Translate GID to a group name or a stringified number,
87    with cache.  */
88 char *getgroup(gid_t gid)
89 {
90   register struct userid *tail;
91   struct group *grent;
92   char groupnum_string[20];
93
94   P(mutex);
95   for (tail = group_alist; tail; tail = tail->next) {
96     if (tail->id.g == gid) {
97       V(mutex);
98       return tail->name;
99     }
100   }
101
102   grent = getgrgid(gid);
103   tail = (struct userid *)malloc(sizeof (struct userid));
104   tail->id.g = gid;
105   if (grent == 0 || strcmp(grent->gr_name, "????????") == 0) {
106       sprintf (groupnum_string, "%u", (uint32_t)gid);
107       tail->name = bstrdup(groupnum_string);
108   } else {
109       tail->name = bstrdup(grent->gr_name);
110   }
111
112   /* Add to the head of the list, so most recently used is first.  */
113   tail->next = group_alist;
114   group_alist = tail;
115   V(mutex);
116   return tail->name;
117 }
118
119 void free_getgroup_cache()
120 {
121   register struct userid *tail;
122
123   P(mutex);
124   for (tail = group_alist; tail; ) {
125      struct userid *otail = tail;
126      free(tail->name);
127      tail = tail->next;
128      free(otail);
129   }
130   group_alist = NULL;
131   V(mutex);
132 }