]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/idcache.c
Fix cached_path to be local to jcr + fixed idcache
[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   V(mutex);
81 }
82
83
84
85 /* Translate GID to a group name or a stringified number,
86    with cache.  */
87 char *getgroup(gid_t gid)
88 {
89   register struct userid *tail;
90   struct group *grent;
91   char groupnum_string[20];
92
93   P(mutex);
94   for (tail = group_alist; tail; tail = tail->next) {
95     if (tail->id.g == gid) {
96       V(mutex);
97       return tail->name;
98     }
99   }
100
101   grent = getgrgid(gid);
102   tail = (struct userid *)malloc(sizeof (struct userid));
103   tail->id.g = gid;
104   if (grent == 0 || strcmp(grent->gr_name, "????????") == 0) {
105       sprintf (groupnum_string, "%u", (uint32_t)gid);
106       tail->name = bstrdup(groupnum_string);
107   } else {
108       tail->name = bstrdup(grent->gr_name);
109   }
110
111   /* Add to the head of the list, so most recently used is first.  */
112   tail->next = group_alist;
113   group_alist = tail;
114   V(mutex);
115   return tail->name;
116 }
117
118 void free_getgroup_cache()
119 {
120   register struct userid *tail;
121
122   P(mutex);
123   for (tail = group_alist; tail; ) {
124      struct userid *otail = tail;
125      free(tail->name);
126      tail = tail->next;
127      free(otail);
128   }
129   V(mutex);
130 }