summaryrefslogtreecommitdiffstats
path: root/source/samrd/srv_samr_nt5ldap.c
blob: 86fec68b344b664e4fd7ef67a3627f28f7a1c577 (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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
/* 
 *  Unix SMB/Netbios implementation.
 *  Version 1.9.
 *  RPC Pipe client / server routines
 *  Copyright (C) Luke Kenneth Casson Leighton 1996-2000,
 *  Copyright (C) Luke Howard                  2000
 *  
 *  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 2 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, write to the Free Software
 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */


#include "includes.h"
#include "nterr.h"
#include "ldapdb.h"
#include "sids.h"

extern int DEBUGLEVEL;

typedef struct nt5ldap_dom_info
{
	LDAPDB *hds;
	DOM_SID sid;
} NT5LDAP_DOM_INFO;

typedef struct nt5ldap_sid_info
{
	LDAPDB *hds;
	DOM_SID sid;
} NT5LDAP_SID_INFO;

typedef struct nt5ldap_rid_info
{
	LDAPDB *hds;
	uint32 rid;
} NT5LDAP_RID_INFO;

typedef struct nt5ldap_sam_info
{
	LDAPDB *hds;
} NT5LDAP_SAM_INFO;

static void free_nt5ldapdom_info(void *dev)
{
	NT5LDAP_DOM_INFO *ldbi = (NT5LDAP_DOM_INFO *)dev;
	DEBUG(10,("free policy connection\n"));
	if (ldbi->hds != NULL)
	{
		ldapdb_close(&ldbi->hds);
	}
	free(ldbi);
}

static void free_nt5ldapsam_info(void *dev)
{
	NT5LDAP_SAM_INFO *ldbi = (NT5LDAP_SAM_INFO *)dev;
	DEBUG(10,("free policy connection\n"));
	if (ldbi->hds != NULL)
	{
		ldapdb_close(&ldbi->hds);
	}
	free(ldbi);
}

static void free_nt5ldapsid_info(void *dev)
{
	NT5LDAP_SID_INFO *ldbi = (NT5LDAP_SID_INFO *)dev;
	DEBUG(10,("free policy connection\n"));
	if (ldbi->hds != NULL)
	{
		ldapdb_close(&ldbi->hds);
	}
	free(ldbi);
}

/****************************************************************************
  set samr rid
****************************************************************************/
BOOL set_nt5ldaprid(struct policy_cache *cache, POLICY_HND *hnd,
				LDAPDB *hds, uint32 rid)
{
	NT5LDAP_RID_INFO *dev = malloc(sizeof(*dev));

	if (dev != NULL)
	{
		dev->rid = rid;
		dev->hds = hds;
		if (set_policy_state(cache, hnd, NULL, (void*)dev))
		{
			DEBUG(3,("Service setting policy rid=%x\n", rid));
			return True;
		}
		free(dev);
		return False;
	}
	DEBUG(3,("Error setting policy rid\n"));
	return False;
}

/****************************************************************************
  get samr rid
****************************************************************************/
BOOL get_nt5ldaprid(struct policy_cache *cache, const POLICY_HND *hnd,
				LDAPDB **hds, uint32 *rid)
{
	NT5LDAP_RID_INFO *dev = (NT5LDAP_RID_INFO*)get_policy_state_info(cache, hnd);

	if (dev != NULL)
	{
		if (rid != NULL)
		{
			(*rid) = dev->rid;
			DEBUG(3,("Service getting policy rid=%x\n", (*rid)));
		}
		if (hds != NULL)
		{
			(*hds) = dev->hds;
		}
		return True;
	}

	DEBUG(3,("Error getting policy rid\n"));
	return False;
}

/****************************************************************************
  set samr sid
****************************************************************************/
BOOL set_nt5ldapsam(struct policy_cache *cache, POLICY_HND *hnd,
				LDAPDB *hds)
{
	pstring sidstr;
	NT5LDAP_SAM_INFO *dev = malloc(sizeof(*dev));

	if (dev != NULL)
	{
		dev->hds = hds;

		if (set_policy_state(cache, hnd, free_nt5ldapsam_info, (void*)dev))
		{
			DEBUG(3,("Service setting policy sid=%s\n", sidstr));
			return True;
		}
		free(dev);
		return False;
	}
	DEBUG(3,("Error setting policy sid\n"));
	return False;
}

/****************************************************************************
  get samr sid
****************************************************************************/
BOOL get_nt5ldapsam(struct policy_cache *cache, const POLICY_HND *hnd,
				LDAPDB **hds)
{
	NT5LDAP_SAM_INFO *dev = (NT5LDAP_SAM_INFO*)get_policy_state_info(cache, hnd);

	if (dev != NULL)
	{
		if (hds != NULL)
		{
			(*hds) = dev->hds;
			return (dev->hds != NULL);
		}
		return True;
	}

	DEBUG(3,("Error getting policy sid\n"));
	return False;
}

/****************************************************************************
  set samr sid
****************************************************************************/
BOOL set_nt5ldapdomsid(struct policy_cache *cache, POLICY_HND *hnd,
				LDAPDB *hds,
				const DOM_SID *sid)
{
	pstring sidstr;
	NT5LDAP_DOM_INFO *dev;

	dev = malloc(sizeof(*dev));

	DEBUG(3,("Setting policy sid=%s\n", sid_to_string(sidstr, sid)));

	if (dev != NULL)
	{
		sid_copy(&dev->sid, sid);
		dev->hds = hds;

		if (set_policy_state(cache, hnd, free_nt5ldapdom_info, (void*)dev))
		{
			DEBUG(3,("Service setting policy sid=%s\n", sidstr));
			return True;
		}
		free(dev);
		return False;
	}
	DEBUG(3,("Error setting policy sid\n"));
	return False;
}

/****************************************************************************
  get samr sid
****************************************************************************/
BOOL get_nt5ldapdomsid(struct policy_cache *cache, const POLICY_HND *hnd,
				LDAPDB **hds,
				DOM_SID *sid)
{
	NT5LDAP_DOM_INFO *dev = (NT5LDAP_DOM_INFO*)get_policy_state_info(cache, hnd);

	if (dev != NULL)
	{
		pstring tmp;
		if (sid != NULL)
		{	
			sid_copy(sid, &dev->sid);
			DEBUG(3,("Getting policy sid=%s\n",
			          sid_to_string(tmp, sid)));
		}
		if (hds != NULL)
		{
			(*hds) = dev->hds;
		}
		return True;
	}

	DEBUG(3,("Error getting policy sid\n"));
	return False;
}

/****************************************************************************
  set samr sid
****************************************************************************/
BOOL set_nt5ldapsid(struct policy_cache *cache, POLICY_HND *hnd,
				LDAPDB *hds, const DOM_SID *sid)
{
	pstring sidstr;
	NT5LDAP_SID_INFO *dev;

	dev = malloc(sizeof(*dev));

	DEBUG(3,("Setting policy sid=%s\n", sid_to_string(sidstr, sid)));

	if (dev != NULL)
	{
		sid_copy(&dev->sid, sid);
		dev->hds = hds;

		if (set_policy_state(cache, hnd, free_nt5ldapsid_info, (void*)dev))
		{
			DEBUG(3,("Service setting policy sid=%s\n", sidstr));
			return True;
		}
		free(dev);
		return False;
	}
	DEBUG(3,("Error setting policy sid\n"));
	return False;
}

/****************************************************************************
  get samr sid
****************************************************************************/
BOOL get_nt5ldapsid(struct policy_cache *cache, const POLICY_HND *hnd,
				LDAPDB **hds, DOM_SID *sid)
{
	NT5LDAP_SID_INFO *dev = (NT5LDAP_SID_INFO*)get_policy_state_info(cache, hnd);

	if (dev != NULL)
	{
		pstring tmp;
		if (sid != NULL)
		{	
			sid_copy(sid, &dev->sid);
			DEBUG(3,("Getting policy sid=%s\n",
			          sid_to_string(tmp, sid)));
		}
		if (hds != NULL)
		{
			(*hds) = dev->hds;
			return (dev->hds != NULL);
		}
		return True;
	}

	DEBUG(3,("Error getting policy sid\n"));
	return False;
}

/*******************************************************************
 opens a samr entiry by rid, returns a policy handle.
 ********************************************************************/
uint32 samr_open_by_nt5ldaprid( LDAPDB *hds,
				POLICY_HND *pol, uint32 access_mask, uint32 rid)
{
	/* get a (unique) handle.  open a policy on it. */
	if (!open_policy_hnd(get_global_hnd_cache(), pol, access_mask))
	{
		return NT_STATUS_ACCESS_DENIED;
	}

	/* associate a RID with the (unique) handle. */
	if (!set_nt5ldaprid(get_global_hnd_cache(), pol, hds, rid))
	{
		/* close the policy in case we can't associate a group SID */
		close_policy_hnd(get_global_hnd_cache(), pol);
		return NT_STATUS_ACCESS_DENIED;
	}

	return 0x0;
}