summaryrefslogtreecommitdiff
path: root/source3/winbindd/idmap_cache.c
blob: 191cadb536022eab4dc65156a4002df39587c54e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
/*
   Unix SMB/CIFS implementation.
   ID Mapping Cache

   Copyright (C) Volker Lendecke	2008
   Copyright (C) Simo Sorce		2006
   Copyright (C) Rafal Szczesniak	2002

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.*/

#include "includes.h"
#include "winbindd.h"

static char *idmap_cache_sidkey(TALLOC_CTX *ctx, const DOM_SID *sid)
{
	fstring sidstr;

	return talloc_asprintf(ctx, "IDMAP/SID/%s",
			       sid_to_fstring(sidstr, sid));
}

static char *idmap_cache_idkey(TALLOC_CTX *ctx, const struct unixid *xid)
{
	return talloc_asprintf(ctx, "IDMAP/%s/%lu",
			       (xid->type==ID_TYPE_UID)?"UID":"GID",
			       (unsigned long)xid->id);
}

NTSTATUS idmap_cache_set(const struct id_map *id)
{
	NTSTATUS ret;
	time_t timeout = time(NULL) + lp_idmap_cache_time();
	char *sidkey;
	char *idkey;

	/* Don't cache lookups in the S-1-22-{1,2} domain */

	if (sid_check_is_in_unix_users(id->sid)
	    || sid_check_is_in_unix_groups(id->sid)) {
		return NT_STATUS_OK;
	}

	sidkey = idmap_cache_sidkey(talloc_tos(), id->sid);
	if (sidkey == NULL) {
		return NT_STATUS_NO_MEMORY;
	}

	/* use sidkey as the local memory ctx */
	idkey = idmap_cache_idkey(sidkey, &id->xid);
	if (idkey == NULL) {
		ret = NT_STATUS_NO_MEMORY;
		goto done;
	}

	if (!gencache_set(idkey, sidkey, timeout)
	    || !gencache_set(sidkey, idkey, timeout)) {
		DEBUG(3, ("Failed to store cache entry!\n"));
		ret = NT_STATUS_ACCESS_DENIED;
		goto done;
	}

	ret = NT_STATUS_OK;

done:
	TALLOC_FREE(sidkey);
	return ret;
}

NTSTATUS idmap_cache_set_negative_sid(const struct id_map *id)
{
	NTSTATUS ret = NT_STATUS_OK;
	char *sidkey;

	sidkey = idmap_cache_sidkey(talloc_tos(), id->sid);
	if (sidkey == NULL) {
		return NT_STATUS_NO_MEMORY;
	}

	if (!gencache_set(sidkey, "IDMAP/NEGATIVE",
			  time(NULL) + lp_idmap_negative_cache_time())) {
		DEBUG(3, ("Failed to store cache entry!\n"));
		ret = NT_STATUS_ACCESS_DENIED;
		goto done;
	}

done:
	TALLOC_FREE(sidkey);
	return ret;
}

NTSTATUS idmap_cache_set_negative_id(const struct id_map *id)
{
	NTSTATUS ret = NT_STATUS_OK;
	char *idkey;

	idkey = idmap_cache_idkey(talloc_tos(), &id->xid);
	if (idkey == NULL) {
		return NT_STATUS_NO_MEMORY;
	}

	if (!gencache_set(idkey, "IDMAP/NEGATIVE",
			  time(NULL) + lp_idmap_negative_cache_time())) {
		DEBUG(3, ("Failed to store cache entry!\n"));
		ret = NT_STATUS_ACCESS_DENIED;
		goto done;
	}

done:
	TALLOC_FREE(idkey);
	return ret;
}

/*
 * search the cache for the SID an return a mapping if found
 */

bool idmap_cache_map_sid(const struct dom_sid *sid, struct unixid *xid,
			 bool *mapped, bool *expired)
{
	bool ret = false;
	time_t timeout;
	char *sidkey;
	char *value;
	char *rem;

	sidkey = idmap_cache_sidkey(talloc_tos(), sid);
	if (sidkey == NULL) {
		DEBUG(0, ("idmap_cache_sidkey failed\n"));
		return false;
	}

	if (!gencache_get(sidkey, &value, &timeout)) {
		TALLOC_FREE(sidkey);
		return false;
	}

	if (strcmp(value, "IDMAP/NEGATIVE") == 0) {
		*mapped = false;
	}
	else if (strncmp(value, "IDMAP/UID/", 10) == 0) {
		*mapped = true;
		xid->type = ID_TYPE_UID;
		xid->id = strtol(&value[10], &rem, 10);
		if (*rem != '\0') {
			goto fail;
		}
	}
	else if (strncmp(value, "IDMAP/GID/", 10) == 0) {
		*mapped = true;
		xid->type = ID_TYPE_GID;
		xid->id = strtol(&value[10], &rem, 10);
		if (*rem != '\0') {
			goto fail;
		}
	}
	else {
		goto fail;
	}

	*expired = (timeout <= time(NULL));

	ret = true;

 fail:
	if (!ret) {
		DEBUG(1, ("Invalid entry %s in cache\n", value));
	}
	SAFE_FREE(value);
	TALLOC_FREE(sidkey);
	return ret;
}

/*
 * search the cache for the ID an return a mapping if found
 */

bool idmap_cache_map_id(const struct unixid *xid, struct dom_sid *psid,
			bool *mapped, bool *expired)
{
	bool ret = false;
	time_t timeout;
	char *idkey;
	char *value;

	idkey = idmap_cache_idkey(talloc_tos(), xid);
	if (idkey == NULL) {
		return false;
	}

	if (!gencache_get(idkey, &value, &timeout)) {
		TALLOC_FREE(idkey);
		return false;
	}

	if (strcmp(value, "IDMAP/NEGATIVE") == 0) {
		*mapped = false;
	}
	else if (strncmp(value, "IDMAP/SID/", 10) == 0) {
		*mapped = true;
		if (!string_to_sid(psid, value+10)) {
			goto fail;
		}
	}
	else {
		goto fail;
	}

	ret = true;

 fail:
	if (!ret) {
		DEBUG(1, ("Invalid entry %s in cache\n", value));
	}
	SAFE_FREE(value);
	TALLOC_FREE(idkey);
	return ret;
}